/* MODERN VE KAYIT ALAN PREMIUM TASARIM - GÜMÜŞ EXPRESS */

:root {
    --primary-navy: #0A192F;
    --dark-navy: #020c1b;
    --brand-blue: #1D4ED8;
    --brand-blue-hover: #2563EB;
    --brand-light-blue: #DBEAFE;
    --accent-orange: #FF5A36;

    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-light: #F8FAFC;

    --bg-light: #F1F5F9;
    /* Daha yumuşak bir gri */
    --white: #FFFFFF;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.counter,
.price {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.mt-4 {
    margin-top: 20px;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--brand-blue);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--dark-navy);
}


/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-navy);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--brand-blue-hover);
    font-weight: 400;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-blue-hover);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--brand-blue-hover);
}

/* BUTONLAR */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--brand-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

.btn-light {
    background-color: var(--white);
    color: var(--brand-blue);
}

.btn-light:hover {
    background-color: var(--brand-light-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.btn-outline:hover {
    background: var(--brand-blue);
    color: var(--white);
}

/* --- YENİ HERO 3 PANEL TASARIMI --- */
.hero-section {
    padding: 0;
    margin-top: 0;
    width: 100%;
    height: 80vh;
    /* Fotoğrafın tam görünmesi için */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: stretch;
}

.hero-panel-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 auto;
}

.hero-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.left-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.center-panel {
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    text-align: center;
}

.center-title {
    font-size: 44px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.highlight-script {
    font-family: 'Brush Script MT', 'Outfit', cursive, sans-serif;
    color: var(--accent-orange);
    font-size: 48px;
    font-weight: normal;
}

.panel-features {
    list-style: none;
    margin-top: 40px;
}

.panel-features li {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.right-panel {
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: 80px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-number {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 3px solid var(--accent-orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.contact-number .icon-box {
    background: var(--accent-orange);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card p {
    color: #64748B;
    font-size: 16px;
    font-weight: 600;
}

/* --- ISTATISTIK BÖLÜMÜ (Rakamlarla Biz) --- */
.stats-section {
    background-color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    flex: 1;
    min-width: 180px;
}

.stat-box i {
    font-size: 38px;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 42px;
    color: var(--primary-navy);
    display: inline-block;
}

.stat-box span {
    font-size: 42px;
    color: var(--primary-navy);
    font-weight: 800;
}

.stat-box p {
    color: var(--text-muted);
    font-weight: 500;
}

/* --- HAKKIMIZDA BÖLÜMÜ --- */
.about-section {
    padding: 100px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.rounded-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 90, 54, 0.3);
    text-align: center;
}

.experience-badge span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
}

.about-content {
    flex: 1;
}

.section-badge {
    display: inline-block;
    background-color: var(--brand-light-blue);
    color: var(--brand-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 40px;
    color: var(--primary-navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    margin-bottom: 35px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.about-features i {
    color: var(--brand-blue);
    font-size: 20px;
}

/* --- HİZMETLER BÖLÜMÜ --- */
.services-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
}

.service-icon {
    font-size: 56px;
    color: var(--brand-blue);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-navy);
    transition: var(--transition);
}

.service-card p {
    color: var(--text-muted);
    transition: var(--transition);
}

/* --- FIYATLANDIRMA (Pricing) --- */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    border-color: var(--brand-blue);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: 80%;
}

.pricing-card h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 44px;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 30px;
}

.pricing-card .price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    padding: 0;
}

.pricing-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
}

.pricing-card ul li i {
    color: #10B981;
    margin-top: 5px;
}

.pricing-card.popular ul li i {
    color: var(--brand-blue);
}

/* --- HESAPLAYICI (CALCULATOR) --- */
.calculator-section {
    padding: 100px 0;
}

.calc-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
}

.calc-box {
    flex: 2;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.calc-items-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.calc-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.calc-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-navy);
}

.calc-item-info i {
    color: var(--brand-blue);
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.calc-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    border-radius: 30px;
    padding: 5px 10px;
}

.calc-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-navy);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.calc-btn:hover {
    background: var(--brand-blue);
    color: var(--white);
}

.calc-qty {
    font-size: 18px;
    font-weight: 700;
    min-width: 25px;
    text-align: center;
    color: var(--primary-navy);
}

.calc-result-box {
    flex: 1;
    min-width: 350px;
    background: var(--dark-navy);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
}

.calc-result-box h3 {
    font-size: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    color: var(--white);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--brand-light-blue);
}

