/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --burgundy-dark: #3d0f1a;
    --burgundy: #6b1626;
    --gold: #c99a3b;
    --gold-light: #e0b968;
    --bg-light: #faf6f2;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(61, 15, 26, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.section { padding: 80px 0; }

.section-title { text-align: center; max-width: 650px; margin: 0 auto 50px; }
.section-title span, .section-tag {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.section-title h2 { font-size: 2rem; margin: 12px 0 15px; color: var(--burgundy-dark); font-weight: 700; }
.section-title p { color: var(--text-muted); }

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--burgundy-dark);
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.35);
    transition: border-color 0.2s ease;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ===== TOP BAR ===== */
.topbar { background: var(--burgundy-dark); color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 20px; flex-wrap: wrap; gap: 8px; }
.topbar i { margin-right: 6px; color: var(--gold); }
.top-right { display: flex; gap: 20px; }
.top-right a:hover { color: var(--gold); }

/* ===== HEADER ===== */
header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 45px; height: 45px; }
.logo h2 { font-size: 1.2rem; color: var(--burgundy-dark); }
.logo span { font-size: 0.75rem; color: var(--text-muted); }

#navbar ul { display: flex; gap: 30px; align-items: center; }
#navbar > ul > li > a { font-weight: 500; color: var(--text-dark); padding: 10px 0; }
#navbar > ul > li > a:hover { color: var(--burgundy); }

.dropdown { position: relative; }
.submenu {
    position: absolute; top: 100%; left: 0; display:block!important;
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 2px solid var(--gold);
    min-width: 200px;
    padding: 10px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}
.dropdown:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: 10px 20px; color: var(--text-dark); }
.submenu li a:hover { background: var(--bg-light); color: var(--burgundy); }

.quote-btn { background: var(--burgundy-dark); color: var(--gold); padding: 10px 22px; border-radius: 4px; font-weight: 700; }
.quote-btn:hover { background: #2a0a12; }

#mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--burgundy-dark); cursor: pointer; }

/* ===== MOBILE MENU ===== */
#mobile-menu { display: none; flex-direction: column; background: var(--white); max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
#mobile-menu.open { max-height: 600px; }
#mobile-menu ul { display: flex; flex-direction: column; padding: 0px 20px 0px; }
#mobile-menu li a, .mobile-dropdown-toggle {
    display: block; width: 100%; text-align: left; padding: 12px 0;
    border-bottom: 1px solid #eee; background: none;
    border-left: none; border-right: none; border-top: none;
    font-size: 1rem; font-family: inherit; color: var(--text-dark); cursor: pointer;
}
.mobile-dropdown-toggle { display: flex; justify-content: space-between; align-items: center; }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding-left: 15px; }
.mobile-submenu.open { max-height: 400px; }
.mobile-submenu li a { border-bottom: none; padding: 8px 0; color: var(--text-muted); }
.mobile-quote { color: var(--gold) !important; font-weight: 700; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy)); color: var(--white); padding: 90px 0; }
.hero-content { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.badge { display: inline-block; background: rgba(201,154,59,0.18); color: var(--gold-light); padding: 6px 16px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; margin-bottom: 15px; letter-spacing: 0.5px; }
.hero-text h1 { font-size: 2.5rem; margin-bottom: 15px; line-height: 1.3; font-weight: 700; }
.hero-text p { margin-bottom: 25px; opacity: 0.85; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-card { background: var(--white); color: var(--text-dark); padding: 30px; border-radius: 6px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); }
.hero-card h3 { color: var(--burgundy-dark); margin-bottom: 15px; }
.hero-card li { padding: 8px 0; display: flex; align-items: center; gap: 10px; }
.hero-card i { color: var(--gold); }

/* ===== SERVICES ===== */
.services { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card { background: var(--white); padding: 30px; border-radius: 6px; box-shadow: var(--shadow); transition: transform 0.2s ease, border-color 0.2s ease; border-bottom: 3px solid transparent; }
.service-card:hover { transform: translateY(-5px); border-bottom-color: var(--gold); }
.service-card i { font-size: 1.8rem; color: var(--burgundy); margin-bottom: 15px; }
.service-card h3 { margin-bottom: 10px; color: var(--burgundy-dark); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.check-list li { padding: 8px 0; display: flex; gap: 10px; align-items: center; }
.check-list i { color: var(--gold); }
.stats-box { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat { background: var(--burgundy-dark); padding: 25px; border-radius: 6px; text-align: center; }
.stat h2 { color: var(--gold); font-size: 2rem; }
.stat p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { text-align: center; }
.step span { display: inline-block; background: var(--gold); color: var(--burgundy-dark); width: 45px; height: 45px; line-height: 45px; border-radius: 50%; font-weight: 700; margin-bottom: 15px; }
.step h3 { color: var(--burgundy-dark); margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== CTA ===== */
.cta { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); color: var(--white); text-align: center; padding: 60px 0; }
.cta h2 { font-size: 1.8rem; margin-bottom: 10px; }
.cta p { opacity: 0.85; margin-bottom: 25px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
.info-box { display: flex; gap: 15px; margin-bottom: 25px; }
.info-box i { color: var(--burgundy); font-size: 1.3rem; margin-top: 3px; }
.info-box h3 { font-size: 1rem; margin-bottom: 4px; color: var(--burgundy-dark); }
.info-box a, .info-box p { color: var(--text-muted); font-size: 0.95rem; }

.contact-form form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea {
    padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 0.95rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); }

/* ===== FOOTER ===== */
footer { background: var(--burgundy-dark); color: rgba(255,255,255,0.75); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 30px; }
.footer-logo { width: 50px; margin-bottom: 15px; }
footer h3 { color: var(--white); margin-bottom: 15px; font-size: 1rem; }
footer ul li { padding: 6px 0; }
footer ul li a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); border-radius: 50%; transition: background 0.2s ease; }
.social-icons a:hover { background: var(--gold); color: var(--burgundy-dark); }
.copyright { text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }

/* ===== FLOATING BUTTONS ===== */
.whatsapp { position: fixed; bottom: 25px; left: 25px; background: #25D366; color: var(--white); width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow); z-index: 90; }
#topBtn { position: fixed; bottom: 25px; right: 25px; background: var(--gold); color: var(--burgundy-dark); width: 45px; height: 45px; border-radius: 50%; border: none; display: none; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow); z-index: 90; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-content, .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    #navbar, .quote-btn { display: none; }
    #mobile-toggle { display: block; }
    #mobile-menu { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .services-grid, .process-grid, .stats-box { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 1.8rem; }
    .topbar-inner { flex-direction: column; align-items: flex-start; }
}
