:root {
    --primary: #0A1428; /* Unified Deep Navy Blue */
    --primary-light: #1A2B4C;
    --secondary: #E6B022; /* Yellow from buttons */
    --secondary-hover: #F5C64D;
    --text-main: #EAEAEA;
    --text-muted: #A0AABF;
    --bg-dark: #0A1428; /* Unified Deep Navy Blue */
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(10, 20, 40, 0.85);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Header & Navigation */
header {
    position: fixed;
    top: 36px;
    width: 100%;
    z-index: 1000;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.logo { display: flex; align-items: center; }
.logo img { height: 50px; object-fit: contain; display: block; }

nav ul { list-style: none; display: flex; gap: 40px; }
nav a {
    color: rgba(255, 255, 255, 0.85); text-decoration: none; font-weight: 500;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px;
    position: relative; transition: color 0.3s;
}
nav a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--secondary); transition: width 0.3s ease;
}
nav a:hover { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.3); }
nav a:hover::after { width: 100%; }

.btn-gold {
    background: linear-gradient(135deg, var(--secondary) 0%, #B8860B 100%);
    color: var(--bg-dark); padding: 12px 32px; border: none; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem;
    cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; box-shadow: 0 5px 20px rgba(230, 176, 34, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(230, 176, 34, 0.5); }
.btn-outline {
    background: transparent; border: 2px solid var(--secondary);
    color: var(--secondary); padding: 10px 26px; border-radius: 30px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; text-decoration: none; transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--secondary); color: var(--bg-dark); }

/* Hero */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 0 5%; background: url('../images/hero-bg.webp') center/cover no-repeat fixed;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(10, 15, 26, 0.5) 0%, var(--bg-dark) 100%);
}
.hero-content {
    position: relative; z-index: 1; text-align: center; max-width: 900px; margin-top: 80px;
}
.hero-badge-top {
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--secondary); color: var(--secondary);
    padding: 8px 20px; border-radius: 30px; font-size: 0.9rem; font-weight: 600;
    margin-bottom: 25px; background: rgba(0,0,0,0.3); backdrop-filter: blur(5px);
}
.hero h1 {
    font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px;
    color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero h1 span.text-yellow {
    color: var(--secondary);
}
.hero p { 
    font-size: 1.15rem; color: var(--text-main); margin-bottom: 40px; font-weight: 300; 
    max-width: 700px; margin-left: auto; margin-right: auto; text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.hero-buttons {
    display: flex; gap: 20px; justify-content: center; margin-bottom: 50px;
}
.btn-glow {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}
.hero-badges-bottom {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 15px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(255,255,255,0.3); color: #fff;
    padding: 10px 20px; border-radius: 30px; font-size: 0.9rem;
    background: rgba(0,0,0,0.2); backdrop-filter: blur(5px);
}
.hero-badge i { font-size: 1.1rem; }

/* Sections */
section { padding: 100px 5%; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; color: var(--secondary); }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Grid / Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 40px 30px; text-align: center;
    backdrop-filter: blur(10px); transition: all 0.4s ease; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.05); }
.card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #fff; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* Why Choose Us & How it works */
.icon-box {
    width: 60px; height: 60px; margin: 0 auto 20px; background: rgba(212, 175, 55, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 24px; border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,27,74,0.9), transparent);
    display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Reviews */
.reviews-container { display: flex; gap: 30px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.review-card { min-width: 350px; background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2)); border: 1px solid var(--glass-border); border-radius: 16px; padding: 30px; scroll-snap-align: start; }
.stars { color: var(--secondary); margin-bottom: 15px; font-size: 1.2rem; }

/* ---------------------------------------------------
   ADVANCED MULTI-STEP QUOTE SYSTEM 
   --------------------------------------------------- */
.quote-section {
    background: var(--bg-dark);
    position: relative;
}
.wizard-progress {
    display: flex; justify-content: space-between; position: relative; margin-bottom: 50px;
}
.wizard-progress::before {
    content: ''; position: absolute; top: 15px; left: 0; width: 100%; height: 2px;
    background: rgba(255,255,255,0.1); z-index: 1;
}
.progress-bar {
    position: absolute; top: 15px; left: 0; height: 2px;
    background: var(--secondary); z-index: 2; transition: width 0.4s ease;
}
.step-indicator {
    position: relative; z-index: 3; width: 32px; height: 32px;
    background: var(--bg-dark); border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-weight: bold; transition: all 0.4s;
}
.step-indicator.active { border-color: var(--secondary); color: var(--secondary); box-shadow: 0 0 15px rgba(212,175,55,0.4); }
.step-indicator.completed { background: var(--secondary); color: var(--bg-dark); border-color: var(--secondary); }

.wizard-step { display: none; animation: fadeInRight 0.5s ease; }
.wizard-step.active { display: block; }

