        :root {
            --neon-blue: #03bcf4;
            --neon-blue-soft: #8fe9ff;
            --neon-white: #f4fdff;
            --neon-dark: #07111f;
    }

.call-image-box { position: relative; }
.call-image-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
}
.call-image-close:focus-visible { outline: 3px solid #59efff; outline-offset: 2px; }

        @keyframes neonFlickerBlue {
            0%, 18%, 20%, 35%, 37%, 55%, 100% {
                opacity: 1;
                box-shadow: 0 0 0 1px rgba(143,233,255,.22), 0 0 12px rgba(3,188,244,.30), 0 0 28px rgba(3,188,244,.20);
                filter: brightness(1);
            }
            18.5%, 19.5%, 36%, 36.5%, 56% {
                opacity: .92;
                box-shadow: 0 0 0 1px rgba(143,233,255,.38), 0 0 20px rgba(3,188,244,.58), 0 0 44px rgba(3,188,244,.34), 0 0 86px rgba(3,188,244,.16);
                filter: brightness(1.08);
            }
        }

        @keyframes neonFlickerGreen {
            0%, 18%, 20%, 35%, 37%, 55%, 100% {
                opacity: 1;
                box-shadow: 0 0 0 1px rgba(63,255,146,.18), 0 0 10px rgba(37,211,102,.22), 0 0 24px rgba(37,211,102,.16);
                filter: brightness(1);
            }
            18.5%, 19.5%, 36%, 36.5%, 56% {
                opacity: .94;
                box-shadow: 0 0 0 1px rgba(63,255,146,.28), 0 0 18px rgba(37,211,102,.36), 0 0 42px rgba(37,211,102,.24), 0 0 72px rgba(37,211,102,.14);
                filter: brightness(1.05);
            }
        }

        @keyframes neonTextFlicker {
            0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
                opacity: 1;
                text-shadow: 0 0 8px var(--neon-blue), 0 0 18px var(--neon-blue), 0 0 42px rgba(3,188,244,.55);
            }
            20%, 24%, 55% {
                opacity: .78;
                text-shadow: 0 0 4px var(--neon-blue), 0 0 12px rgba(3,188,244,.44), 0 0 28px rgba(3,188,244,.24);
            }
        }

        @keyframes bgPulse {
            0%, 100% {
                background-position: 0% 50%;
                filter: brightness(1);
            }
            50% {
                background-position: 100% 50%;
                filter: brightness(1.04);
            }
        }

        .hero-home-v3 {
            position: relative;
            overflow: clip;
        }

        .hero-home-v3::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(3,188,244,.10), transparent 30%),
                        radial-gradient(circle at 80% 30%, rgba(3,188,244,.08), transparent 28%),
                        radial-gradient(circle at 50% 80%, rgba(3,188,244,.08), transparent 28%);
            background-size: 140% 140%;
            animation: bgPulse 8s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        .hero-home-v3 > * {
            position: relative;
            z-index: 1;
        }

        .hero-site-title {
            display: inline-flex;
            align-items: center;
            padding: 10px 16px;
            margin: 0 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(143,233,255,.36);
            background: rgba(5,18,35,.52);
            color: var(--neon-white);
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            text-shadow: 0 0 8px var(--neon-blue), 0 0 18px rgba(3,188,244,.75), 0 0 40px rgba(3,188,244,.32);
            animation: neonTextFlicker 2.8s linear infinite, neonFlickerBlue 2.8s linear infinite;
        }

        .hero-strap {
            margin-top: 2px;
        }

        .btn-neon,
        .header-call,
        .float-call {
            color: #f4fdff !important;
            border: 1px solid rgba(143,233,255,.24) !important;
            background: linear-gradient(135deg, rgba(3,188,244,.16), rgba(3,188,244,.08)) !important;
            text-shadow: none !important;
            box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 0 0 1px rgba(143,233,255,.10) !important;
            animation: none !important;
            filter: none !important;
        }

        .btn-neon-green,
        .header-wa,
        .float-wa {
            color: #f4fff7 !important;
            border: 1px solid rgba(63,255,146,.22) !important;
            background: linear-gradient(135deg, rgba(37,211,102,.14), rgba(37,211,102,.08)) !important;
            text-shadow: none !important;
            box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 0 0 1px rgba(63,255,146,.08) !important;
            animation: none !important;
            filter: none !important;
        }

        .nav-actions {
            gap: 8px;
            align-items: center;
        }

        .header-call,
        .header-wa {
            min-height: 42px;
            padding: 0 14px;
            font-size: .84rem;
            border-radius: 14px;
            white-space: nowrap;
        }

        .mobile-menu-toggle {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 12px;
            padding: 0;
        }

        .mobile-menu-toggle span {
            width: 18px;
        }

        .mobile-menu .mobile-inner {
            padding-top: 14px;
            padding-bottom: 20px;
        }

        .mobile-menu a,
        .mobile-menu summary {
            font-size: .95rem;
            line-height: 1.35;
        }

        .mobile-links a {
            font-size: .92rem;
            padding: 10px 12px;
        }

        .mobile-cta-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            margin-top: 14px;
        }

        .mobile-cta-row .btn {
            min-height: 44px;
            font-size: .92rem;
        }

        .floating-cta {
            position: fixed;
            left: 50%;
            bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
            transform: translateX(-50%);
            width: auto;
            max-width: calc(100vw - 20px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0;
            z-index: 999;
        }

        .floating-cta .float-btn {
            min-width: 148px;
            max-width: 48vw;
            min-height: 46px;
            padding: 10px 14px;
            border-radius: 16px;
            font-size: .88rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-align: center;
            white-space: nowrap;
        }

        @media (max-width: 991px) {
            .nav-actions .header-call,
            .nav-actions .header-wa {
                display: none;
            }

            .hero-site-title {
                font-size: .94rem;
                padding: 9px 14px;
                margin-bottom: 12px;
            }

            .home-display-title {
                font-size: clamp(2rem, 8vw, 2.8rem);
            }

            .hero-contact-stack .btn {
                min-height: 48px;
                font-size: .96rem;
            }
        }

        @media (max-width: 640px) {
            .floating-cta {
                width: calc(100% - 16px);
                max-width: none;
                gap: 8px;
            }

            .floating-cta .float-btn {
                flex: 1 1 0;
                min-width: 0;
                max-width: none;
                padding: 10px 8px;
                font-size: .78rem;
                border-radius: 14px;
            }

            .floating-cta .float-btn span,
            .floating-cta .float-btn small {
                pointer-events: none;
            }
        }

        /* ===== NEW HOMEPAGE TOP SECTION - NO OLD HERO CLASSES ===== */
        .home-top-reset {
            position: relative;
            overflow: hidden;
            padding: 92px 0 28px;
            background:
                radial-gradient(circle at 50% 8%, rgba(3,188,244,.16), transparent 22%),
                radial-gradient(circle at 15% 18%, rgba(3,188,244,.08), transparent 24%),
                radial-gradient(circle at 85% 18%, rgba(3,188,244,.08), transparent 24%),
                linear-gradient(180deg, #02060d 0%, #050911 52%, #02060b 100%);
        }

        .home-top-reset::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 50% 0%, rgba(3,188,244,.10), transparent 22%),
                radial-gradient(circle at 20% 30%, rgba(3,188,244,.05), transparent 20%),
                radial-gradient(circle at 80% 30%, rgba(3,188,244,.05), transparent 20%);
            animation: bgPulse 7s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        .home-top-reset .container {
            position: relative;
            z-index: 1;
        }

        .home-top-center {
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
        }

        .home-top-site-title {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 18px;
            margin: 0;
            border-radius: 999px;
            border: 1px solid rgba(143,233,255,.34);
            background: rgba(5,18,35,.52);
            color: #f4fdff;
            font-size: clamp(1.15rem, 2.4vw, 1.5rem);
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
            text-align: center;
            text-shadow: 0 0 8px #03bcf4, 0 0 18px rgba(3,188,244,.75), 0 0 40px rgba(3,188,244,.32);
            animation: neonTextFlicker 2.8s linear infinite, neonFlickerBlue 2.8s linear infinite;
        }

        .home-top-badge {
            margin: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 36px;
            padding: 0 16px;
            border-radius: 999px;
            background: rgba(34, 215, 255, 0.08);
            border: 1px solid rgba(34, 215, 255, 0.20);
            color: #dffbff;
            font-weight: 800;
            text-align: center;
            text-shadow: 0 0 10px rgba(3,188,244,.35);
        }

        .home-top-title {
            margin: 0;
            max-width: 860px;
            text-align: center;
            color: #f4fdff;
            font-size: clamp(2.2rem, 7vw, 4.7rem);
            line-height: 1.02;
            font-weight: 900;
            letter-spacing: -0.04em;
            text-shadow: 0 0 10px rgba(3,188,244,.28), 0 0 24px rgba(3,188,244,.18);
        }

        .home-top-subtitle {
            margin: 0;
            text-align: center;
            font-size: clamp(1.2rem, 2.6vw, 1.9rem);
            font-weight: 800;
            color: #9fefff;
            text-shadow: 0 0 14px rgba(3,188,244,.25);
        }

        .home-top-keywords {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 12px;
            margin: 4px 0 0;
            color: #cfeffd;
        }

        .home-top-keywords span { font-weight: 600; }
        .home-top-keywords i { font-style: normal; color: #03bcf4; }

        .home-top-text {
            margin: 4px auto 0;
            max-width: 760px;
            text-align: center;
            color: #c4d2e2;
            line-height: 1.8;
            font-size: 1.02rem;
        }

        .home-top-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            width: 100%;
            margin-top: 8px;
        }

        .home-top-buttons .btn {
            min-height: 54px;
            min-width: 220px;
        }

        .home-top-panel {
            width: min(100%, 760px);
            margin-top: 10px;
            border-radius: 24px;
            border: 1px solid rgba(34,215,255,.18);
            background: linear-gradient(180deg, rgba(8,14,24,.96), rgba(5,9,16,.94));
            box-shadow: 0 0 0 1px rgba(34,215,255,.08), 0 0 28px rgba(34,215,255,.08), 0 22px 70px rgba(0,0,0,.36);
            padding: 18px;
        }

        .home-top-panel h3 {
            margin: 0 0 8px;
            text-align: center;
            font-size: 1.2rem;
        }

        .home-top-panel p {
            margin: 0;
            text-align: center;
            color: #b8c0cf;
        }

        @media (max-width: 760px) {
            .home-top-reset {
                padding: 76px 0 18px;
            }

            .home-top-center { gap: 8px; }

            .home-top-site-title {
                padding: 8px 14px;
                font-size: .94rem;
            }

            .home-top-badge {
                min-height: 32px;
                padding: 0 12px;
                font-size: .88rem;
            }

            .home-top-title {
                font-size: clamp(2rem, 10vw, 3.1rem);
                margin: 0;
            }

            .home-top-subtitle {
                font-size: 1.15rem;
            }

            .home-top-text {
                font-size: .96rem;
                line-height: 1.7;
            }

            .home-top-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .home-top-buttons .btn {
                min-width: 0;
                width: 100%;
            }

            .home-top-panel {
                padding: 16px;
            }
        }

        /* ===== SERVICE LANDING PAGES / SERP RESEARCH IMPROVEMENTS ===== */
        .section-services-overview {
            position: relative;
            background:
                radial-gradient(circle at 15% 10%, rgba(3,188,244,.08), transparent 30%),
                linear-gradient(180deg, #02060b, #050a12);
        }

        .service-overview-grid {
            align-items: stretch;
        }

        .service-overview-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            text-decoration: none;
            transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
        }

        .service-overview-card:hover,
        .service-overview-card:focus-visible {
            transform: translateY(-4px);
            border-color: rgba(34,215,255,.48);
            box-shadow: 0 16px 46px rgba(0,0,0,.34), 0 0 26px rgba(3,188,244,.09);
        }

        .service-overview-card p {
            flex: 1;
        }

        .service-overview-icon {
            display: grid;
            width: 52px;
            height: 52px;
            place-items: center;
            margin-bottom: 14px;
            border: 1px solid rgba(34,215,255,.24);
            border-radius: 16px;
            background: rgba(3,188,244,.08);
            font-size: 1.55rem;
        }

        .service-page-hero {
            padding-top: 116px;
            padding-bottom: 52px;
        }

        .service-page-hero .compact-hero-head {
            margin-bottom: 22px;
        }

        .service-page-hero h1 {
            max-width: 900px;
            margin-inline: auto;
            font-size: clamp(2.2rem, 5.4vw, 4.35rem);
            line-height: 1.08;
        }

        .service-page-hero .lead {
            max-width: 780px;
        }

        .service-detail-card {
            padding: clamp(24px, 4vw, 42px);
        }

        .service-detail-card h2 {
            margin-top: 10px;
            line-height: 1.18;
        }

        .service-detail-card p {
            color: #c1ccda;
            line-height: 1.82;
        }

        .service-checklist {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 20px;
            margin-top: 22px;
        }

        .service-checklist li {
            margin: 0;
            padding: 12px 14px 12px 42px;
            border: 1px solid rgba(34,215,255,.14);
            border-radius: 14px;
            background: rgba(3,188,244,.04);
        }

        .service-page-cta .info-banner-card {
            padding: clamp(26px, 5vw, 48px);
            text-align: center;
        }

        /* Keep the route tool and primary CTAs visible sooner than the old tall hero. */
        @media (min-width: 761px) {
            .home-top-reset { padding-top: 78px; }
            .home-top-title {
                max-width: 800px;
                font-size: clamp(2.45rem, 5.1vw, 4.05rem);
                line-height: 1.04;
            }

            .floating-cta {
                display: none !important;
            }
        }

        @media (max-width: 760px) {
            .service-page-hero {
                padding-top: 90px;
                padding-bottom: 36px;
            }

            .service-page-hero h1 {
                font-size: clamp(2rem, 10vw, 3rem);
            }

            .service-checklist {
                grid-template-columns: 1fr;
            }

            .service-overview-card {
                min-height: 0;
            }
        }


        .hero-calc-inline {
            width: min(100%, 760px);
            margin-top: 10px;
            border-radius: 24px;
            border: 1px solid rgba(34,215,255,.18);
            background: linear-gradient(180deg, rgba(8,14,24,.96), rgba(5,9,16,.94));
            box-shadow: 0 0 0 1px rgba(34,215,255,.08), 0 0 28px rgba(34,215,255,.08), 0 22px 70px rgba(0,0,0,.36);
            padding: 18px;
        }

        .hero-calc-inline .calculator-title {
            margin: 0 0 14px;
            text-align: center;
            font-size: clamp(1.4rem, 2.6vw, 1.9rem);
            font-weight: 900;
        }

        .hero-calc-inline .transfer-form {
            padding: 0;
            display: grid;
            gap: 16px;
        }

        .hero-calc-inline .fare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .hero-calc-inline label {
            display: grid;
            gap: 8px;
        }

        .hero-calc-inline label span {
            color: rgba(194, 241, 255, 0.72);
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.76rem;
            font-weight: 700;
            text-align: left;
        }

        .hero-calc-inline .form-control {
            background: rgba(2, 6, 12, 0.96);
            border-color: rgba(34, 215, 255, 0.14);
            border-radius: 999px;
        }

        .hero-calc-inline .fare-result {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            padding: 0;
            margin-top: 2px;
        }

        .hero-calc-inline .fare-result div {
            padding: 14px;
            border-radius: 18px;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.06);
        }

        .hero-calc-inline .fare-result strong {
            display: block;
            font-size: 1.1rem;
        }

        .hero-calc-inline .fare-result span {
            display: block;
            margin-top: 4px;
            color: #a9b7c8;
            font-size: .84rem;
        }

        .hero-calc-inline .fare-note {
            padding: 0;
            text-align: center;
            margin: 0;
            color: #b8c0cf;
        }

        .hero-calc-inline .fare-cta-wrap {
            margin-top: 14px;
        }

        @media (max-width: 760px) {
            .hero-calc-inline {
                padding: 16px;
            }

            .hero-calc-inline .fare-grid,
            .hero-calc-inline .fare-result {
                grid-template-columns: 1fr;
            }
        }


        /* CALL IMAGE CONFIRM */
        .call-image-modal {
            position: fixed;
            inset: 0;
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(3, 8, 16, 0.82);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .call-image-modal.is-open {
            display: flex;
        }

        .call-image-box {
            width: min(92vw, 430px);
            border-radius: 26px;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(8,14,24,.98), rgba(5,9,16,.98));
            border: 1px solid rgba(34,215,255,.18);
            box-shadow: 0 0 0 1px rgba(34,215,255,.08), 0 20px 70px rgba(0,0,0,.48);
        }

        .call-image-box img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
            background: #07111f;
        }

        .call-image-content {
            padding: 18px;
            text-align: center;
        }

        .call-image-content h3 {
            margin: 0 0 8px;
            font-size: 1.15rem;
            color: #f4fdff;
        }

        .call-image-content p {
            margin: 0;
            color: #b8c0cf;
            line-height: 1.65;
            font-size: .95rem;
        }

        .call-image-actions {
            padding: 0 18px 18px;
        }

        .call-image-actions .btn {
            width: 100%;
            min-height: 52px;
        }

        @media (max-width: 640px) {
            .call-image-box {
                width: min(94vw, 420px);
                border-radius: 22px;
            }

            .call-image-content {
                padding: 16px;
            }

            .call-image-actions {
                padding: 0 16px 16px;
            }
        }


        /* Stabil buton metinleri */
        .home-top-buttons .btn,
        .floating-cta .float-btn,
        .mobile-cta-row .btn,
        .nav-actions .btn {
            font-size: 1rem !important;
            letter-spacing: 0 !important;
            line-height: 1.2 !important;
        }

        .floating-cta {
            gap: 8px;
        }

        .floating-cta .float-btn {
            min-width: 160px;
        }

        /* Modalde sadece devam butonu neon */
        .call-image-actions .btn {
            color: #f4fdff !important;
            border: 1px solid rgba(143,233,255,.30) !important;
            background: linear-gradient(135deg, rgba(3,188,244,.20), rgba(3,188,244,.10)) !important;
            text-shadow: 0 0 8px rgba(3,188,244,.75) !important;
            box-shadow:
                0 0 0 1px rgba(143,233,255,.18),
                0 0 16px rgba(3,188,244,.24),
                0 12px 30px rgba(0,0,0,.28) !important;
            animation: neonFlickerBlue 2.4s infinite !important;
        }

        .call-image-box {
            width: min(92vw, 380px);
            max-height: calc(100vh - 28px);
            border-radius: 24px;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(8,14,24,.98), rgba(5,9,16,.98));
            border: 1px solid rgba(34,215,255,.18);
            box-shadow: 0 0 0 1px rgba(34,215,255,.08), 0 20px 70px rgba(0,0,0,.48);
            display: flex;
            flex-direction: column;
        }

        .call-image-box img {
            width: 100%;
            aspect-ratio: 9 / 16;
            object-fit: cover;
            object-position: center;
            display: block;
            background: #07111f;
            flex: 0 0 auto;
        }

        .call-image-content {
            padding: 10px 14px 6px;
            text-align: center;
            flex: 0 0 auto;
        }

        .call-image-content h3 {
            margin: 0 0 4px;
            font-size: 1rem;
            color: #f4fdff;
        }

        .call-image-content p {
            margin: 0;
            color: #b8c0cf;
            line-height: 1.45;
            font-size: .85rem;
        }

        .call-image-actions {
            padding: 0 14px 14px;
            flex: 0 0 auto;
        }

        .call-image-actions .btn {
            width: 100%;
            min-height: 48px;
            font-size: .98rem;
        }

        @media (max-width: 640px) {
            .home-top-site-title,
            .home-top-badge {
                display: inline-flex !important;
                min-height: 34px;
                padding-left: 14px;
                padding-right: 14px;
            }

            .home-top-buttons .btn {
                min-height: 52px !important;
                font-size: .98rem !important;
            }

            .floating-cta .float-btn {
                font-size: .84rem !important;
                min-height: 48px !important;
            }

            .call-image-modal {
                padding: 10px;
                align-items: center;
            }

            .call-image-box {
                width: min(92vw, 350px);
                max-height: calc(100vh - 20px);
                border-radius: 20px;
            }

            .call-image-box img {
                aspect-ratio: 9 / 14;
            }

            .call-image-content {
                padding: 8px 12px 5px;
            }

            .call-image-content h3 {
                font-size: .96rem;
            }

            .call-image-content p {
                font-size: .82rem;
                line-height: 1.38;
            }

            .call-image-actions {
                padding: 0 12px 12px;
            }

            .call-image-actions .btn {
                min-height: 46px;
                font-size: .94rem;
            }
        }

        /* Arama modalındaki dikey görseli hiçbir ekran oranında kırpma. */
        .call-image-modal .call-image-box > img {
            width: 100%;
            height: min(675px, calc(100vh - 150px));
            height: min(675px, calc(100dvh - 150px));
            min-height: 0;
            aspect-ratio: auto;
            object-fit: contain;
            object-position: center;
            flex: 0 1 auto;
        }
