:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-glow: rgba(0, 255, 136, 0.15);
    --secondary: #0a0f1a;
    --surface: #111827;
    --surface-light: #1e293b;
    --accent: #38bdf8;
    --accent-warm: #f59e0b;
    --text-main: #f8fafc;
    --text-muted: #b8c5d3;
    --text-dim: #a3b1c0;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(0, 255, 136, 0.3);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
    --shadow-glow: 0 0 40px rgba(0, 255, 136, 0.08);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.5), 0 0 80px rgba(0, 255, 136, 0.15); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes count-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: var(--transition-slow);
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: var(--transition-slow);
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--secondary);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

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

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* Decorative elements */
.section-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.6rem 0;
    background: rgba(10, 15, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.logo span {
    transition: var(--transition);
}

.logo:hover span {
    filter: brightness(1.3);
}

.nav-phone {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-phone:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, #0d1321 50%, #0a1628 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.06), transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-hours {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 50px;
    padding: 0.45rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    animation: fadeInUp 0.7s ease-out;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
    mask-image: linear-gradient(to left, black 60%, transparent);
    border-radius: 30px;
    opacity: 0.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    animation: fadeInUp 1.4s ease-out;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.25);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.1);
}

.btn-ghost {
    background: var(--glass-bg);
    color: var(--primary);
    border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--glass-border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.glass-card:hover .card-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.glass-card:hover .card-icon span {
    filter: brightness(0);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Counter / Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--surface) 0%, var(--secondary) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.4;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-glow), var(--glass-bg));
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

/* Reviews / Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.review-card:hover::before {
    opacity: 0.3;
}

.review-stars {
    color: var(--accent-warm);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-glow), var(--glass-bg));
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.review-card:hover .review-avatar {
    background: var(--primary);
    color: #000;
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* City Cards (enhanced) */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.city-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.city-card::after {
    content: '→';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.city-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 255, 136, 0.04);
}

.city-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.city-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.city-distance {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.city-tag {
    display: inline-block;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    width: fit-content;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* Banner / CTA Strip */
.cta-banner {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(56, 189, 248, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.03) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shimmer 8s infinite linear;
}

/* Feature Row (alternating layout) */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-media {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 300px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.feature-media:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.feature-media .media-label {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.3;
    text-align: center;
    padding: 2rem;
}

/* ✅ ❌ Info Boxes */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.info-box:hover {
    transform: translateX(5px);
}

.info-box.positive {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.info-box.negative {
    background: rgba(255, 77, 77, 0.05);
    border: 1px solid rgba(255, 77, 77, 0.15);
}

.info-box .icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Lightbox / Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
    animation: fadeInUp 0.3s ease-out;
}

.modal-content {
    background: var(--surface-light);
    width: 100%;
    max-width: 580px;
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    border: 1px solid var(--glass-border);
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dim);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
    padding: 0;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
    background: var(--primary-glow);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    color: #fff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

input::placeholder, textarea::placeholder {
    color: var(--text-dim);
}

select {
    appearance: none;
    cursor: pointer;
}

.error-msg {
    color: #ff4d4d;
    font-size: 0.82rem;
    margin-top: 0.25rem;
    display: none;
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 1.5rem;
    left: 2rem;
    right: 2rem;
    background: rgba(17, 24, 39, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 1500;
    transform: translateY(200%);
    transition: transform 0.5s ease-out;
}

.cookie-bar.active {
    transform: translateY(0);
}

.cookie-bar p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer Section */
footer {
    background: #050810;
    padding: 5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

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

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.footer-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.1;
    pointer-events: none;
}

/* CTA Inline Form */
.cta-inline-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.quick-form {
    width: 100%;
    max-width: 750px;
}

.quick-form-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.quick-form-field {
    flex: 1;
    min-width: 180px;
    position: relative;
}

.quick-form-row input,
.quick-form-row select {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.9rem 1.25rem;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    appearance: none;
}

.quick-form-row select {
    cursor: pointer;
    color: var(--text-dim);
}

.quick-form-row select:has(option:checked:not([value=""])) {
    color: #fff;
}

.quick-form-row input:focus,
.quick-form-row select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.quick-form-row input::placeholder {
    color: var(--text-dim);
}

.quick-form-row .btn {
    white-space: nowrap;
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

.quick-error {
    display: none;
    color: #ff4d4d;
    font-size: 0.78rem;
    margin-top: 0.3rem;
    padding-left: 1.25rem;
}

.quick-form-row input.invalid {
    border-color: #ff4d4d;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1);
}

.cta-or {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Trust Infographic */
.footer-trust {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.trust-infographic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    min-width: 150px;
}

.trust-icon {
    font-size: 2rem;
    background: var(--primary-glow);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-value {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-item.verify {
    cursor: pointer;
    transition: var(--transition);
}

.trust-item.verify:hover {
    transform: translateY(-5px);
}

.trust-item.verify a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.trust-item.verify a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .trust-infographic { gap: 1.5rem; }
    .trust-item { min-width: 120px; }
}

/* Divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 0 auto 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-row, .feature-row.reverse { flex-direction: column; gap: 2rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step::after { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-image { display: none; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; gap: 2rem; }
    .hero-stat { text-align: center; }
    .modal-content { padding: 2rem; border-radius: 20px; }
    .info-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .city-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 2.5rem 1.5rem; }
    .nav-links { display: none; }
    .quick-form-row { flex-direction: column; }
    .quick-form-field { min-width: 100%; }
    .quick-form-row .btn { width: 100%; justify-content: center; }
    section { padding: 4rem 0; }
    .cookie-bar { flex-direction: column; text-align: center; padding-bottom: 5rem; }
}

/* ===== A11y: visually-hidden for screen readers ===== */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ===== A11y: skip link ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: #0a0f1a;
    padding: 12px 20px;
    z-index: 10000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 0;
}

/* ===== A11y: focus-visible outlines ===== */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
}
a:focus-visible, .btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
}

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
    display: none;
}
@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1400;
        gap: 0;
        background: rgba(10, 15, 26, 0.97);
        backdrop-filter: blur(16px);
        border-top: 1px solid var(--glass-border);
        padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    }
    .sticky-cta a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.85rem 0.5rem;
        margin: 0 0.25rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: var(--transition);
    }
    .sticky-cta .sticky-call {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #000;
        box-shadow: 0 4px 14px rgba(0, 255, 136, 0.3);
    }
    .sticky-cta .sticky-form {
        background: var(--glass-bg);
        color: var(--primary);
        border: 1px solid var(--primary);
    }
    body { padding-bottom: 4.5rem; }
}

/* ===== Polished hover micro-interaction ===== */
.city-card:hover .city-name {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.review-card:hover .review-stars {
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
