/* =============================================
   ELITE GESTORÍA INTEGRAL, S.L.
   Estilos principales - Paleta Azul Marino + Dorado
   ============================================= */

:root {
    --navy:       #0d1b3e;
    --navy-light: #162447;
    --navy-mid:   #1a2d5a;
    --gold:       #c9a84c;
    --gold-light: #e0c068;
    --gold-dark:  #a8872e;
    --white:      #ffffff;
    --off-white:  #f8f6f0;
    --gray-light: #f0eff0;
    --gray:       #888888;
    --text:       #2c2c2c;
    --shadow:     0 4px 20px rgba(13, 27, 62, 0.12);
    --shadow-lg:  0 8px 40px rgba(13, 27, 62, 0.18);
    --radius:     10px;
    --radius-lg:  16px;
    --transition: 0.3s ease;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.gold { color: var(--gold); }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--gold);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-info span { display: flex; align-items: center; gap: 0.4rem; }
.topbar-info a { color: rgba(255,255,255,0.85); }
.topbar-info a:hover { color: var(--gold); }
.topbar-info i { color: var(--gold); font-size: 0.75rem; }
.btn-topbar {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.btn-topbar:hover { background: var(--gold-light); }

/* =============================================
   HEADER / NAV
   ============================================= */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}
#header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; gap: 1rem; }

/* LOGO */
.logo a { display: flex; align-items: center; gap: 0.5rem; }
.logo-elite {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 2px;
    border-right: 2px solid var(--gold);
    padding-right: 0.6rem;
    line-height: 1;
}
.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}
.logo-sub small { color: var(--gold); font-size: 0.75em; }

/* NAV */
#main-nav ul { display: flex; gap: 0.2rem; }
#main-nav ul li a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    letter-spacing: 0.3px;
}
#main-nav ul li a:hover { color: var(--gold); background: var(--off-white); }

.header-btn { display: inline-flex; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: 10px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-outline.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: 10px; }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow); }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1e3a6e 100%);
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay { display: none; }
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.hero-text { flex: 1; min-width: 300px; max-width: 640px; }
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}
.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-contact-quick { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.quick-contact {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.quick-contact i { color: var(--gold); }
.quick-contact:hover { color: var(--gold); }
.separator { color: rgba(255,255,255,0.3); }

.hero-badge-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}
.hero-badge {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,168,76,0.25);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(4px);
    min-width: 230px;
}
.hero-badge i { font-size: 1.5rem; color: var(--gold); }
.hero-badge span { color: var(--white); font-weight: 600; font-size: 0.9rem; }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.section-desc { color: var(--gray); max-width: 520px; margin: 0 auto; font-size: 1rem; }

/* =============================================
   SERVICES
   ============================================= */
.services { padding: 5rem 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-top: 4px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }

.service-featured {
    background: var(--navy);
    border-top-color: var(--gold);
}

.service-badge-top {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.service-featured .service-icon { background: rgba(201,168,76,0.15); }

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.2rem;
}
.service-featured h3 { color: var(--white); }

.service-list { margin-bottom: 1.8rem; }
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.service-list li:last-child { border-bottom: none; }
.service-featured .service-list li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.08); }
.service-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.75rem; }

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.87rem;
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--navy);
    border-radius: 6px;
    transition: var(--transition);
}
.btn-card:hover { background: var(--navy); color: var(--white); }
.btn-card-gold { color: var(--gold); border-color: var(--gold); }
.btn-card-gold:hover { background: var(--gold); color: var(--navy); }

/* =============================================
   STATS
   ============================================= */
.stats-section {
    background: var(--gold);
    padding: 3rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item { color: var(--navy); }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.stat-plus { font-size: 2rem; font-weight: 700; color: var(--navy); vertical-align: top; margin-top: 0.3rem; display: inline-block; }
.stat-item p { font-size: 0.9rem; font-weight: 600; margin-top: 0.5rem; color: rgba(13,27,62,0.8); }

/* =============================================
   ABOUT
   ============================================= */
.about { padding: 5rem 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-img-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-lg);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
}
.about-img-placeholder i { font-size: 4rem; color: var(--gold); }
.about-img-placeholder p { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; text-align: center; letter-spacing: 1px; }

.about-text .section-label { display: block; margin-bottom: 0.5rem; }
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}
.about-text > p { color: var(--gray); margin-bottom: 2rem; line-height: 1.7; }
.about-features { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.about-feature > i { color: var(--gold); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.about-feature div { display: flex; flex-direction: column; }
.about-feature strong { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.about-feature span { font-size: 0.875rem; color: var(--gray); line-height: 1.5; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner { background: var(--navy); padding: 4rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}
.cta-text h2 span { color: var(--gold); }
.cta-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { padding: 5rem 0; background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-question i { flex-shrink: 0; font-size: 0.8rem; transition: var(--transition); }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open {
    max-height: 400px;
    padding: 0 1.5rem 1.2rem;
}
.faq-answer p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }
.faq-answer a { color: var(--gold); font-weight: 600; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { padding: 5rem 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }

.contact-info .section-label { display: block; margin-bottom: 0.5rem; }
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.contact-info > p { color: var(--gray); margin-bottom: 2rem; line-height: 1.7; }

.contact-list { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-list li > i {
    width: 42px;
    height: 42px;
    background: var(--off-white);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}
.contact-list li div { display: flex; flex-direction: column; }
.contact-list li strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 0.15rem; }
.contact-list li a, .contact-list li span { font-size: 0.95rem; color: var(--text); }
.contact-list li a:hover { color: var(--gold); }

/* FORM */
.contact-form-wrap {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-check { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-check input { margin-top: 3px; accent-color: var(--gold); cursor: pointer; }
.form-check label { font-size: 0.82rem; color: var(--gray); cursor: pointer; }
.form-check label a { color: var(--gold); }

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}
.form-success i { color: #28a745; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.hidden { display: none !important; }

/* =============================================
   FOOTER
   ============================================= */
#footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 4rem 1.5rem 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-logo .logo-elite { color: var(--white); border-right-color: var(--gold); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.85); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

.footer-links h4, .footer-contact h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    font-size: 0.875rem;
}
.footer-contact ul li i { color: var(--gold); margin-top: 3px; font-size: 0.85rem; flex-shrink: 0; }
.footer-contact ul li a { color: rgba(255,255,255,0.65); }
.footer-contact ul li a:hover { color: var(--gold); }
.footer-contact ul li span { color: rgba(255,255,255,0.65); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--navy);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar-info { gap: 0.8rem; font-size: 0.78rem; }
    .topbar-cta { display: none; }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem 1.5rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    #main-nav.open { display: block; }
    #main-nav ul { flex-direction: column; gap: 0; }
    #main-nav ul li a { display: block; padding: 0.8rem 0.5rem; border-bottom: 1px solid var(--off-white); font-size: 0.95rem; }

    .hamburger { display: flex; }
    .header-btn { display: none; }

    .hero { min-height: auto; padding: 3.5rem 0; }
    .hero-content { flex-direction: column; }
    .hero-badge-group { flex-direction: row; flex-wrap: wrap; width: 100%; }
    .hero-badge { min-width: 0; flex: 1; }

    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-contact-quick { flex-direction: column; gap: 0.4rem; }
    .hero-contact-quick .separator { display: none; }
    .hero-badge-group { flex-direction: column; }
    .hero-badge { min-width: 100%; }
    .topbar-info { flex-direction: column; gap: 0.3rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .contact-form-wrap { padding: 1.5rem; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions a { justify-content: center; }
    .footer-legal { flex-direction: column; gap: 0.5rem; align-items: center; }
}
