@charset "UTF-8";

:root {
    /* Colors — Light Mode (Mia Group style) */
    --bg-main: #f0f2f5;
    --bg-section: #e4e9f0;
    --bg-gradient: linear-gradient(135deg, #f0f2f5, #e4e9f0);
    --text-main: #464646;
    --text-heading: #1d2e38;
    --text-muted: #54606c;
    --text-accent: #0062FF;
    --accent-primary: #13B8EE;
    --accent-secondary: #0062FF;
    --accent-gradient: linear-gradient(270deg, #51CCFF 0%, #0060FF 100%);
    --accent-glow: rgba(19, 184, 238, 0.3);

    /* Cards & Glass */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-blur: blur(10px);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --card-hover-shadow: 0 8px 30px rgba(1, 98, 255, 0.12);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 13px;
    --btn-radius: 35px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease, color 0.3s ease;
}

ul {
    list-style: none;
}

h1,
h2,
h3 {
    color: var(--text-heading);
    font-weight: 700;
}

h4,
h5,
h6 {
    color: var(--text-heading);
    font-weight: 600;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--btn-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(19, 184, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(1, 98, 255, 0.4);
}

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.main-header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-accent);
}

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

.nav-links a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--text-accent);
}

/* NAV DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown>a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-top: 2px;
    transition: transform 0.3s;
}

.nav-dropdown:hover>a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 400;
    transition: 0.2s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--bg-section);
    color: var(--text-accent);
    padding-left: 25px;
}

/* DISTRICT GRID (City Pages) */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.district-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-heading);
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: var(--card-shadow);
}

.district-tag:hover {
    border-color: #0062ff;
    background: #0062ff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 98, 255, 0.25);
}

/* WHERE TO BUY (City Pages) */
.where-to-buy {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.where-to-buy p {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.where-to-buy h3 {
    color: var(--text-heading);
    margin-bottom: 15px;
}

/* FOOTER */
.main-footer {
    background: var(--text-heading);
    border-top: none;
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--text-accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--text-accent);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.6);
}

.contact-info a:hover {
    color: var(--text-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* HERO SECTION */
.hero-section {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-section);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-heading);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline {
    padding: 12px 28px;
    border-radius: var(--btn-radius);
    font-weight: 500;
    color: var(--text-accent);
    border: 1.5px solid var(--accent-primary);
    background: transparent;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn-outline:hover {
    background: rgba(19, 184, 238, 0.08);
    box-shadow: 0 4px 15px rgba(19, 184, 238, 0.15);
    color: var(--text-accent);
}

/* SECTIONS COMMON */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-heading);
    font-weight: 700;
}

/* COUNTERS */
.counters-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid var(--glass-border);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item {
    padding: 20px;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 10px;
    line-height: 1;
}

.counter-label {
    font-size: 1.1rem;
    color: var(--text-heading);
    font-weight: 500;
}

@media (max-width: 768px) {
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--card-shadow);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-hover-shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-accent);
}

.feature-icon svg {
    stroke: var(--accent-primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-heading);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* EXPLAINER */
.alt-bg {
    background: var(--bg-section);
}

.explainer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    padding: 0;
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    align-items: stretch;
}

.explainer-image-wrapper {
    width: 100%;
    height: 100%;
}

.explainer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.explainer-text-wrapper {
    padding: 50px;
    text-align: left;
}

.explainer-content h2 {
    color: var(--text-heading);
}

.explainer-list {
    text-align: left;
    margin: 30px auto;
    display: inline-block;
}

.explainer-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 300;
}

/* PRICING */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    text-align: center;
    width: 350px;
    position: relative;
    transition: 0.3s;
    box-shadow: var(--card-shadow);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(1, 98, 255, 0.15);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--card-hover-shadow);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #fff;
    padding: 5px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-heading);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 30px;
}

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