.result-row strong {
    font-size: 22px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.price-row {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.price-row strong {
    font-size: 36px;
    color: var(--accent-orange);
}

.result-note {
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 25px;
}

.w-100 {
    width: 100% !important;
    justify-content: center;
}

/* --- ÇALIŞMA SİSTEMİ (How it works) --- */
.how-it-works {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--brand-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.3);
}

.step-card h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

/* --- SSS (FAQ) --- */
.faq-section {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 850px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--white);
}

.faq-header {
    background: var(--white);
    padding: 22px 25px;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-header:hover {
    background: #f8fafc;
}

.faq-header.active {
    background: var(--brand-blue);
    color: var(--white);
    border-radius: 10px 10px 0 0;
}

.faq-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f8fafc;
    color: var(--text-muted);
    font-size: 15px;
}


/* --- CTA BÖLÜMÜ --- */
.cta-section {
    background: linear-gradient(135deg, var(--brand-blue), var(--primary-navy));
    padding: 80px 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-text p {
    color: var(--brand-light-blue);
    font-size: 18px;
}


/* --- FOOTER --- */
.footer {
    background-color: var(--dark-navy);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--brand-blue-hover);
    font-weight: 400;
}

.brand-col p {
    color: #94A3B8;
    margin-bottom: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-blue);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background: var(--brand-blue);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--brand-blue-hover);
    transform: translateX(5px);
}

.contact-info li {
    color: #94A3B8;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info li i {
    color: var(--brand-blue-hover);
    font-size: 18px;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.contact-info strong {
    color: var(--white);
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748B;
    font-size: 14px;
}


/* --- MOBİL UYUM (RESPONSIVE) --- */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .navbar {
        top: 0 !important;
    }

    .hero-section {
        padding: 150px 0 80px;
    }

    .nav-contact {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background-color: var(--primary-navy);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        gap: 25px;
    }

    .nav-links.active {
        right: 0;
    }

    .cta-container,
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-features li {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .calc-wrapper {
        flex-direction: column;
    }

    .calc-result-box {
        position: static;
        width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-panel-container {
        flex-direction: column;
    }

    .hero-section {
        height: auto;
        padding-top: 70px;
    }

    .left-panel {
        background: rgba(255, 255, 255, 0.95);
        align-items: center;
        text-align: center;
    }

    .center-panel {
        padding: 40px 20px;
    }

    .right-panel {
        align-items: center;
        padding: 20px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .stat-box {
        min-width: 45%;
        margin-bottom: 20px;
    }

    .calc-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .calc-box {
        padding: 25px;
    }
}

/* --- PREMIUM HİZMET BÖLGELERİ (Klas Depolama Tarzı) --- */
.premium-bg {
    background-color: #f8fafc;
    padding: 100px 0;
}

.premium-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.premium-region-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(10, 25, 47, 0.9));
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--white);
    z-index: 2;
    transform: translateY(40px);
    transition: transform 0.4s ease;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.view-detail {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-orange);
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.premium-region-card:hover {
    transform: translateY(-10px);
}

.premium-region-card:hover .card-bg {
    transform: scale(1.1);
}

.premium-region-card:hover .card-overlay {
    opacity: 1;
}

.premium-region-card:hover .card-content {
    transform: translateY(0);
}

.premium-region-card:hover .card-content p {
    opacity: 0.9;
}

.premium-region-card:hover .view-detail {
    opacity: 1;
}

@media (max-width: 768px) {
    .premium-regions-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        transform: translateY(0);
    }

    .card-content p,
    .view-detail {
        opacity: 1;
    }
}

/* --- BÖLGE DETAY MODALI --- */
.region-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(2, 12, 27, 0.75);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.region-modal-overlay.open {
    display: flex;
    animation: fadeInOverlay 0.25s ease;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.region-modal-box {
    background: #fff;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUpModal 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes slideUpModal {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: var(--accent-orange);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--brand-blue));
    padding: 40px 40px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.modal-header h2 {
    color: #fff;
    font-size: 26px;
    margin: 0;
}

.modal-body {
    padding: 30px 40px;
}

.modal-body>p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.modal-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.modal-cities .city-tag {
    background: var(--brand-light-blue);
    color: var(--brand-blue);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
}

.modal-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.modal-features li i {
    color: var(--brand-blue);
    font-size: 16px;
    flex-shrink: 0;
}

.modal-footer {
    padding: 20px 40px 35px;
}

.modal-footer .btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 15px;
}

@media (max-width: 600px) {

    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .modal-header h2 {
        font-size: 20px;
    }
}