/* ==========================================================================
   Home / Front Page CSS
   ========================================================================== */

/* --- Hero --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-glass-strip {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 400px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px) saturate(117%);
    -webkit-backdrop-filter: blur(10px) saturate(117%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    font-size: 96px;
    line-height: 134px;
}

.hero-title-mobile {
    display: none;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.hero-divider-line {
    flex-grow: 1;
    height: 1px;
    max-width: 800px;
    opacity: 0.8;
}

.hero-divider-left {
    background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
}

.hero-divider-right {
    background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
}

.hero-subtitle {
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-subtitle-1 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.hero-subtitle-2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-btn {
    display: inline-block;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.hero-btn:hover {
    opacity: 0.85;
}

.hero-btn-primary {
    background: var(--accent);
}

.hero-btn-primary:hover {
    background: #fff;
    color: var(--accent);
}

.hero-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-btn-outline:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* --- About Section --- */
.about-section {
    padding: 6rem 0;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-flower {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.about-flower-top {
    top: -30px;
    left: -30px;
    width: 80px;
    height: auto;
}

.about-flower-bg {
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: auto;
    z-index: -1;
    opacity: 0.7;
}

@keyframes flower-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-image img:not(.about-flower) {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.about-slogan {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Services Section --- */
.services-section {
    padding: 6rem 0;
    background-color: #111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-leaf {
    position: absolute;
    right: 0;
    top: 20%;
    width: 80px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    opacity: 0;
    transform: translateY(100%);
}

.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-slogan {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    align-items: start;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 1.5rem;
    max-height: 280px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.service-card.is-expanded .service-card-body {
    max-height: 1000px;
}

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.service-card-columns {
    display: flex;
    gap: 1.5rem;
}

.service-card-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.service-card-list li {
    position: relative;
    padding-left: 1rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.service-card-list a {
    color: inherit;
    transition: color 0.3s ease;
}

.service-card-list a:hover {
    color: var(--accent);
}

.service-card-link {
    display: inline-block;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--accent);
    transition: letter-spacing 0.3s ease;
}

.service-card-link:hover {
    letter-spacing: 0.12em;
}

.service-card-toggle {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--accent);
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-card-toggle:hover {
    background: color-mix(in srgb, var(--accent) 10%, transparent);
}

/* --- Call Us Section --- */
.callus-section {
    padding: 4rem 0;
    background: var(--accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.callus-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.callus-slogan {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
}

.callus-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.callus-desc {
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
}

.callus-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.callus-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.4s ease, color 0.4s ease;
}

.callus-btn-primary {
    background: #1a1a1a;
    color: #fff;
}

.callus-btn-primary:hover {
    background: #000;
    color: #fff;
}

.callus-btn-whatsapp {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.callus-btn-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.callus-btn-whatsapp svg {
    flex-shrink: 0;
    color: #1a1a1a;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* --- Tablet (768px ve altı) --- */
@media (max-width: 768px) {
    /* Hero */
    .hero-title {
        font-size: 48px;
        line-height: 64px;
    }

    .hero-title-desktop {
        display: none;
    }

    .hero-title-mobile {
        display: inline;
    }

    .hero-glass-strip {
        height: 100%;
        top: 0;
        transform: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-divider {
        gap: 1rem;
    }

    /* About */
    .about-section {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-title {
        font-size: 30px;
    }

    .about-flower-top {
        width: 60px;
        height: auto;
        top: -20px;
        left: -10px;
    }

    .about-flower-bg {
        width: 100px;
        height: auto;
        bottom: -20px;
        right: -20px;
    }

    /* Services */
    .services-section {
        padding: 4rem 0;
    }

    .services-title {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-list {
        grid-template-columns: 1fr;
    }

    .service-card-columns {
        flex-direction: column;
        gap: 0;
    }

    .service-card-image {
        height: 180px;
    }

    .services-leaf {
        width: 50px;
    }

    /* Call Us */
    .callus-section {
        padding: 3rem 0;
    }

    .callus-grid {
        flex-direction: column;
        text-align: center;
    }

    .callus-title {
        font-size: 26px;
    }

    .callus-buttons {
        flex-direction: column;
        width: 100%;
    }

    .callus-btn {
        justify-content: center;
        width: 100%;
    }
}

/* --- Mobil (480px ve altı) --- */
@media (max-width: 480px) {
    .hero {
        height: 100svh;
    }

    .hero-title {
        font-size: 36px;
        line-height: 48px;
    }

    .hero-glass-strip {
        height: 100%;
        top: 0;
        transform: none;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .hero-divider-line {
        max-width: 80px;
    }

    .hero-btn {
        font-size: 12px;
        padding: 12px 20px;
    }

    /* About */
    .about-section {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 26px;
    }

    .about-text {
        font-size: 14px;
    }

    /* Services */
    .services-header {
        margin-bottom: 2rem;
    }

    .services-title {
        font-size: 26px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-body {
        padding: 1rem;
    }

    /* Call Us */
    .callus-title {
        font-size: 22px;
    }

    .callus-desc {
        font-size: 14px;
    }

    .callus-btn {
        font-size: 13px;
        padding: 12px 20px;
    }
}
