/* ═══════════════════════════════════════════════════════════════
   VUVITA GÖZ AMELİYATLARI PAGE STYLES
   Premium Eye Care Center
   Prefix: ga- (Göz Ameliyatları)
   ═══════════════════════════════════════════════════════════════ */

.ga-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: HERO
   ═══════════════════════════════════════════════════════════════ */

#ga-hero {
    min-height: 75vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--vuvita-dark, #121212) 0%, var(--vuvita-charcoal, #1a1a1a) 100%);
    position: relative;
    overflow: hidden;
}

#ga-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 70%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.07) 0%, transparent 55%);
    pointer-events: none;
}

.ga-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    position: relative;
    z-index: 2;
}

.ga-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.ga-hero__badge-line {
    width: 50px;
    height: 2px;
    background: var(--vuvita-gold, #c9a962);
}

.ga-hero__badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--vuvita-gold, #c9a962);
}

.ga-hero__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: clamp(48px, 5.5vw, 78px);
    font-weight: 600;
    color: var(--vuvita-white, #fff);
    line-height: 1.08;
    margin-bottom: 24px;
}

.ga-hero__title-accent {
    display: block;
    background: linear-gradient(90deg, var(--vuvita-gold, #c9a962), var(--vuvita-gold-light, #e0c98a));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ga-hero__desc {
    font-size: 16px;
    color: var(--vuvita-gray-light, #b5b5b5);
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 44px;
}

.ga-hero__stats {
    display: flex;
    gap: 44px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 44px;
}

.ga-hero__stat-value {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 44px;
    font-weight: 600;
    color: var(--vuvita-gold, #c9a962);
    line-height: 1;
}

.ga-hero__stat-label {
    font-size: 11px;
    color: var(--vuvita-gray, #8a8a8a);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ga-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ga-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--vuvita-font-body, 'Montserrat', sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ga-btn--gold {
    background: var(--vuvita-gold, #c9a962);
    color: var(--vuvita-dark, #121212);
}

.ga-btn--gold:hover {
    background: var(--vuvita-gold-light, #e0c98a);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(201, 169, 98, 0.4);
}

.ga-btn--ghost {
    background: transparent;
    color: var(--vuvita-white, #fff);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ga-btn--ghost:hover {
    border-color: var(--vuvita-gold, #c9a962);
    color: var(--vuvita-gold, #c9a962);
}

.ga-btn--dark {
    background: var(--vuvita-charcoal, #1a1a1a);
    color: var(--vuvita-white, #fff);
}

.ga-btn--dark:hover {
    background: var(--vuvita-dark, #121212);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.ga-btn--white {
    background: var(--vuvita-white, #fff);
    color: var(--vuvita-charcoal, #1a1a1a);
}

.ga-btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.ga-hero__visual {
    position: relative;
}

.ga-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.ga-hero__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--vuvita-dark, #121212) 0%, transparent 35%);
}

.ga-hero__floating {
    position: absolute;
    bottom: 70px;
    left: -50px;
    background: var(--vuvita-white, #fff);
    padding: 32px;
    max-width: 300px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.ga-hero__floating-icon {
    width: 52px;
    height: 52px;
    background: var(--vuvita-gold, #c9a962);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ga-hero__floating-icon i {
    font-size: 22px;
    color: var(--vuvita-dark, #121212);
}

.ga-hero__floating-title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    margin-bottom: 8px;
}

.ga-hero__floating-text {
    font-size: 13px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: ABOUT
   ═══════════════════════════════════════════════════════════════ */

#ga-about {
    padding: 130px 0;
    background: var(--vuvita-white, #fff);
}

.ga-about__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}

.ga-about__media {
    position: relative;
}

.ga-about__image {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
}

.ga-about__badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--vuvita-gold, #c9a962);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ga-about__badge-number {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 52px;
    font-weight: 600;
    color: var(--vuvita-dark, #121212);
    line-height: 1;
}

.ga-about__badge-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.ga-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vuvita-gold, #c9a962);
    margin-bottom: 22px;
}

.ga-section-tag::before {
    content: '';
    width: 45px;
    height: 2px;
    background: var(--vuvita-gold, #c9a962);
}

.ga-about__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    line-height: 1.15;
    margin-bottom: 24px;
}

.ga-about__title span {
    color: var(--vuvita-gold, #c9a962);
}

.ga-about__text {
    font-size: 15px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.9;
    margin-bottom: 32px;
}

.ga-about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.ga-about__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--vuvita-cream, #f8f6f3);
    transition: 0.3s ease;
}

.ga-about__feature:hover {
    transform: translateX(8px);
}

.ga-about__feature-icon {
    width: 46px;
    height: 46px;
    background: var(--vuvita-white, #fff);
    border: 1px solid rgba(201, 169, 98, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ga-about__feature-icon i {
    font-size: 18px;
    color: var(--vuvita-gold, #c9a962);
}

.ga-about__feature-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    margin-bottom: 4px;
}

.ga-about__feature-text {
    font-size: 12px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: TREATMENTS
   ═══════════════════════════════════════════════════════════════ */

#ga-treatments {
    padding: 120px 0;
    background: linear-gradient(160deg, var(--vuvita-charcoal, #1a1a1a) 0%, var(--vuvita-dark, #121212) 100%);
}

.ga-treatments__header {
    text-align: center;
    margin-bottom: 70px;
}

.ga-treatments__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;
    color: var(--vuvita-white, #fff);
    margin-bottom: 14px;
}

.ga-treatments__title span {
    color: var(--vuvita-gold, #c9a962);
}

.ga-treatments__subtitle {
    font-size: 15px;
    color: var(--vuvita-gray, #8a8a8a);
    max-width: 520px;
    margin: 0 auto;
}

.ga-treatments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ga-treatment {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0;
    /* Reset padding for full width image */
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ga-treatment:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ga-treatment__content {
    padding: 32px;
}

.ga-treatment__icon {
    /* Styles handled mostly by Tailwind in TSX now for flexibility, 
       keeping basic shape here just in case */
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ga-treatment__icon i {
    font-size: 30px;
    color: var(--vuvita-gold, #c9a962);
}

.ga-treatment:hover .ga-treatment__icon {
    background: var(--vuvita-gold, #c9a962);
}

.ga-treatment:hover .ga-treatment__icon i {
    color: var(--vuvita-dark, #121212);
}

.ga-treatment__name {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--vuvita-white, #fff);
    margin-bottom: 12px;
}

.ga-treatment__desc {
    font-size: 14px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.75;
    margin-bottom: 24px;
}

.ga-treatment__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--vuvita-gold, #c9a962);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.ga-treatment__link:hover {
    gap: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: COMPARISON
   ═══════════════════════════════════════════════════════════════ */

#ga-compare {
    padding: 130px 0;
    background: var(--vuvita-cream, #f8f6f3);
}

.ga-compare__header {
    text-align: center;
    margin-bottom: 60px;
}

.ga-compare__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    margin-bottom: 14px;
}

.ga-compare__title span {
    color: var(--vuvita-gold, #c9a962);
}

.ga-compare__table {
    background: var(--vuvita-white, #fff);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.ga-compare__row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ga-compare__row:last-child {
    border-bottom: none;
}

.ga-compare__row--header {
    background: var(--vuvita-charcoal, #1a1a1a);
}

.ga-compare__cell {
    padding: 22px 28px;
    font-size: 14px;
    color: var(--vuvita-charcoal, #1a1a1a);
    display: flex;
    align-items: center;
}

.ga-compare__row--header .ga-compare__cell {
    color: var(--vuvita-white, #fff);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.ga-compare__cell--feature {
    font-weight: 500;
    background: var(--vuvita-cream, #f8f6f3);
}

.ga-compare__cell--center {
    justify-content: center;
    text-align: center;
}

.ga-compare__check {
    color: var(--vuvita-gold, #c9a962);
    font-size: 18px;
}

.ga-compare__badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(201, 169, 98, 0.15);
    font-size: 11px;
    font-weight: 600;
    color: var(--vuvita-gold-dark, #a68b4b);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: TECHNOLOGY
   ═══════════════════════════════════════════════════════════════ */

#ga-tech {
    padding: 120px 0;
    background: var(--vuvita-white, #fff);
}

.ga-tech__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ga-tech__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 44px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    line-height: 1.2;
    margin-bottom: 24px;
}

.ga-tech__title span {
    color: var(--vuvita-gold, #c9a962);
}

.ga-tech__text {
    font-size: 15px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.9;
    margin-bottom: 36px;
}

.ga-tech__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--vuvita-cream, #f8f6f3);
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.ga-tech__item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.ga-tech__item-icon {
    width: 54px;
    height: 54px;
    background: var(--vuvita-gold, #c9a962);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ga-tech__item-icon i {
    font-size: 22px;
    color: var(--vuvita-dark, #121212);
}

.ga-tech__item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    margin-bottom: 6px;
}

.ga-tech__item-text {
    font-size: 13px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.7;
}

.ga-tech__visual {
    position: relative;
}

.ga-tech__image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.ga-tech__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--vuvita-white, #fff);
}

.ga-tech__overlay-title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ga-tech__overlay-text {
    font-size: 13px;
    color: var(--vuvita-gray-light, #b5b5b5);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: FAQ
   ═══════════════════════════════════════════════════════════════ */

#ga-faq {
    padding: 120px 0;
    background: var(--vuvita-cream, #f8f6f3);
}

.ga-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.ga-faq__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ga-faq__title span {
    color: var(--vuvita-gold, #c9a962);
}

.ga-faq__text {
    font-size: 15px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.85;
}

.ga-faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--vuvita-white, #fff);
    margin-bottom: 12px;
}

.ga-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: 0.3s ease;
}

.ga-faq__question:hover {
    background: rgba(201, 169, 98, 0.03);
}

.ga-faq__question-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--vuvita-charcoal, #1a1a1a);
}

.ga-faq__question-icon {
    width: 38px;
    height: 38px;
    background: var(--vuvita-cream, #f8f6f3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--vuvita-gold, #c9a962);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ga-faq__item.active .ga-faq__question-icon {
    background: var(--vuvita-gold, #c9a962);
    color: var(--vuvita-dark, #121212);
    transform: rotate(45deg);
}

.ga-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ga-faq__item.active .ga-faq__answer {
    max-height: 500px;
}

.ga-faq__answer-inner {
    padding: 0 28px 24px;
    font-size: 14px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: CTA
   ═══════════════════════════════════════════════════════════════ */

#ga-cta {
    padding: 110px 0;
    background: var(--vuvita-gold, #c9a962);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#ga-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.ga-cta__content {
    position: relative;
    z-index: 2;
}

.ga-cta__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 600;
    color: var(--vuvita-dark, #121212);
    margin-bottom: 18px;
}

.ga-cta__text {
    font-size: 16px;
    color: var(--vuvita-charcoal, #1a1a1a);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.ga-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .ga-treatments__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ga-tech__grid,
    .ga-faq__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    #ga-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ga-hero__content {
        padding: 70px 40px;
    }

    .ga-hero__visual {
        height: 50vh;
    }

    .ga-hero__floating {
        left: 20px;
        bottom: 20px;
    }

    .ga-about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ga-compare__row {
        grid-template-columns: 1fr;
    }

    .ga-compare__cell {
        padding: 16px 20px;
    }

    .ga-compare__row--header {
        display: none;
    }

    .ga-compare__cell::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .ga-container {
        padding: 0 24px;
    }

    .ga-hero__stats {
        flex-direction: column;
        gap: 24px;
    }

    .ga-treatments__grid {
        grid-template-columns: 1fr;
    }

    .ga-about__features {
        grid-template-columns: 1fr;
    }

    .ga-hero__buttons,
    .ga-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .ga-btn {
        width: 100%;
        justify-content: center;
    }
}