.pricing-card ul li {
    margin-bottom: 15px;
    color: var(--text-muted);
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li::before {
    content: "✓";
    color: var(--text-accent);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* PROCESS STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-item {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.step-item h3 {
    margin-bottom: 10px;
    color: var(--text-heading);
}

.step-item p {
    color: var(--text-muted);
    font-weight: 300;
}

/* FAQ (old grid style — kept for compatibility) */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: 0.3s;
    box-shadow: var(--card-shadow);
}

.faq-item:hover {
    background: var(--bg-section);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-accent);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* VIDEO SLIDESHOW — CSS marquee (zero JS, zero CLS) */
.video-slideshow {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    background: var(--bg-section);
    /* Fixed height prevents CLS: no layout shift when animation starts */
    min-height: 460px;
    display: flex;
    align-items: center;
}

.video-slideshow::before,
.video-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.video-slideshow::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-section), transparent);
}

.video-slideshow::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-section), transparent);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slideshow-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    animation: marquee 20s linear infinite;
}

/* Pause on hover for better UX */
.video-slideshow:hover .slideshow-track {
    animation-play-state: paused;
}

.slide-item {
    flex-shrink: 0;
    width: 300px;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
    box-shadow: var(--card-shadow);
}

.slide-item:hover {
    transform: scale(1.05);
    border-color: var(--accent-primary);
    box-shadow: var(--card-hover-shadow);
}

.slide-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop: static 4-video grid (no animation) */
@media (min-width: 1025px) {
    .video-slideshow {
        min-height: auto;
        padding: 60px 0;
    }

    .video-slideshow::before,
    .video-slideshow::after {
        display: none;
    }

    .slideshow-track {
        animation: none;
        width: 100%;
        justify-content: center;
        gap: 30px;
    }

    .slide-item {
        width: 260px;
        height: 360px;
    }
}

/* ORDER FORM PAGES */
.form-hero {
    padding: 150px 0 60px;
    text-align: center;
    background: var(--bg-section);
}

.form-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-heading);
}

.form-hero .accent {
    color: var(--text-accent);
}

