

        :root {
            --primary-dark: #0a2540;
            --primary-blue: #1a5276;
            --accent-teal: #17a589;
            --accent-gold: #c9a227;
            --light-bg: #f8fafb;
            --white: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #5d6d7e;
            --border-light: #e8eef3;
            --header-offset: 112px;
            --gradient-primary: linear-gradient(135deg, #0a2540 0%, #1a5276 50%, #17a589 100%);
            --gradient-accent: linear-gradient(135deg, #17a589 0%, #1a5276 100%);
            --shadow-soft: 0 4px 20px rgba(10, 37, 64, 0.08);
            --shadow-medium: 0 8px 30px rgba(10, 37, 64, 0.12);
            --shadow-strong: 0 15px 50px rgba(10, 37, 64, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            width: 100%;
            overflow-x: hidden;
            overflow-x: clip;
            overscroll-behavior-x: none;
        }

        body {
            font-family: 'Source Sans 3', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--white);
            caret-color: transparent;
            max-width: 100%;
            overflow-x: hidden;
            overflow-x: clip;
            overscroll-behavior-x: none;
            position: relative;
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
        }

        input,
        textarea,
        select,
        [contenteditable="true"],
        [contenteditable="plaintext-only"] {
            caret-color: auto;
        }

        .header {
            flex-shrink: 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        [contenteditable]:not(input):not(textarea):not(select),
        [contenteditable="true"]:not(input):not(textarea):not(select),
        [contenteditable="plaintext-only"]:not(input):not(textarea):not(select) {
            caret-color: transparent !important;
            -webkit-user-modify: read-only !important;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .mobile-scroll-progress {
            display: none;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            background: rgba(10, 37, 64, 0.08);
            overflow: hidden;
            pointer-events: none;
        }

        .mobile-scroll-progress-bar {
            display: block;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #274766 0%, #31677d 56%, #49a59a 100%);
            box-shadow: 0 0 18px rgba(73, 165, 154, 0.28);
            transform-origin: left center;
            transform: scaleX(var(--mobile-scroll-progress, 0));
            opacity: 0;
            transition: transform 0.12s linear, opacity 0.22s ease;
        }

        body.is-scroll-progress-active .mobile-scroll-progress-bar {
            opacity: 1;
        }

        .header-top {
            background: var(--gradient-primary);
            padding: 10px 0;
            max-height: 80px;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .contact-info a {
            color: var(--white);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0.9;
        }

        .contact-info a:hover {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-gold);
            transform: translateY(-2px);
        }

        @media (min-width: 993px) {
            .header-top {
                padding: 6px 0;
                max-height: 64px;
            }

            .header-top-content {
                gap: 12px;
            }

            .contact-info {
                gap: 18px;
            }

            .contact-info a {
                gap: 7px;
                font-size: 13px;
            }

            .social-links {
                gap: 10px;
            }

            .social-links a {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }
        }

        .social-links a.is-disabled-social,
        .footer-social a.is-disabled-social,
        .mobile-menu-socials a.is-disabled-social {
            opacity: 0.45;
            cursor: default;
            pointer-events: none;
        }

        .header-main {
            padding: 12px 0;
            background: var(--white);
            transition: padding 0.3s ease, box-shadow 0.3s ease;
        }

        .header-main-content {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 18px;
            position: relative;
            padding-right: 92px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 0 1 clamp(190px, 21vw, 280px);
            min-width: 0;
            overflow: hidden;
        }

        .logo-icon {
            width: 52px;
            height: 52px;
            flex: 0 0 52px;
            background: var(--gradient-accent);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 22px;
            box-shadow: var(--shadow-soft);
        }

        .logo-text {
            flex: 1 1 auto;
            width: 100%;
            min-width: 0;
            max-width: 100%;
            overflow: hidden;
        }

        .logo-text h1,
        .logo-heading {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1px;
            font-size: clamp(20px, 1.4vw, 22px);
            color: var(--primary-dark);
            margin-bottom: 3px;
            line-height: 1.12;
            white-space: normal;
            width: 100%;
            min-width: 0;
            max-width: 100%;
        }

        .logo-prefix,
        .logo-name {
            display: block;
            width: 100%;
            min-width: 0;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.12;
            letter-spacing: 0;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .logo-prefix {
            font-size: 0.82em;
        }

        .logo-name {
            font-size: 1.05em;
        }

        .logo-role {
            display: block;
            width: 100%;
            min-width: 0;
            font-size: 13px;
            color: var(--text-light);
            font-weight: 500;
            line-height: 1.25;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        html[lang="bg"] .logo,
        html[lang="ru"] .logo {
            flex-basis: clamp(205px, 19vw, 260px);
        }

        html[lang="bg"] .logo-text h1,
        html[lang="bg"] .logo-heading,
        html[lang="ru"] .logo-text h1,
        html[lang="ru"] .logo-heading {
            font-size: clamp(20px, 1.4vw, 22px);
        }

        html[lang="bg"] .logo-role,
        html[lang="ru"] .logo-role {
            font-size: 13px;
            line-height: 1.25;
        }

        html[lang="bg"] .nav-menu,
        html[lang="ru"] .nav-menu {
            margin-left: clamp(8px, 1vw, 16px);
        }

        html[lang="bg"] .nav-menu-list,
        html[lang="ru"] .nav-menu-list {
            gap: 2px;
        }

        html[lang="bg"] .nav-menu a,
        html[lang="ru"] .nav-menu a {
            padding: 8px 10px;
            font-size: 13px;
        }

        html[lang="bg"] .nav-menu a.nav-cta,
        html[lang="ru"] .nav-menu a.nav-cta {
            padding: 10px 14px !important;
        }

        html[lang="bg"] body:not(.home) .nav-menu a,
        html[lang="ru"] body:not(.home) .nav-menu a {
            padding: 8px 10px;
            font-size: 13px;
        }

        html[lang="bg"] body:not(.home) .nav-menu a.nav-cta,
        html[lang="ru"] body:not(.home) .nav-menu a.nav-cta {
            padding: 10px 14px !important;
        }

        @media (min-width: 993px) {
            html[lang="bg"] body:not(.home) .header:not(.is-condensed) .header-main,
            html[lang="ru"] body:not(.home) .header:not(.is-condensed) .header-main {
                padding: 12px 0;
            }
        }

        @media (min-width: 1181px) and (max-width: 1380px) {
            html[lang="bg"] .header-main-content,
            html[lang="ru"] .header-main-content {
                gap: 10px;
                padding-right: 82px;
            }

            html[lang="bg"] .logo,
            html[lang="ru"] .logo {
                flex-basis: clamp(190px, 17vw, 230px);
                gap: 10px;
            }

            html[lang="bg"] .logo-text h1,
            html[lang="bg"] .logo-heading,
            html[lang="ru"] .logo-text h1,
            html[lang="ru"] .logo-heading {
                font-size: clamp(20px, 1.4vw, 22px);
                line-height: 1.05;
            }

            html[lang="bg"] .logo-role,
            html[lang="ru"] .logo-role {
                font-size: 13px;
                line-height: 1.25;
            }

            html[lang="bg"] .nav-menu,
            html[lang="ru"] .nav-menu {
                margin-left: 4px;
            }

            html[lang="bg"] .nav-menu-list,
            html[lang="ru"] .nav-menu-list {
                gap: 1px;
            }

            html[lang="bg"] .nav-menu a,
            html[lang="ru"] .nav-menu a,
            html[lang="bg"] body:not(.home) .nav-menu a,
            html[lang="ru"] body:not(.home) .nav-menu a {
                padding: 8px 9px;
                font-size: 13px;
            }

            html[lang="bg"] .nav-menu a.nav-cta,
            html[lang="ru"] .nav-menu a.nav-cta,
            html[lang="bg"] body:not(.home) .nav-menu a.nav-cta,
            html[lang="ru"] body:not(.home) .nav-menu a.nav-cta {
                padding: 10px 14px !important;
            }
        }

        .language-selector {
            position: absolute;
            top: 50%;
            right: min(0px, calc((1320px - 100vw) / 2));
            margin-left: 0;
            flex-shrink: 0;
            transform: translateY(-50%);
            z-index: 1003;
        }

        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 13px 8px 10px;
            min-height: 40px;
            background: #ffffff;
            border: 1px solid rgba(26, 82, 118, 0.12);
            border-radius: 50px;
            color: var(--primary-dark, #0a2540);
            font-family: 'Source Sans 3', sans-serif;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(10, 37, 64, 0.08);
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }

        .lang-toggle:hover {
            border-color: rgba(23, 165, 137, 0.42);
            transform: translateY(-1px);
        }

        .lang-toggle.active {
            border-color: rgba(23, 165, 137, 0.42);
            box-shadow: 0 10px 24px rgba(10, 37, 64, 0.12);
        }

        .lang-globe {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(23, 165, 137, 0.08);
            color: var(--primary-dark, #0a2540);
            flex-shrink: 0;
        }

        .lang-globe i {
            font-size: 11px;
        }

        .lang-toggle .lang-label {
            font-size: 13px;
            line-height: 1;
            letter-spacing: 0.06em;
        }

        .lang-toggle i {
            font-size: 11px;
            transition: transform 0.3s ease;
        }

        .lang-toggle.active i.fa-chevron-down {
            transform: rotate(180deg);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: #ffffff;
            border-radius: 14px;
            box-shadow: 0 10px 40px rgba(10, 37, 64, 0.15);
            min-width: 150px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid var(--border-light, #e8eef3);
        }

        .lang-dropdown.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            color: #2c3e50;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            border-bottom: 1px solid var(--border-light, #e8eef3);
        }

        .lang-option:last-child {
            border-bottom: none;
        }

        .lang-option:hover {
            background: var(--light-bg, #f8fafb);
            color: var(--accent-teal, #17a589);
            padding-left: 20px;
        }

        .lang-option.active {
            background: rgba(23, 165, 137, 0.08);
            color: var(--accent-teal, #17a589);
            font-weight: 600;
        }

        .lang-option.active::after {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: auto;
            font-size: 12px;
        }

        .nav-menu {
            display: flex;
            gap: 4px;
            flex: 1 1 auto;
            margin-left: clamp(12px, 2vw, 28px);
            align-items: center;
            min-width: 0;
            justify-content: flex-end;
        }

        .nav-menu-list {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap;
            justify-content: flex-end;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-menu-list li {
            margin: 0;
            padding: 0;
            list-style: none !important;
            display: block !important;
        }

        .nav-menu-list > li {
            position: relative;
        }

        .nav-menu ul,
        .nav-menu li {
            list-style: none !important;
            margin: 0;
            padding: 0;
        }

        .nav-menu-list::marker,
        .nav-menu-list li::marker {
            content: '';
        }

        .nav-menu a {
            padding: 9px 14px;
            font-weight: 500;
            color: var(--text-dark);
            border-radius: 8px;
            position: relative;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .nav-menu a:hover {
            color: var(--accent-teal);
            background: rgba(23, 165, 137, 0.08);
        }

        .nav-menu a.nav-dummy-link {
            cursor: pointer;
        }

        .nav-menu a.nav-placeholder-link {
            cursor: default;
        }

        .nav-menu-list > li.menu-item-has-mega {
            position: relative;
        }

        .nav-mega-panel {
            position: absolute;
            top: calc(100% + 14px);
            right: 0;
            width: min(440px, 78vw);
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            padding: 16px;
            border-radius: 24px;
            border: 1px solid rgba(26, 82, 118, 0.08);
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-strong);
            backdrop-filter: blur(12px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(10px);
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
            z-index: 30;
        }

        .nav-mega-panel::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 100%;
            height: 16px;
        }

        .nav-menu-list > li.menu-item-has-mega:hover .nav-mega-panel,
        .nav-menu-list > li.menu-item-has-mega:focus-within .nav-mega-panel,
        .nav-menu-list > li.menu-item-has-mega.is-mega-open .nav-mega-panel {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .nav-menu .nav-mega-panel a.nav-mega-card {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 0;
            min-height: 132px;
            padding: 18px 18px 16px;
            border-radius: 18px;
            border: 1px solid rgba(26, 82, 118, 0.08);
            background: linear-gradient(180deg, rgba(248, 250, 251, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
            box-shadow: 0 8px 18px rgba(10, 37, 64, 0.06);
            color: var(--text-dark);
            white-space: normal;
            text-align: left;
            line-height: 1.4;
        }

        .nav-menu .nav-mega-panel a.nav-mega-card:hover {
            transform: translateY(-2px);
            background: linear-gradient(180deg, rgba(232, 248, 245, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
            box-shadow: var(--shadow-medium);
            color: var(--text-dark);
        }

        .nav-menu .nav-mega-panel .nav-mega-kicker {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(23, 165, 137, 0.1);
            color: var(--accent-teal);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .nav-menu .nav-mega-panel a.nav-mega-card strong {
            display: block;
            margin: 12px 0 8px;
            color: var(--primary-dark);
            font-size: 20px;
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
            white-space: normal;
        }

        .nav-menu .nav-mega-panel .nav-mega-desc {
            display: block;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-light);
            white-space: normal;
            text-align: left;
        }

        .nav-mega-panel--cancers {
            width: min(600px, calc(100vw - 40px));
            grid-template-columns: repeat(3, minmax(0, 1fr));
            grid-auto-rows: 1fr;
            align-items: stretch;
            justify-content: stretch;
            gap: 8px;
            padding: 12px;
        }

        .nav-menu .nav-mega-panel--cancers a.nav-mega-link {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            width: 100%;
            min-height: 62px;
            height: 100%;
            padding: 10px 11px;
            border-radius: 12px;
            border: 1px solid rgba(26, 82, 118, 0.08);
            background: linear-gradient(180deg, rgba(248, 250, 251, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
            box-shadow: 0 6px 16px rgba(10, 37, 64, 0.05);
            color: var(--primary-dark);
            font-size: 12.5px;
            font-weight: 600;
            line-height: 1.25;
            text-align: left;
            white-space: normal;
        }

        @media (min-width: 993px) {
            .nav-menu-list > li.menu-item-key-about .nav-mega-panel:not(.nav-mega-panel--cancers) {
                left: 50%;
                right: auto;
                transform: translate(-50%, 10px);
                transform-origin: top center;
            }

            .nav-menu-list > li.menu-item-key-about:hover .nav-mega-panel:not(.nav-mega-panel--cancers),
            .nav-menu-list > li.menu-item-key-about:focus-within .nav-mega-panel:not(.nav-mega-panel--cancers),
            .nav-menu-list > li.menu-item-key-about.is-mega-open .nav-mega-panel:not(.nav-mega-panel--cancers) {
                transform: translate(-50%, 0);
            }

            .nav-menu-list > li.menu-item-key-cancer_types .nav-mega-panel--cancers {
                left: 50%;
                right: auto;
                transform: translate(-50%, 10px);
                transform-origin: top center;
            }

            .nav-menu-list > li.menu-item-key-cancer_types:hover .nav-mega-panel--cancers,
            .nav-menu-list > li.menu-item-key-cancer_types:focus-within .nav-mega-panel--cancers,
            .nav-menu-list > li.menu-item-key-cancer_types.is-mega-open .nav-mega-panel--cancers {
                transform: translate(-50%, 0);
            }
        }

        .nav-menu .nav-mega-panel--cancers a.nav-mega-link:hover {
            transform: translateY(-1px);
            color: var(--accent-teal);
            background: linear-gradient(180deg, rgba(232, 248, 245, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
            box-shadow: var(--shadow-medium);
        }

        .menu-item-mobile-socials {
            display: none !important;
        }

        .mobile-menu-socials {
            display: none;
        }

        .nav-menu .current-menu-item > a,
        .nav-menu .current_page_item > a,
        .nav-menu .current-menu-ancestor > a,
        .nav-menu .current-page-ancestor > a,
        .nav-menu .current-menu-parent > a,
        .nav-menu .current-page-parent > a {
            color: var(--accent-teal);
            background: rgba(23, 165, 137, 0.10);
        }

        .nav-menu a.active,
        .nav-menu a.is-current-link {
            color: var(--accent-teal);
            background: rgba(23, 165, 137, 0.10);
        }

        .nav-menu a.nav-cta {
            background: linear-gradient(135deg, #1a5276 0%, #17a589 100%);
            color: var(--white) !important;
            padding: 10px 18px !important;
            border-radius: 16px !important;
            box-shadow: 0 8px 18px rgba(23, 165, 137, 0.14);
        }

        .nav-menu a.nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(23, 165, 137, 0.18);
            background: linear-gradient(135deg, #1a5276 0%, #17a589 100%) !important;
            color: var(--white) !important;
        }

        /* ============================================
           FOCUS STATES - ACCESSIBILITY IMPROVEMENTS
           ============================================ */
        
        /* General focus-visible styles for all interactive elements */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible,
        [tabindex]:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* Remove default outline when focus-visible is supported */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
        }

        /* Navigation menu focus states */
        .nav-menu a:focus-visible {
            background: rgba(23, 165, 137, 0.12);
            color: var(--accent-teal);
            outline: 3px solid var(--accent-teal);
            outline-offset: 2px;
            border-radius: 8px;
        }

        .nav-menu a.nav-cta:focus-visible {
            outline: 3px solid var(--white);
            outline-offset: 3px;
            box-shadow: 0 0 0 3px var(--accent-teal);
            background: linear-gradient(135deg, #1a5276 0%, #17a589 100%) !important;
        }

        /* Mobile menu focus states */
        .mobile-menu-btn:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            border-radius: 14px;
        }

        /* Button focus states */
        .btn:focus-visible,
        .btn-primary:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            box-shadow: 0 0 0 4px rgba(23, 165, 137, 0.25);
        }

        .btn-outline:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            background: rgba(23, 165, 137, 0.08);
            border-color: var(--accent-teal);
        }

        .btn-submit:focus-visible {
            outline: 3px solid var(--primary-dark);
            outline-offset: 3px;
            box-shadow: 0 0 0 4px rgba(23, 165, 137, 0.3);
        }

        /* Form input focus states */
        .form-control:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 0;
            border-color: var(--accent-teal);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(23, 165, 137, 0.15);
        }

        /* Cancer and feature card focus states */
        .cancer-card:focus-visible,
        .feature-card:focus-visible,
        .news-card:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 4px;
            transform: translateY(-4px);
            box-shadow: var(--shadow-medium);
        }

        .cancer-card:focus-visible::before {
            transform: scaleX(1);
        }

        /* Gallery item focus states */
        .gallery-item:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 4px;
            border-radius: 16px;
        }

        .gallery-item:focus-visible img {
            transform: scale(1.08);
        }

        .gallery-item:focus-visible .gallery-overlay {
            opacity: 1;
        }

        /* NGS card focus states */
        .ngs-card:focus-visible {
            outline: 3px solid var(--white);
            outline-offset: 3px;
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-5px);
        }

        /* Contact item focus states */
        .contact-item:focus-visible {
            outline: 3px solid rgba(255, 255, 255, 0.6);
            outline-offset: 4px;
            border-radius: 8px;
        }

        /* Footer link focus states */
        .footer-links a:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            color: var(--accent-teal);
            opacity: 1;
            padding-left: 5px;
        }

        .footer-social a:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            background: var(--accent-teal);
            border-radius: 10px;
        }

        .footer-title-link:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            color: var(--accent-teal);
        }

        /* Cookie popup focus states */
        .cookie-popup-btn:focus-visible {
            outline: 3px solid var(--primary-dark);
            outline-offset: 2px;
            box-shadow: 0 0 0 4px rgba(23, 165, 137, 0.25);
        }

        .cookie-popup-btn-primary:focus-visible {
            outline: 3px solid var(--white);
            outline-offset: 2px;
            box-shadow: 0 0 0 4px rgba(23, 165, 137, 0.4);
        }

        .cookie-popup-close:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 2px;
            background: rgba(10, 37, 64, 0.15);
        }

        .cookie-popup-toggle:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 2px;
        }

        /* Scroll to top focus state */
        .scroll-top:focus-visible {
            outline: 3px solid var(--white);
            outline-offset: 3px;
            box-shadow: 0 0 0 4px rgba(23, 165, 137, 0.4);
            transform: translateY(-5px);
        }

        /* Language selector focus states */
        .lang-toggle:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            border-color: var(--accent-teal);
        }

        .lang-option:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: -3px;
            background: var(--light-bg);
            color: var(--accent-teal);
            padding-left: 20px;
        }

        /* Hero buttons focus states */
        .hero-buttons .btn:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            box-shadow: 0 0 0 4px rgba(23, 165, 137, 0.25);
        }

        /* Stat item focus states */
        .stat-item:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 4px;
            border-radius: 24px;
            transform: translateY(-4px);
            box-shadow: 0 18px 34px rgba(10, 37, 64, 0.12);
        }

        /* Mega menu link focus states */
        .nav-mega-panel a.nav-mega-card:focus-visible,
        .nav-mega-panel a.nav-mega-link:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 2px;
            background: linear-gradient(180deg, rgba(232, 248, 245, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
            box-shadow: var(--shadow-medium);
        }

        /* News link focus states */
        .news-link:focus-visible {
            outline: 3px solid var(--accent-teal);
            outline-offset: 3px;
            border-radius: 4px;
            gap: 12px;
        }

        /* Social links focus states */
        .social-links a:focus-visible {
            outline: 3px solid var(--accent-gold);
            outline-offset: 3px;
            background: var(--accent-gold);
            transform: translateY(-2px);
        }

        /* Skip to main content link (hidden by default, visible on focus) */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-accent);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 0 0 12px 12px;
            font-weight: 600;
            z-index: 10000;
            transition: top 0.3s ease;
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid var(--white);
            outline-offset: -3px;
        }

        .nav-menu .current-menu-item > a.nav-cta,
        .nav-menu .current_page_item > a.nav-cta,
        .nav-menu .current-menu-ancestor > a.nav-cta,
        .nav-menu .current-page-ancestor > a.nav-cta,
        .nav-menu .current-menu-parent > a.nav-cta,
        .nav-menu .current-page-parent > a.nav-cta {
            background: linear-gradient(135deg, #1a5276 0%, #17a589 100%) !important;
            color: var(--white) !important;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-dark);
            cursor: pointer;
        }

        .mobile-menu-backdrop {
            display: none;
        }

        .header.is-condensed .header-top {
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
            opacity: 0;
        }

        .header.is-condensed .header-main {
            padding: 8px 0;
        }

        /* Header styles are now consistent across all pages */

        /* Hero Section */
        .hero {
            padding: calc(var(--header-offset, 112px) + 28px) 0 100px;
            background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 150%;
            background: radial-gradient(circle, rgba(23, 165, 137, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(23, 165, 137, 0.1);
            color: var(--accent-teal);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .hero-badge i {
            font-size: 12px;
        }

        .hero-title {
            font-size: 52px;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-title span {
            color: var(--accent-teal);
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 35px;
            max-width: 520px;
        }

        .hero-support-copy {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 15px;
            max-width: 520px;
            line-height: 1.8;
        }

        .hero-signature {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-style: italic;
            color: var(--accent-teal);
            margin-bottom: 5px;
        }

        .hero-signature-title {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 15px;
            max-width: 560px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .hero-buttons .btn {
            width: 100%;
            min-width: 0;
            justify-content: center;
            min-height: 58px;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(23, 165, 137, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(23, 165, 137, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-dark);
            border: 2px solid var(--border-light);
        }

        .btn-outline:hover {
            border-color: var(--accent-teal);
            color: var(--accent-teal);
            background: rgba(23, 165, 137, 0.05);
        }

        .btn-stat-link {
            gap: 8px;
            white-space: nowrap;
        }

        .btn-stat-link strong {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            line-height: 1;
            color: var(--accent-teal);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid var(--border-light);
            max-width: 420px;
        }

        .stat-item {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            min-height: 124px;
            padding: 22px 24px;
            border-radius: 24px;
            border: 1px solid rgba(26, 82, 118, 0.08);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 251, 0.96) 100%);
            box-shadow: 0 12px 28px rgba(10, 37, 64, 0.08);
            text-align: left;
            overflow: hidden;
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        }

        .hero-stats a.stat-item {
            text-decoration: none;
        }

        .hero-stats a.stat-item::after {
            content: '\2197';
            position: absolute;
            top: 16px;
            right: 18px;
            font-size: 16px;
            font-weight: 700;
            color: rgba(26, 82, 118, 0.4);
            transition: transform 0.28s ease, color 0.28s ease;
        }

        .hero-stats a.stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 34px rgba(10, 37, 64, 0.12);
            border-color: rgba(23, 165, 137, 0.18);
        }

        .hero-stats a.stat-item:hover::after {
            color: var(--accent-teal);
            transform: translate(2px, -2px);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-dark);
            display: block;
        }

        .stat-number span {
            color: var(--accent-teal);
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 8px;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.3s both;
            isolation: isolate;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
            z-index: 1;
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, 0.8) 100%);
            z-index: 1;
        }

        .hero-image-wrapper picture {
            display: block;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            object-position: 50% 18%;
            display: block;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .hero-image-caption {
            position: absolute;
            bottom: 25px;
            left: 25px;
            right: 25px;
            z-index: 2;
            color: var(--white);
        }

        .hero-image-caption h3 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .hero-image-caption p {
            font-size: 14px;
            opacity: 0.9;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 20px;
            border-radius: 16px;
            box-shadow: var(--shadow-medium);
            animation: float 3s ease-in-out infinite;
            z-index: 4;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-card-1 {
            top: 30px;
            right: -30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .floating-card-1 .icon {
            width: 50px;
            height: 50px;
            background: rgba(23, 165, 137, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-teal);
            font-size: 20px;
        }

        .floating-card-1 .text span {
            font-size: 12px;
            color: var(--text-light);
        }

        .floating-card-1 .text strong {
            display: block;
            font-size: 16px;
            color: var(--primary-dark);
        }

        .floating-card-2 {
            bottom: 100px;
            left: -40px;
            animation-delay: 1.5s;
        }

        .floating-card-2 .rating {
            display: flex;
            gap: 3px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }

        .floating-card-2 p {
            font-size: 13px;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(23, 165, 137, 0.1);
            color: var(--accent-teal);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 42px;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Cancer Types Section */
        .cancer-types {
            background: var(--light-bg);
        }

        .cancer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .cancer-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .cancer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .cancer-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
            border-color: var(--border-light);
        }

        .cancer-card:hover::before {
            transform: scaleX(1);
        }

        .cancer-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(23, 165, 137, 0.1) 0%, rgba(26, 82, 118, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--accent-teal);
            transition: all 0.4s ease;
        }

        .cancer-card:hover .cancer-icon {
            background: var(--gradient-accent);
            color: var(--white);
            transform: scale(1.1);
        }

        .cancer-card h3 {
            font-size: 18px;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .cancer-types .cancer-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            padding: 24px;
        }

        #kanser-tedavileri .cancer-card {
            background: var(--light-bg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            padding: 24px;
        }

        .cancer-types .cancer-card h3 {
            margin-bottom: 0;
            line-height: 1.35;
        }

        #kanser-tedavileri .cancer-card h3 {
            margin-bottom: 0;
            line-height: 1.35;
        }

        .cancer-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .cancer-card .arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: var(--light-bg);
            border-radius: 50%;
            margin-top: 15px;
            color: var(--accent-teal);
            transition: all 0.3s ease;
        }

        .cancer-card:hover .arrow {
            background: var(--accent-teal);
            color: var(--white);
            transform: translateX(5px);
        }

        .cancer-subtypes {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border-light);
            justify-content: center;
        }

        .cancer-subtypes span {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 4px 10px;
            border-radius: 999px;
            background: var(--light-bg);
            color: var(--text-light);
            font-size: 11px;
            font-weight: 600;
        }

        /* News Section */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .news-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            border: 1px solid var(--border-light);
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .news-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.08);
        }

        .news-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--gradient-accent);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .news-content {
            padding: 25px;
        }

        .news-date {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .news-card h3 {
            font-size: 20px;
            color: var(--primary-dark);
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .news-card:hover h3 {
            color: var(--accent-teal);
        }

        .news-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .news-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-teal);
            font-weight: 600;
            margin-top: 15px;
            font-size: 14px;
        }

        .news-link:hover {
            gap: 12px;
        }

        .treatments-news-preview {
            margin-top: 72px;
            padding-top: 56px;
            border-top: 1px solid var(--border-light);
        }

        .treatments-news-header {
            margin-bottom: 42px;
        }

        .home-news-grid .news-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .home-news-grid .news-content {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .home-news-grid .news-content p {
            flex: 1;
        }

        .news-image-placeholder {
            width: 100%;
            height: 100%;
            min-height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(26, 82, 118, 0.12) 0%, rgba(23, 165, 137, 0.12) 100%);
            color: rgba(10, 37, 64, 0.32);
            font-size: 42px;
        }

        .home-news-empty {
            max-width: 720px;
            margin: 0 auto;
            padding: 42px 32px;
            border: 1px solid var(--border-light);
            border-radius: 28px;
            background: linear-gradient(180deg, rgba(248, 250, 251, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
            box-shadow: var(--shadow-soft);
            text-align: center;
        }

        .home-news-empty-icon {
            width: 74px;
            height: 74px;
            margin: 0 auto 20px;
            border-radius: 22px;
            background: rgba(23, 165, 137, 0.1);
            color: var(--accent-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .home-news-empty h3 {
            font-size: 30px;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }

        .home-news-empty p {
            max-width: 560px;
            margin: 0 auto 22px;
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;
        }

        .treatments-news-footer {
            display: flex;
            justify-content: center;
            margin-top: 34px;
        }

        /* About Section */
        .about {
            background: var(--primary-dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .about-image-main img {
            width: 100%;
            height: 550px;
            object-fit: cover;
        }

        .about-experience {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--gradient-accent);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-strong);
        }

        .about-experience .number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            display: block;
        }

        .about-experience .text {
            font-size: 14px;
            opacity: 0.9;
        }

        .about-content h2 {
            font-size: 42px;
            margin-bottom: 25px;
            color: var(--white);
        }

        .about-content h2 span {
            color: var(--accent-gold);
        }

        .about-content .lead {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .about-content p {
            opacity: 0.8;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .signature {
            margin-top: 40px;
        }

        .signature-name {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-style: italic;
            color: var(--accent-gold);
            margin-bottom: 5px;
        }

        .signature-title {
            font-size: 14px;
            opacity: 0.7;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            border: 1px solid var(--border-light);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--white);
        }

        .feature-card h3 {
            font-size: 20px;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .ngs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .ngs-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 35px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
            transition: all 0.4s ease;
        }

        .ngs-card:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-5px);
        }

        .ngs-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #fff;
        }

        .ngs-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .ngs-stats--compact {
            display: grid;
            grid-template-columns: repeat(3, minmax(120px, 180px));
            justify-content: center;
            gap: 28px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-soft);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(10, 37, 64, 0.78) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }

        /* Contact Section */
        .contact {
            background: var(--light-bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        .contact-info-card {
            background: var(--gradient-primary);
            padding: 50px;
            border-radius: 30px;
            color: var(--white);
        }

        .contact-info-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .contact-info-card p {
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-item-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-item-text h4 {
            font-size: 16px;
            margin-bottom: 5px;
            font-family: 'Source Sans 3', sans-serif;
            font-weight: 600;
        }

        .contact-item-text span {
            opacity: 0.8;
            font-size: 14px;
        }

        .contact-form-wrapper {
            background: var(--white);
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-soft);
        }

        .contact-form-wrapper h3 {
            font-size: 28px;
            color: var(--primary-dark);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--light-bg);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-teal);
            background: var(--white);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .btn-submit {
            width: 100%;
            padding: 18px;
            background: var(--gradient-accent);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(23, 165, 137, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 80px 0 30px;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-brand p {
            opacity: 0.7;
            margin: 20px 0 25px;
            line-height: 1.8;
        }

        .footer .logo {
            display: inline-flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .footer .logo-text h1,
        .footer .logo-heading,
        .footer .footer-brand-name {
            color: var(--white);
            font-size: 24px;
            margin-bottom: 2px;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        .footer .logo-text span {
            color: rgba(255, 255, 255, 0.68);
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--accent-teal);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 18px;
            margin-bottom: 25px;
            color: var(--white);
        }

        .footer-title-link {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0;
            border-radius: 0;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer-title-link:hover,
        .footer-title-link:focus-visible {
            color: var(--accent-teal);
            transform: translateX(4px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            opacity: 0.7;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-teal);
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            opacity: 0.6;
            font-size: 14px;
        }

        .cookie-popup {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: min(420px, calc(100vw - 32px));
            max-height: calc(100vh - 48px);
            overflow-y: auto;
            background: rgba(255, 255, 255, 0.97);
            border: 1px solid rgba(23, 165, 137, 0.18);
            border-radius: 24px;
            box-shadow: 0 24px 60px rgba(10, 37, 64, 0.2);
            padding: 24px;
            z-index: 1100;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(18px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        }

        .cookie-popup::before {
            content: '';
            position: absolute;
            inset: 0 0 auto;
            height: 4px;
            border-radius: 24px 24px 0 0;
            background: var(--gradient-accent);
        }

        .cookie-popup.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .cookie-popup.is-visible ~ .scroll-top {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .cookie-popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 38px;
            height: 38px;
            border: 0;
            border-radius: 12px;
            background: rgba(10, 37, 64, 0.06);
            color: var(--primary-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .cookie-popup-close:hover {
            background: rgba(10, 37, 64, 0.12);
            transform: rotate(90deg);
        }

        .cookie-popup-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent-teal);
            margin-bottom: 16px;
        }

        .cookie-popup h3 {
            font-size: 28px;
            color: var(--primary-dark);
            margin-bottom: 12px;
            max-width: 300px;
        }

        .cookie-popup > p {
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-light);
            margin-bottom: 18px;
            padding-right: 14px;
        }

        .cookie-popup-toggle {
            width: 100%;
            border: 0;
            border-radius: 16px;
            background: rgba(26, 82, 118, 0.08);
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 14px;
            font-weight: 700;
            padding: 14px 16px;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .cookie-popup-toggle:hover {
            background: rgba(26, 82, 118, 0.12);
        }

        .cookie-popup-toggle i {
            transition: transform 0.25s ease;
        }

        .cookie-popup-toggle.is-expanded i {
            transform: rotate(180deg);
        }

        .cookie-popup-details {
            margin-top: 16px;
            padding-top: 4px;
        }

        .cookie-popup-detail {
            border-top: 1px solid var(--border-light);
            padding: 14px 0;
        }

        .cookie-popup-detail strong {
            display: block;
            color: var(--primary-dark);
            font-size: 15px;
            margin-bottom: 6px;
        }

        .cookie-popup-detail p,
        .cookie-popup-footnote {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-light);
        }

        .cookie-popup-footnote {
            margin-top: 4px;
        }

        .cookie-popup-actions {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-top: 20px;
        }

        .cookie-popup-btn {
            width: 100%;
            border: 0;
            border-radius: 16px;
            padding: 14px 18px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .cookie-popup-btn-secondary {
            background: #eef6f5;
            color: var(--primary-dark);
        }

        .cookie-popup-btn-secondary:hover {
            background: #e1f1ef;
        }

        .cookie-popup-btn-primary {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: 0 14px 28px rgba(23, 165, 137, 0.2);
        }

        .cookie-popup-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 34px rgba(23, 165, 137, 0.26);
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            cursor: pointer;
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .cancer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .features-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .features-grid .feature-card:nth-child(3) {
                grid-column: 1 / -1;
                width: min(100%, 460px);
                justify-self: center;
            }
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ============================================
           MOBİL NAV — Canonical Block (≤1180px)
           993-1180 ve ≤992 için ortak kurallar.
           ≤992px bloğu sadece farklı değerleri override eder.
           ============================================ */
        @media (max-width: 1180px) {
            body.mobile-menu-open {
                overflow: hidden;
                overflow-x: clip;
            }

            .mobile-scroll-progress {
                display: block;
            }

            .header-main-content {
                gap: 14px;
                padding-right: 0;
            }

            .language-selector {
                position: relative;
                top: auto;
                right: auto;
                transform: none;
                margin-left: auto;
            }

            .nav-menu {
                display: block;
                position: fixed;
                top: calc(var(--header-offset, 112px) + 10px);
                left: 20px;
                right: 20px;
                margin-left: 0;
                padding: 18px;
                border-radius: 24px;
                border: 1px solid rgba(26, 82, 118, 0.08);
                background: rgba(255, 255, 255, 0.98);
                box-shadow: var(--shadow-strong);
                max-height: calc(100vh - var(--header-offset, 112px) - 30px);
                max-height: calc(100dvh - var(--header-offset, 112px) - 30px);
                overflow: auto;
                overflow-x: hidden;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateY(-18px) scale(0.96);
                transform-origin: top center;
                transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s ease;
                z-index: 1002;
            }

            .header.is-condensed .nav-menu {
                top: calc(var(--header-offset, 82px) + 10px);
                max-height: calc(100vh - var(--header-offset, 82px) - 30px);
                max-height: calc(100dvh - var(--header-offset, 82px) - 30px);
            }

            .header.is-mobile-menu-open .nav-menu {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0) scale(1);
            }

            .nav-menu-list {
                flex-direction: column !important;
                flex-wrap: nowrap;
                align-items: stretch;
                justify-content: flex-start;
                gap: 8px;
            }

            .nav-menu-list > li {
                width: 100%;
                opacity: 0;
                transform: translateY(14px);
                transition: opacity 0.22s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
            }

            .header.is-mobile-menu-open .nav-menu-list > li {
                opacity: 1;
                transform: translateY(0);
            }

            .header.is-mobile-menu-open .nav-menu-list > li:nth-child(1) { transition-delay: 0.04s; }
            .header.is-mobile-menu-open .nav-menu-list > li:nth-child(2) { transition-delay: 0.08s; }
            .header.is-mobile-menu-open .nav-menu-list > li:nth-child(3) { transition-delay: 0.12s; }
            .header.is-mobile-menu-open .nav-menu-list > li:nth-child(4) { transition-delay: 0.16s; }
            .header.is-mobile-menu-open .nav-menu-list > li:nth-child(5) { transition-delay: 0.2s; }
            .header.is-mobile-menu-open .nav-menu-list > li:nth-child(6) { transition-delay: 0.24s; }
            .header.is-mobile-menu-open .nav-menu-list > li:nth-child(7) { transition-delay: 0.28s; }
            .header.is-mobile-menu-open .nav-menu-list > li:nth-child(8) { transition-delay: 0.32s; }
            .header.is-mobile-menu-open .nav-menu-list > li:nth-child(9) { transition-delay: 0.36s; }

            .nav-menu a {
                width: 100%;
                justify-content: flex-start;
                padding: 14px 16px;
                font-size: 15px;
                border-radius: 14px;
                white-space: normal;
                overflow-wrap: anywhere;
            }

            .nav-menu a.nav-cta {
                justify-content: center;
                margin-top: 4px;
            }

            .nav-menu a.nav-dummy-link[data-nav-trigger]::after {
                content: '+';
                margin-left: auto;
                font-size: 18px;
                line-height: 1;
                color: var(--accent-teal);
                transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s ease;
            }

            .nav-menu-list > li.menu-item-has-mega.is-mega-open > a.nav-dummy-link[data-nav-trigger] {
                color: var(--accent-teal);
                background: rgba(23, 165, 137, 0.08);
            }

            .nav-menu-list > li.menu-item-has-mega.is-mega-open > a.nav-dummy-link[data-nav-trigger]::after {
                transform: rotate(45deg) scale(1.08);
            }

            /* Mega panel: display toggle (no transition on mobile) */
            .nav-menu-list > li.menu-item-has-mega .nav-mega-panel {
                position: static;
                display: none;
                width: 100%;
                grid-template-columns: 1fr;
                gap: 10px;
                max-height: none;
                padding: 0;
                padding-top: 10px;
                border: none;
                border-radius: 0;
                background: transparent;
                box-shadow: none;
                backdrop-filter: none;
                overflow: visible;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: none;
                transition: none;
            }

            .nav-menu-list > li.menu-item-has-mega:hover .nav-mega-panel,
            .nav-menu-list > li.menu-item-has-mega:focus-within .nav-mega-panel {
                display: none;
            }

            .nav-menu-list > li.menu-item-has-mega.is-mega-open .nav-mega-panel {
                display: grid;
            }

            .nav-mega-panel::before {
                display: none;
            }

            .nav-menu .nav-mega-panel > * {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .nav-menu .nav-mega-panel a.nav-mega-card {
                min-height: 0;
                padding: 16px;
                border-radius: 16px;
                background: #f8fafb;
                box-shadow: none;
                border: 1px solid rgba(26, 82, 118, 0.08);
                color: var(--text-dark);
            }

            .nav-menu .nav-mega-panel a.nav-mega-card strong {
                color: var(--primary-dark);
            }

            .nav-menu .nav-mega-panel .nav-mega-desc {
                color: var(--text-light);
            }

            .nav-menu .nav-mega-panel .nav-mega-kicker {
                color: var(--accent-teal);
            }

            .nav-menu .nav-mega-panel--knowledge {
                grid-template-columns: 1fr;
            }

            .nav-menu .nav-mega-panel--cancers {
                width: 100%;
                grid-template-columns: 1fr;
            }

            .nav-menu .nav-mega-panel--cancers a.nav-mega-link {
                min-height: 0;
                padding: 14px 16px;
                border-radius: 16px;
                background: #f8fafb;
                box-shadow: 0 6px 16px rgba(10, 37, 64, 0.06);
            }

            .menu-item-mobile-socials {
                display: block !important;
                width: 100%;
                margin-top: 6px;
                padding-top: 12px;
                border-top: 1px solid rgba(26, 82, 118, 0.08);
            }

            .mobile-menu-socials {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 12px;
                padding: 4px 0 2px;
            }

            .mobile-menu-socials a {
                width: 42px;
                height: 42px;
                padding: 0;
                border-radius: 14px;
                border: 1px solid rgba(26, 82, 118, 0.08);
                background: #f8fafb;
                color: var(--primary-dark);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 6px 16px rgba(10, 37, 64, 0.06);
            }

            .mobile-menu-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: 5px;
                width: 48px;
                height: 48px;
                margin-left: 0;
                border: 1px solid rgba(26, 82, 118, 0.08);
                border-radius: 14px;
                background: var(--white);
                box-shadow: var(--shadow-soft);
                padding: 0;
                z-index: 1003;
            }

            .mobile-menu-btn span {
                display: block;
                width: 18px;
                height: 2px;
                border-radius: 999px;
                background: var(--primary-dark);
                transition: transform 0.22s ease, opacity 0.22s ease;
            }

            /* Hamburger → X animasyonu (tek canonical konum) */
            .header.is-mobile-menu-open .mobile-menu-btn span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .header.is-mobile-menu-open .mobile-menu-btn span:nth-child(2) {
                opacity: 0;
            }

            .header.is-mobile-menu-open .mobile-menu-btn span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .mobile-menu-backdrop {
                display: block;
                position: fixed;
                inset: 0;
                border: 0;
                padding: 0;
                margin: 0;
                background: rgba(10, 37, 64, 0.28);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.22s ease, visibility 0.22s ease;
                z-index: 1001;
            }

            .header.is-mobile-menu-open .mobile-menu-backdrop {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            /* Chevron ikonları mobilde gizle */
            .nav-menu a.nav-dummy-link .fa-chevron-down {
                display: none;
            }

            .nav-chevron {
                display: none !important;
            }
        }

        /* ============================================
           MOBİL NAV OVERRIDE (≤992px)
           max-width:1180px bloğu inherit edilir;
           sadece farklı olan değerler burada override edilir.
           ============================================ */
        @media (max-width: 992px) {
            body {
                touch-action: pan-y pinch-zoom;
            }

            .header,
            .hero,
            .section,
            .footer {
                overflow-x: clip;
            }

            /* Gap ve logo: mobilde biraz daha sıkı */
            .header-main-content {
                gap: 12px;
            }

            .header-main {
                padding: 10px 0;
            }

            .logo {
                flex: 1 1 auto;
                min-width: 0;
                gap: 12px;
            }

            .logo-icon {
                width: 48px;
                height: 48px;
                font-size: 20px;
                border-radius: 13px;
            }

            .logo-text h1,
            .logo-heading {
                font-size: 18px;
            }

            .logo-prefix {
                font-size: 0.8em;
            }

            .logo-role {
                font-size: 11.5px;
            }

            /* Nav menu: 1180px bloğundaki 20px inset'i 16px'e düşür */
            .nav-menu {
                left: 16px;
                right: 16px;
                max-height: calc(100vh - var(--header-offset, 112px) - 26px);
                max-height: calc(100dvh - var(--header-offset, 112px) - 26px);
            }

            .header.is-condensed .nav-menu {
                max-height: calc(100vh - var(--header-offset, 82px) - 26px);
                max-height: calc(100dvh - var(--header-offset, 82px) - 26px);
            }

            /* Touch targets: minimum 44px */
            .cookie-popup-close {
                width: 44px;
                height: 44px;
            }

            .lang-option {
                min-height: 44px;
            }

            /* Layout grid'ler */
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content {
                order: 1;
            }
            .hero-image {
                order: 0;
            }
            .hero-description {
                margin: 0 auto 35px;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .about-grid {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .ngs-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cookie-popup {
                right: 20px;
                bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }
            .section-title {
                font-size: 32px;
            }
            .cancer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .features-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }
            .feature-card {
                padding: 24px 14px;
                border-radius: 22px;
            }
            .feature-icon {
                width: 64px;
                height: 64px;
                margin-bottom: 18px;
                font-size: 26px;
            }
            .feature-card h3 {
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 2.8em;
                margin-bottom: 10px;
                font-size: 16px;
                line-height: 1.35;
            }
            .feature-card p {
                font-size: 13px;
                line-height: 1.6;
            }
            .features-grid .feature-card:nth-child(3) {
                grid-column: 1 / -1;
                width: min(100%, 320px);
                padding: 24px 18px;
                justify-self: center;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .hero-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .floating-card {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .header-top {
                padding: 5px 0;
            }

            .header-top-content {
                justify-content: center;
                gap: 0;
            }

            .contact-info {
                width: 100%;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
            }

            .contact-info a {
                gap: 5px;
                font-size: 10px;
                line-height: 1.2;
                white-space: nowrap;
                opacity: 1;
            }

            .contact-info a:nth-child(1) {
                flex: 0 0 auto;
            }

            .contact-info a:nth-child(2) {
                flex: 0 1 auto;
                min-width: 0;
            }

            .contact-info a:nth-child(3),
            .social-links {
                display: none;
            }

            .header-main {
                padding: 8px 0;
            }

            .header-main-content {
                gap: 10px;
                padding-right: 0;
            }

            .logo {
                flex: 1 1 auto;
                min-width: 0;
                gap: 10px;
            }

            .logo-icon {
                width: 42px;
                height: 42px;
                font-size: 18px;
                border-radius: 12px;
            }

            .language-selector {
                margin-right: 6px;
            }

            .lang-toggle {
                gap: 7px;
                min-height: 32px;
                padding: 0 11px;
                border-radius: 999px;
                border: 1px solid rgba(26, 82, 118, 0.14);
                background: rgba(255, 255, 255, 0.98);
                font-size: 11px;
                box-shadow: none;
            }

            .lang-globe {
                width: auto;
                height: auto;
                background: transparent;
            }

            .lang-globe i {
                font-size: 12px;
            }

            .lang-toggle .lang-label {
                display: none;
            }

            .lang-toggle i.fa-chevron-down {
                font-size: 10px;
            }

            .lang-dropdown {
                right: 0;
                left: auto;
                top: calc(100% + 6px);
                min-width: 120px;
            }

            .lang-option {
                padding: 10px 14px;
                font-size: 12px;
            }

            .logo-text {
                min-width: 0;
                padding-top: 1px;
            }

            .logo-text h1,
            .logo-heading {
                gap: 0;
                font-size: 15px;
                line-height: 1.1;
                margin-bottom: 3px;
            }

            .logo-prefix {
                font-size: 0.8em;
            }

            .logo-role {
                font-size: 10.5px;
                line-height: 1.2;
            }

            .mobile-menu-btn {
                width: 42px;
                height: 42px;
                border-radius: 12px;
            }

            .mobile-menu-btn span {
                width: 16px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .cookie-popup {
                left: 16px;
                right: 16px;
                bottom: 16px;
                width: auto;
                max-height: calc(100vh - 32px);
                padding: 20px;
                border-radius: 20px;
            }

            .cookie-popup h3 {
                font-size: 24px;
                max-width: none;
            }

            .cookie-popup > p {
                padding-right: 0;
            }

            .cookie-popup-actions {
                flex-direction: column;
            }

            .cookie-popup-btn {
                width: 100%;
            }
            .cancer-grid {
                grid-template-columns: 1fr;
            }
            .cancer-types .cancer-grid,
            #kanser-tedavileri .cancer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px;
            }
            .cancer-types .cancer-card,
            #kanser-tedavileri .cancer-card {
                padding: 20px 14px 18px;
                border-radius: 22px;
                box-shadow: 0 8px 24px rgba(10, 37, 64, 0.05);
            }
            .cancer-types .cancer-icon,
            #kanser-tedavileri .cancer-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 16px;
                border-radius: 18px;
                font-size: 24px;
            }
            .cancer-types .cancer-card h3,
            #kanser-tedavileri .cancer-card h3 {
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 2.6em;
                margin-bottom: 0;
                font-size: 15px;
                line-height: 1.3;
            }
            .cancer-types .cancer-card p,
            .cancer-types .cancer-subtypes,
            #kanser-tedavileri .cancer-card p,
            #kanser-tedavileri .cancer-subtypes {
                display: none;
            }
            .cancer-types .cancer-card .arrow,
            #kanser-tedavileri .cancer-card .arrow {
                margin-top: 16px;
                width: 34px;
                height: 34px;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .ngs-card {
                padding: 28px 22px;
            }
        }

        @media (max-width: 767px) {
            .hero {
                --hero-mobile-image-width: clamp(164px, 42vw, 208px);
                --hero-mobile-image-height: clamp(338px, 90vw, 412px);
                --hero-mobile-gap: 12px;
                padding: calc(var(--header-offset, 112px) + 8px) 0 44px;
            }

            .hero::before {
                display: none;
            }

            .hero-grid {
                display: block;
                text-align: left;
                position: relative;
            }

            .hero-grid::after {
                content: '';
                display: block;
                clear: both;
            }

            .hero-content {
                display: block;
                position: relative;
                z-index: 1;
            }

            .hero-content::before {
                content: '';
                float: right;
                width: var(--hero-mobile-image-width);
                height: var(--hero-mobile-image-height);
                margin: 2px 0 14px var(--hero-mobile-gap);
                shape-outside: inset(0 round 28px);
                shape-margin: 8px;
            }

            .hero-badge {
                display: none;
            }

            .hero-title {
                font-size: clamp(28px, 8.4vw, 38px);
                line-height: 1.06;
                letter-spacing: -0.02em;
                width: calc(100% - var(--hero-mobile-image-width) - var(--hero-mobile-gap));
                max-width: calc(100% - var(--hero-mobile-image-width) - var(--hero-mobile-gap));
                margin-bottom: 14px;
                margin-right: auto;
            }

            .hero-description,
            .hero-support-copy {
                max-width: none;
                margin-left: 0;
                margin-right: 0;
            }

            .hero-description {
                font-size: 15px;
                line-height: 1.6;
                margin-top: 18px;
                margin-bottom: 10px;
            }

            .hero-support-copy {
                font-size: 15px;
                line-height: 1.7;
                margin-bottom: 10px;
            }

            .hero-signature {
                clear: both;
                font-size: 17px;
                margin-bottom: 4px;
            }

            .hero-signature-title {
                clear: both;
                font-size: 12px;
                margin-bottom: 0;
            }

            .hero-actions {
                clear: both;
                --hero-action-height: 56px;
                width: 100%;
                margin-top: 8px;
            }

            .hero-buttons {
                width: 100%;
                max-width: none;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
                margin-top: 0;
                align-items: stretch;
            }

            .hero-buttons .btn {
                grid-area: auto;
            }

            .hero-buttons .btn {
                width: 100%;
                min-width: 0;
                justify-content: center;
                min-height: var(--hero-action-height);
                height: var(--hero-action-height);
                padding: 13px 22px;
                font-size: 14px;
            }

            .btn-stat-link {
                white-space: normal;
                width: 100% !important;
                justify-self: stretch;
                padding: 10px 12px !important;
                border-radius: 16px;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 251, 0.96) 100%);
                border: 1px solid rgba(26, 82, 118, 0.08);
                box-shadow: 0 10px 24px rgba(10, 37, 64, 0.08);
                color: var(--text-light);
                flex-direction: column;
                gap: 3px;
                text-align: center;
                font-size: 11.5px;
                line-height: 1.15;
            }

            .btn-stat-link strong {
                display: block;
                font-size: 18px;
                line-height: 0.95;
            }

            .hero-image {
                position: absolute;
                top: 2px;
                right: 0;
                width: var(--hero-mobile-image-width);
                padding: 0;
                z-index: 2;
            }

            .hero-image-wrapper {
                width: 100%;
                border-radius: 28px;
            }

            .hero-image-wrapper::before {
                background: linear-gradient(180deg, rgba(10, 37, 64, 0) 50%, rgba(10, 37, 64, 0.88) 100%);
            }

            .hero-image-wrapper img {
                height: var(--hero-mobile-image-height);
                object-position: 50% 14%;
            }

            .hero-image-caption {
                left: 18px;
                right: 18px;
                bottom: 18px;
            }

            .hero-image-caption h3 {
                font-size: 15px;
                line-height: 1.12;
                margin-bottom: 6px;
            }

            .hero-image-caption p {
                font-size: 10px;
                line-height: 1.45;
                max-width: 108px;
            }

            .floating-card {
                display: block;
                padding: 12px 12px;
                border-radius: 16px;
                box-shadow: 0 18px 35px rgba(10, 37, 64, 0.16);
                animation-duration: 4s;
            }

            .floating-card-1 {
                display: none;
            }

            .floating-card-1 .icon {
                width: 38px;
                height: 38px;
                font-size: 17px;
            }

            .floating-card-1 .text span {
                display: block;
                font-size: 10px;
                margin-bottom: 2px;
            }

            .floating-card-1 .text strong {
                font-size: 13px;
                line-height: 1.25;
            }

            .floating-card-2 {
                display: none;
            }

            .treatments-news-preview {
                margin-top: 52px;
                padding-top: 42px;
            }

            .treatments-news-header {
                margin-bottom: 28px;
            }

            .home-news-empty {
                padding: 30px 20px;
                border-radius: 22px;
            }

            .home-news-empty h3 {
                font-size: 24px;
            }

            .cookie-popup {
                left: 50%;
                right: auto;
                bottom: max(12px, env(safe-area-inset-bottom, 0px));
                width: min(320px, calc(100vw - 24px));
                max-height: min(72vh, 360px);
                padding: 16px;
                border-radius: 18px;
                transform: translate(-50%, 18px);
            }

            .cookie-popup.is-visible {
                transform: translate(-50%, 0);
            }

            .cookie-popup::before {
                border-radius: 18px 18px 0 0;
            }

            .cookie-popup-close {
                top: 12px;
                right: 12px;
                width: 32px;
                height: 32px;
                border-radius: 10px;
            }

            .cookie-popup-kicker {
                font-size: 10px;
                margin-bottom: 10px;
            }

            .cookie-popup h3 {
                font-size: 20px;
                margin-bottom: 8px;
                max-width: 220px;
            }

            .cookie-popup > p {
                font-size: 13px;
                line-height: 1.55;
                margin-bottom: 12px;
            }

            .cookie-popup-toggle {
                min-height: 42px;
                padding: 10px 12px;
                font-size: 13px;
                border-radius: 14px;
            }

            .cookie-popup-details {
                margin-top: 10px;
                max-height: 140px;
                overflow-y: auto;
                padding-right: 4px;
            }

            .cookie-popup-detail {
                padding: 10px 0;
            }

            .cookie-popup-detail strong {
                font-size: 14px;
                margin-bottom: 4px;
            }

            .cookie-popup-detail p,
            .cookie-popup-footnote {
                font-size: 12px;
                line-height: 1.55;
            }

            .cookie-popup-actions {
                display: grid;
                grid-template-columns: 1fr;
                gap: 8px;
                margin-top: 12px;
            }

            .cookie-popup-btn {
                width: 100%;
                min-height: 42px;
                padding: 10px 12px;
                border-radius: 14px;
                font-size: 12px;
            }
        }

        @media (max-width: 430px) {
            .hero {
                --hero-mobile-image-width: 158px;
                --hero-mobile-image-height: 346px;
                --hero-mobile-gap: 10px;
            }

            .hero-actions {
                --hero-action-height: 54px;
            }

            .hero-buttons {
                width: 100%;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero-buttons .btn {
                min-height: var(--hero-action-height);
                height: var(--hero-action-height);
                padding: 12px 18px;
                font-size: 13px;
            }

            .btn-stat-link strong {
                font-size: 17px;
            }

            .btn-stat-link {
                width: 100% !important;
                font-size: 11px;
            }

            .hero-title {
                font-size: 30px;
                line-height: 1.07;
            }

            .hero-description {
                font-size: 14px;
            }

            .hero-image-caption {
                left: 14px;
                right: 14px;
                bottom: 14px;
            }

            .hero-image-caption h3 {
                font-size: 13px;
            }

            .hero-image-caption p {
                font-size: 9px;
                max-width: 92px;
            }

            .floating-card-1 {
                top: 10px;
                right: 6px;
                max-width: 116px;
            }

            .floating-card-2 {
                display: none;
            }
        }

        @media (max-width: 360px) and (orientation: portrait) {
            .hero {
                --hero-mobile-image-width: min(100%, 220px);
                --hero-mobile-image-height: 292px;
                --hero-mobile-gap: 0px;
                padding-top: calc(var(--header-offset, 112px) + 6px);
            }

            .hero-grid {
                display: flex;
                flex-direction: column;
                gap: 18px;
            }

            .hero-grid::after {
                display: none;
            }

            .hero-content {
                order: 1;
            }

            .hero-content::before {
                content: none;
                display: none;
                margin: 0;
                width: 0;
                height: 0;
            }

            .hero-title {
                width: 100%;
                max-width: none;
                font-size: 29px;
                line-height: 1.05;
                margin-bottom: 14px;
            }

            .hero-description {
                width: 100%;
                max-width: none;
                margin-top: 0;
                margin-bottom: 12px;
                font-size: 14px;
                line-height: 1.62;
            }

            .hero-support-copy {
                width: 100%;
                max-width: none;
                margin-bottom: 12px;
                font-size: 14px;
                line-height: 1.65;
            }

            .hero-signature,
            .hero-signature-title,
            .hero-actions {
                clear: none;
            }

            .hero-image {
                position: relative;
                top: auto;
                right: auto;
                order: 0;
                width: min(100%, 220px);
                margin: 0 auto;
            }

            .hero-image-wrapper {
                width: 100%;
                border-radius: 24px;
            }

            .hero-image-wrapper img {
                height: var(--hero-mobile-image-height);
            }

            .hero-image-caption {
                left: 14px;
                right: 14px;
                bottom: 14px;
            }

            .hero-image-caption h3 {
                font-size: 14px;
            }

            .hero-image-caption p {
                font-size: 10px;
                max-width: 120px;
            }

            .floating-card-1 {
                display: none;
            }

            .floating-card-1 .icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .floating-card-1 .text span {
                font-size: 8px;
            }

            .floating-card-1 .text strong {
                font-size: 11px;
            }

            .floating-card-2 {
                display: none;
            }

            .hero-actions {
                --hero-action-height: 52px;
                width: 100%;
                margin-top: 14px;
            }

            .hero-buttons {
                width: 100%;
                gap: 10px;
                grid-template-columns: 1fr;
            }

            .hero-buttons .btn {
                min-height: var(--hero-action-height);
                height: auto;
                padding: 13px 18px;
                font-size: 13px;
            }

            .btn-stat-link {
                gap: 6px;
                width: 100% !important;
                font-size: 10px;
            }

            .btn-stat-link strong {
                font-size: 16px;
            }

            .contact .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .contact-grid {
                gap: 18px;
            }

            .contact-info-card,
            .contact-form-wrapper {
                max-width: 100%;
                padding: 28px 20px;
                border-radius: 26px;
                overflow: hidden;
            }

            .contact-info-card h3,
            .contact-form-wrapper h3 {
                font-size: 24px;
            }

            .contact-info-card p {
                margin-bottom: 28px;
                font-size: 15px;
                line-height: 1.65;
            }

            .contact-item {
                gap: 14px;
                margin-bottom: 22px;
            }

            .contact-item:last-child {
                margin-bottom: 0;
            }

            .contact-item-icon {
                width: 44px;
                height: 44px;
                border-radius: 12px;
                font-size: 18px;
            }

            .contact-item-text {
                min-width: 0;
                flex: 1 1 auto;
            }

            .contact-item-text h4 {
                font-size: 15px;
                margin-bottom: 6px;
            }

            .contact-item-text span,
            .contact-item-text a {
                display: block;
                font-size: 14px;
                line-height: 1.7;
                overflow-wrap: anywhere;
                word-break: break-word;
            }

            .scroll-top {
                right: 16px;
                bottom: 16px;
                width: 54px;
                height: 54px;
            }
        }
        /* -----------------------------
           Hakkımda sayfası — genel sayfa stili
           (modern sayfa stilleri hakkimda.css'te)
           ----------------------------- */
        .page-hero {
            padding: 180px 0 80px;
            background: #f8fafb;
            text-align: center;
        }

        .about-page-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
        }

        .expertise {
            padding: 80px 0;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .expertise-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .expertise-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        @media (max-width: 768px) {
            .expertise-grid {
                grid-template-columns: 1fr;
            }
        }

/* ================================
   ACCESSIBILITY: REDUCED MOTION
   ================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-card {
        animation: none !important;
    }
    
    .mobile-scroll-progress-bar {
        transition: none !important;
    }
}


/* ================================================
   Bilgi Merkezi mega paneli — 2x2 grid
================================================ */
.nav-mega-panel--knowledge {
    width: min(560px, calc(100vw - 40px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ================================================
   Nav chevron — desktop görünüm
   (mobil gizleme max-width:1180px bloğunda)
================================================ */
.nav-chevron {
    font-size: 10px;
    opacity: 0.6;
    margin-left: 3px;
    transition: transform 0.25s ease;
    display: inline-block;
}

.nav-menu-list > li.is-mega-open > a .nav-chevron,
.nav-menu-list > li:hover > a .nav-chevron {
    transform: rotate(180deg);
}

/* ================================================
   Dropdown panel — açıldığı başlığın altına ortala
================================================ */

/* Genel kural: paneli tetikleyen li'ye göre ortala */
@media (min-width: 993px) {
    .nav-mega-panel {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(10px);
        transform-origin: top center;
    }

    .nav-menu-list > li.menu-item-has-mega:hover .nav-mega-panel,
    .nav-menu-list > li.menu-item-has-mega:focus-within .nav-mega-panel,
    .nav-menu-list > li.menu-item-has-mega.is-mega-open .nav-mega-panel {
        transform: translateX(-50%) translateY(0);
    }

    /* Viewport kenarına taşmaması için sınır kontrolleri */
    /* Sol taraftaki menü öğeleri için sağa kaydır */
    .nav-menu-list > li:first-child .nav-mega-panel,
    .nav-menu-list > li:nth-child(2) .nav-mega-panel {
        left: 0;
        right: auto;
        transform: translateX(0) translateY(10px);
    }

    .nav-menu-list > li:first-child:hover .nav-mega-panel,
    .nav-menu-list > li:first-child:focus-within .nav-mega-panel,
    .nav-menu-list > li:first-child.is-mega-open .nav-mega-panel,
    .nav-menu-list > li:nth-child(2):hover .nav-mega-panel,
    .nav-menu-list > li:nth-child(2):focus-within .nav-mega-panel,
    .nav-menu-list > li:nth-child(2).is-mega-open .nav-mega-panel {
        transform: translateX(0) translateY(0);
    }
}

/* ================================================
   İletişim Bölümü v2 — Yeniden Tasarım
================================================ */

.contact-v2 {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(23, 165, 137, 0.06), transparent 40%),
        linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.contact-v2-header {
    text-align: center;
    margin-bottom: 56px;
}

/* Ana grid */
.contact-v2-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 32px;
    align-items: start;
}

/* Sol: bilgi kartları */
.contact-v2-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-v2-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-v2-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(10, 37, 64, 0.1);
}

.contact-v2-card--dark {
    background: linear-gradient(135deg, #0a2540 0%, #1a5276 100%);
}

.contact-v2-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-v2-card-body {
    min-width: 0;
}

.contact-v2-card-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.contact-v2-card-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-v2-card-value:hover {
    color: var(--accent-teal);
}

/* Sağ: form */
.contact-v2-form-wrap {
    background: var(--white);
    border-radius: 28px;
    padding: 44px 48px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.08);
    border: 1px solid rgba(26, 82, 118, 0.06);
}

.contact-v2-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 32px;
}

.contact-v2-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-v2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-v2-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-v2-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.contact-v2-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: #fafbfc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact-v2-input:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 165, 137, 0.1);
}

.contact-v2-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235d6d7e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}

.contact-v2-textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.7;
}

.contact-v2-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 17px 32px;
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 28px rgba(23, 165, 137, 0.25);
    margin-top: 4px;
}

.contact-v2-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(23, 165, 137, 0.35);
}

.contact-v2-submit i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.contact-v2-submit:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-v2-grid {
        grid-template-columns: 1fr;
    }

    .contact-v2-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-v2 {
        padding: 72px 0;
    }

    .contact-v2-info {
        grid-template-columns: 1fr;
    }

    .contact-v2-form-wrap {
        padding: 32px 24px;
        border-radius: 22px;
    }

    .contact-v2-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-v2-form-wrap {
        padding: 28px 20px;
    }
}