/* Service Selection Cards */
.service-options {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-option-card {
    background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.05); color: #fff;
    border-radius: 12px; padding: 30px 20px; text-align: center;
    cursor: pointer; transition: all 0.3s;
}
.service-option-card:hover { border-color: rgba(212,175,55,0.5); background: rgba(212,175,55,0.05); }
.service-option-card.selected { border-color: var(--secondary); background: rgba(212,175,55,0.15); box-shadow: 0 10px 20px rgba(0,0,0,0.3); transform: scale(1.02); }
.service-option-card .icon { font-size: 40px; margin-bottom: 15px; color: var(--secondary); }
.service-option-card h4 { font-size: 1rem; font-weight: 600; margin: 0; color: #fff; }

/* Floating Labels Inputs */
.input-group { position: relative; margin-bottom: 30px; text-align: left; }
.input-group input, .input-group textarea {
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 18px 20px; border-radius: 8px; font-size: 1.1rem;
    outline: none; transition: all 0.3s;
}
.input-group textarea { resize: vertical; min-height: 150px; }
.input-group input:focus, .input-group textarea:focus { border-color: var(--secondary); background: rgba(0,0,0,0.2); box-shadow: 0 0 0 4px rgba(212,175,55,0.1); }
.input-group label {
    position: absolute; top: 18px; left: 20px; color: var(--text-muted);
    font-size: 1.1rem; transition: all 0.3s; pointer-events: none;
}
.input-group input:focus ~ label, .input-group input:valid ~ label,
.input-group textarea:focus ~ label, .input-group textarea:valid ~ label {
    top: -12px; left: 15px; font-size: 0.85rem; color: var(--secondary);
    background: var(--bg-dark); padding: 0 8px; border-radius: 4px; font-weight: 600;
}

.wizard-footer { display: flex; justify-content: space-between; margin-top: 40px; }

/* Footer */
footer { background: var(--primary); padding: 60px 5% 30px; text-align: center; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; text-align: left; max-width: 1200px; margin: 0 auto; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h4 { color: #fff; margin-bottom: 25px; font-size: 1.2rem; font-weight: 600; letter-spacing: 0.5px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 40px; height: 3px; background: var(--secondary); border-radius: 2px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: all 0.3s; display: inline-block; }
.footer-col ul li a:hover { color: var(--secondary); transform: translateX(5px); }
.footer-bottom { padding-top: 25px; color: var(--text-muted); font-size: 0.95rem; display: flex; justify-content: space-between; align-items: center; }

.city-link:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    transform: translateX(5px);
}
.city-link:hover .city-icon {
    opacity: 1 !important;
    transform: scale(1.1);
}

.mobile-toggle { display: none; }

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

/* MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }

    /* Top bar */
    #top-bar { display: none !important; }
    
    /* Header & Nav */
    header { position: fixed !important; top: 0 !important; }
    header > div { flex-direction: row !important; justify-content: space-between !important; padding: 15px !important; }
    header .logo { width: auto !important; margin-bottom: 0; }
    header .logo img { max-height: 40px !important; }
    header > div > div:last-child .btn-gold { display: none !important; /* Hide only Get Quote button on mobile header */ }
    
    /* Mobile Toggle Button */
    .mobile-toggle { display: block !important; background: transparent; border: none; color: #fff; cursor: pointer; padding: 5px; z-index: 1000; }
    
    /* Premium Fullscreen Menu */
    header nav { 
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh; 
        background: rgba(18, 21, 28, 0.98); backdrop-filter: blur(15px);
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        opacity: 0; pointer-events: none; transition: opacity 0.4s ease; z-index: 999;
    }
    header nav.open { opacity: 1; pointer-events: auto; }
    header nav ul { 
        flex-direction: column; gap: 30px; text-align: center; border: none; padding: 0;
        transform: translateY(30px); transition: transform 0.4s ease;
    }
    header nav.open ul { transform: translateY(0); }
    header nav ul li a { font-size: 2rem; font-weight: 600; }
    
    /* Hero */
    .hero h1 { font-size: 2.5rem !important; line-height: 1.2 !important; }
    .hero-content { padding: 0 15px; margin-top: 40px !important; }
    .hero-badge-top { font-size: 0.8rem; padding: 6px 12px; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .hero-buttons .btn-gold, .hero-buttons .btn-outline { width: 100%; text-align: center; border-radius: 12px; padding: 16px; font-size: 0.95rem; }
    .hero-badges-bottom { flex-direction: column; gap: 10px; }
    .hero-badge { width: 100%; justify-content: center; border-radius: 12px; }
    
    /* Layout */
    .grid-3 { grid-template-columns: 1fr !important; }
    .quote-wizard { padding: 30px 20px !important; margin: 0 15px; }
    .service-options { grid-template-columns: 1fr !important; gap: 15px; }
    .form-row { flex-direction: column; gap: 15px !important; }
    
    /* Fonts & spacing */
    h2[style*="font-size: 3.5rem"] { font-size: 2.2rem !important; }
    h2[style*="font-size: 2.5rem"] { font-size: 1.8rem !important; }
    .wizard-footer { flex-direction: column; gap: 15px; }
    .wizard-footer button { width: 100%; justify-content: center; }
    
    /* Contact Page */
    .contact-container { margin-top: 20px !important; margin-bottom: 40px !important; padding: 0 15px; }
    .contact-info-card, .contact-form-card { padding: 30px 20px !important; }
    
    /* Review Cards */
    .review-card { min-width: 300px; padding: 20px; }
}