.form-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.form-section-number {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.form-section-header h2 {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin: 0;
}

.form-hint {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 300;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-section);
    border: 1px solid #e0e5ef;
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.form-group input::placeholder {
    color: #a0aab4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(19, 184, 238, 0.15);
    background: #fff;
}

/* Tenant blocks */
.tenant-block {
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.tenant-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tenant-title {
    color: var(--text-accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.tenant-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-remove {
    background: none;
    border: 1px solid rgba(255, 80, 80, 0.5);
    color: #ff5050;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-remove:hover {
    background: rgba(255, 80, 80, 0.1);
    border-color: #ff5050;
}

.add-tenant-btn {
    margin-top: 20px;
    font-size: 0.95rem;
}

/* Order Summary */
.summary-card {
    background: var(--bg-section);
    border: 1px solid var(--accent-primary);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.summary-price {
    color: var(--text-accent);
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 10px 0;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
}

.summary-total .summary-price {
    font-size: 1.5rem;
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-primary);
    flex-shrink: 0;
}

.checkbox-group a {
    color: var(--text-accent);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ ACCORDION */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion .faq-item {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: var(--card-shadow);
}

.faq-accordion .faq-item:hover {
    border-color: rgba(19, 184, 238, 0.3);
}

.faq-item.open {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(19, 184, 238, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    gap: 15px;
}

.faq-question span:first-child {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-heading);
}

.faq-toggle {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-accent);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 25px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 25px 22px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
}

/* PACKAGE SELECTOR */
.package-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.package-option {
    cursor: pointer;
    position: relative;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-card {
    background: var(--bg-section);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.package-option.active .package-card {
    border-color: var(--accent-primary);
    background: rgba(19, 184, 238, 0.04);
    box-shadow: 0 4px 20px rgba(19, 184, 238, 0.12);
}

.package-card:hover {
    border-color: rgba(19, 184, 238, 0.4);
    background: var(--bg-section);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.package-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 10px;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* FLOATING ACTION BUTTON (FAB) */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fab-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(19, 184, 238, 0.4);
    transition: 0.3s;
    position: relative;
    z-index: 2;
    color: #fff;
}

.fab-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(1, 98, 255, 0.5);
}

.fab-close-icon {
    display: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

.fab-open-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 100%;
    height: 100%;
}

.fab-open-icon svg {
    stroke: #fff;
    display: block;
}

.fab-container.active .fab-close-icon {
    display: block;
}

.fab-container.active .fab-open-icon {
    display: none;
}

.fab-container.active .fab-toggle {
    background: var(--text-heading);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fab-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: #fff;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    /* GPU-composited: no Layout Shift (CLS fix) */
    transform: translateY(15px) scale(0.95);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.fab-container.active .fab-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.fab-menu-header {
    padding: 12px 20px 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 5px;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.2s;
}

.fab-item:hover {
    background: rgba(19, 184, 238, 0.06);
    color: var(--text-accent);
}

.fab-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: var(--text-accent);
}

.fab-icon svg {
    stroke: var(--accent-primary);
}

/* FAB MESSAGE BUBBLE */
.fab-message-bubble {
    position: absolute;
    bottom: 85px;
    right: 0;
    background: #fff;
    border-radius: 18px;
    padding: 15px 40px 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.fab-message-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.fab-message-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
}

.fab-bubble-text {
    color: var(--text-heading);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.fab-bubble-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-section);
    border: none;
    color: var(--text-muted);
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.fab-bubble-close:hover {
    background: var(--glass-border);
    color: var(--text-heading);
}

/* CALLBACK FORM */
.callback-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.callback-fields {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.callback-fields .form-group {
    flex: 1;
}

.callback-fields .form-group input {
    width: 100%;
    padding: 16px 18px;
    background: var(--bg-section);
    border: 1px solid #e0e5ef;
    border-radius: 10px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.callback-fields .form-group input::placeholder {
    color: #a0aab4;
}

.callback-fields .form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(19, 184, 238, 0.15);
    background: #fff;
}

.btn-callback {
    white-space: nowrap;
    padding: 16px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.callback-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.callback-note a {
    color: var(--text-accent);
    font-weight: 600;
    text-decoration: none;
}

.callback-note a:hover {
    text-decoration: underline;
}

/* ============================================
   GLOBAL UI ELEMENTS (Icons, Lang Switcher)
   ============================================ */
/* --- Language Switcher (Desktop) --- */
.lang-switcher-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    border-left: 1px solid #ddd;
    padding-left: 15px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    transition: 0.2s;
}

.lang-btn:hover {
    color: var(--text-accent);
}

.lang-btn.active {
    color: var(--text-heading);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* --- SVG Icons Helper --- */
.icon-svg {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
    display: inline-block;
}

.district-tag .icon-svg {
    margin-right: 6px;
    color: var(--text-accent);
    width: 1.1em;
    height: 1.1em;
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

    /* --- GLOBAL --- */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Video Slideshow - Remove edge shadows on mobile */
    .video-slideshow::before,
    .video-slideshow::after {
        display: none;
    }

    /* PACKAGE SELECTOR - ENHANCED VISUALS */
    .package-selector {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .package-option {
        position: relative;
    }

    .package-option input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 100%;
        width: 100%;
        z-index: 2;
    }

    .package-card {
        background: #fff;
        border: 1px solid var(--glass-border);
        border-radius: var(--border-radius);
        padding: 20px;
        text-align: center;
        /* transition: all 0.3s ease; - REMOVED for instant selection */
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .package-option input:hover+.package-card {
        border-color: var(--accent-primary);
        box-shadow: 0 4px 15px rgba(19, 184, 238, 0.15);
    }

    .package-option input:checked+.package-card {
        border: 2px solid var(--accent-secondary);
        background: rgba(0, 98, 255, 0.04);
        box-shadow: 0 8px 30px rgba(0, 98, 255, 0.2);
        transform: scale(1.03);
        z-index: 1;
    }

    .package-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-heading);
        margin-bottom: 5px;
    }

    .package-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent-secondary);
        margin-bottom: 10px;
    }

    .package-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.4;
    }

    /* --- MOBILE HEADER --- */
    .main-header {
        height: 60px;
    }

    .main-header .container {
        padding: 0 16px;
    }

    .main-header .btn-primary {
        display: none;
    }

    .nav-links {
        display: none;
    }

    /* Mobile phone button in header - CTA Style */
    .mobile-phone-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--accent-gradient);
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(19, 184, 238, 0.4);
        margin-right: 12px;
    }

    .mobile-phone-btn:hover,
    .mobile-phone-btn:active {
        box-shadow: 0 6px 20px rgba(1, 98, 255, 0.5);
        transform: scale(1.05);
    }

    .mobile-phone-btn svg {
        width: 22px;
        height: 22px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
    }

    /* --- Language Switcher (Mobile) --- */
    .mobile-lang-switcher {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
        width: 100%;
    }

    .mobile-lang-switcher .lang-btn {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 10px;
    }

    .mobile-lang-switcher .sep {
        color: #ddd;
    }

    /* Burger button */
    .burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
        flex-shrink: 0;
        z-index: 1002;
    }

    .burger-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-heading);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .burger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile nav overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* align from top so dropdown opens DOWNWARD */
        overflow-y: auto;
        /* allow scrolling when city list is expanded */
        padding-top: 64px;
        /* space for the close button */
        padding-bottom: 40px;
        opacity: 0;
        pointer-events: none;
        /* CLS fix: GPU-composited, no layout shift */
        transition: opacity 0.35s ease;
    }

    .mobile-nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-close {
        position: absolute;
        top: 12px;
        right: 16px;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.8rem;
        color: var(--text-heading);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-list {
        list-style: none;
        text-align: center;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 360px;
    }

    .mobile-nav-list li {
        margin-bottom: 8px;
    }

    .mobile-nav-list a {
        display: block;
        padding: 14px 30px;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--text-heading);
        text-decoration: none;
        border-radius: 12px;
        transition: 0.2s;
        min-height: 44px;
    }

    .mobile-nav-list a:hover,
    .mobile-nav-list a:active {
        background: rgba(19, 184, 238, 0.08);
        color: var(--text-accent);
    }

    .mobile-nav-cta {
        margin-top: 20px;
        padding: 14px 40px;
        font-size: 1.1rem;
    }

    /* Mobile dropdown in overlay */
    .mobile-nav-dropdown {
        margin-bottom: 8px;
    }

    .mobile-nav-dropdown-title {
        display: block;
        padding: 14px 30px;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--text-heading);
        cursor: pointer;
        border-radius: 12px;
        min-height: 44px;
        background: none;
        border: none;
        width: 100%;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
    }

    .mobile-nav-dropdown-items {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-nav-dropdown.open .mobile-nav-dropdown-items {
        max-height: 500px;
    }

    .mobile-nav-dropdown-items a {
        font-size: 1rem;
        padding: 10px 30px;
        color: var(--text-muted);
    }

    /* --- HERO SECTION --- */
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- TYPOGRAPHY --- */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .section {
        padding: 60px 0;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    /* --- COUNTERS --- */
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    /* --- FEATURES --- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card:hover {
        transform: none;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* --- EXPLAINER --- */
    .explainer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .explainer-text-wrapper {
        text-align: center;
        padding: 25px 20px;
    }

    .explainer-image-wrapper {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .explainer-list li {
        font-size: 1rem;
    }

    /* --- PRICING --- */
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pricing-card {
        width: 100%;
        max-width: 100%;
        padding: 35px 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card:hover {
        transform: none;
    }

    .price {
        font-size: 2.2rem;
    }

    .pricing-card h3 {
        font-size: 1.4rem;
    }

    /* --- STEPS --- */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* --- FAQ ACCORDION --- */
    .faq-accordion {
        max-width: 100%;
    }

    .faq-question {
        padding: 18px 16px;
    }

    .faq-question span:first-child {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.open .faq-answer {
        max-height: 500px;
        padding: 0 16px 18px;
    }

    /* --- DISTRICTS GRID --- */
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .district-tag {
        min-height: 50px;
        font-size: 0.85rem;
        padding: 10px 8px;
    }

    /* --- WHERE TO BUY (City Pages) --- */
    .where-to-buy .arguments-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .where-to-buy .content-box {
        padding: 25px 16px;
    }

    /* --- FOOTER --- */
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    /* --- VIDEO SLIDESHOW --- */
    /* Reserve height before JS initialises to prevent CLS */
    .video-slideshow {
        min-height: 340px;
    }

    .slide-item {
        width: 200px;
        height: 280px;
    }

    /* --- FORMS --- */
    .form-hero {
        padding: 100px 0 40px;
    }

    .form-hero h1 {
        font-size: 1.6rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 20px 16px;
    }

    /* Break long words in section headings (e.g. German compound words like "Mietwohnungsdaten") */
    .form-section h2,
    .form-section h3,
    .form-section-header h2 {
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        min-width: 0;
    }

    /* Fix checkbox + terms links overflowing on mobile */
    .checkbox-group label {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 4px;
    }

    .checkbox-group label input[type="checkbox"] {
        flex-shrink: 0;
        margin-top: 3px;
    }

    .checkbox-group label span,
    .checkbox-group label a {
        overflow-wrap: break-word;
        word-break: break-word;
    }



    .package-selector {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .callback-fields {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-callback {
        width: 100%;
    }

    .callback-form {
        padding: 20px 16px;
    }

    /* --- BUTTONS — Touch friendly --- */
    .btn,
    .btn-primary,
    .btn-outline {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* --- FAB (mobile adjustments) --- */
    .fab-container {
        bottom: 20px;
        right: 16px;
    }

    /* --- CONTACT PAGE --- */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* --- WZORY PAGE --- */
    .documents-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.3rem;
        /* match Critical CSS */
    }

    .hero-section {
        padding: 100px 0 60px;
        /* match Critical CSS */
    }

    .section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .counter-number {
        font-size: 2rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .districts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .district-tag {
        min-height: 44px;
        font-size: 0.8rem;
        padding: 8px 6px;
    }
}

/* Desktop: hide mobile-only elements */
@media (min-width: 769px) {

    .mobile-phone-btn,
    .burger-btn,
    .mobile-nav-overlay {
        display: none !important;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for child elements */
.reveal-on-scroll.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-on-scroll.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-on-scroll.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-on-scroll.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher-desktop {
    margin-left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- LANGUAGE DROPDOWN --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-drop-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-drop-btn:hover,
.lang-drop-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-drop-btn::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-top: 2px;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 46, 56, 0.1);
    border-radius: 12px;
    margin-top: 8px;
    padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform-origin: top right;
    animation: slideDown 0.2s ease-out;
}

.lang-dropdown-content.show {
    display: block;
}

.lang-dropdown-content a {
    color: #1d2e38;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    text-align: left;
}

.lang-dropdown-content a:hover {
    background: rgba(29, 46, 56, 0.05);
    color: var(--primary-color);
    padding-left: 24px;
}

.lang-dropdown-content a.active {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    font-weight: 600;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

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

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 2px 4px;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
    color: var(--accent-primary);
}

.lang-btn.active {
    color: var(--accent-secondary);
    font-weight: 700;
}

.lang-switcher-desktop span.sep {
    color: #ccc;
    font-size: 0.8rem;
    margin: 0 4px;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .lang-switcher-desktop {
        margin-left: 10px;
        gap: 5px;
    }

    .lang-btn {
        font-size: 0.85rem;
    }
}

/* Desktop nav: Order link highlighted */
.nav-order-link {
    color: var(--accent-secondary) !important;
    font-weight: 600 !important;
}

.nav-order-link:hover {
    color: var(--accent-primary) !important;
}

/* Mobile Menu Chevron */
.mobile-nav-dropdown-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.mobile-chevron {
    font-size: 1.2rem;
    line-height: 1;
    transform: rotate(90deg);
    /* Pointing right/down depending on font */
    transition: transform 0.3s ease;
    display: inline-block;
    color: var(--primary-color);
}

.mobile-nav-dropdown.open .mobile-chevron {
    transform: rotate(-90deg);
}

/* ============================================
   THANK YOU MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #333;
}

.modal-icon {
    margin-bottom: 20px;
    display: inline-flex;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
}

.modal-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}