/* =====================================================
   MyMo Chennai Portal - Main Stylesheet
   Theme: Navy (#0b1c3d) & Gold (#c9a227)
   Fonts: Sora (headings) / Inter (body)
   ===================================================== */

:root {
    --navy: #0b1c3d;
    --navy-light: #142c5c;
    --navy-lighter: #1e3a6e;
    --gold: #c9a227;
    --gold-light: #e0bc4d;
    --off-white: #f7f8fb;
    --gray-text: #5a6472;
    --border-color: #e6e9ef;
    --success: #1e8e5a;
    --danger: #d0342c;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2b2f38;
    background: #ffffff;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Sora', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--navy);
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-off-white { background-color: var(--off-white) !important; }

/* ---------- Buttons ---------- */
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    border-radius: 6px;
    transition: all .2s ease;
}
.btn-gold:hover { background-color: var(--gold-light); border-color: var(--gold-light); color: #fff; }

.btn-navy {
    background-color: var(--navy);
    border-color: var(--navy);
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    border-radius: 6px;
    transition: all .2s ease;
}
.btn-navy:hover { background-color: var(--navy-light); border-color: var(--navy-light); color: #fff; }

.btn-outline-navy {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    border-radius: 6px;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ---------- Header ---------- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(11,28,61,0.06);
    position: sticky;
    top: 0;
    z-index: 1030;
}
.site-header .navbar-brand { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--navy); }
.site-header .navbar-brand span { color: var(--gold); }
.site-header .nav-link {
    font-weight: 600;
    color: #2b2f38;
    padding: 0.5rem 1rem !important;
}
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--gold); }
.topbar {
    background: var(--navy);
    color: #cdd6e6;
    font-size: 0.85rem;
    padding: 6px 0;
}
.topbar a { color: #cdd6e6; }
.topbar a:hover { color: var(--gold-light); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy-lighter) 100%);
    color: #fff;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    right: -80px; top: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: rgba(201,162,39,0.12);
}
.hero h1 { color: #fff; font-size: 2.6rem; }
.hero p.lead { color: #cdd6e6; font-size: 1.15rem; }
.hero .badge-soft {
    background: rgba(201,162,39,0.15);
    color: var(--gold-light);
    border: 1px solid rgba(201,162,39,0.4);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

/* ---------- Section Titles ---------- */
.section-pad { padding: 70px 0; }
.section-label {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.section-title { font-size: 2rem; margin-top: 6px; margin-bottom: 1rem; }
.section-sub { color: var(--gray-text); max-width: 640px; }

/* ---------- Cards ---------- */
.card-elevated {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all .25s ease;
    background: #fff;
    height: 100%;
}
.card-elevated:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(11,28,61,0.1);
    border-color: transparent;
}
.icon-box {
    width: 56px; height: 56px;
    background: rgba(201,162,39,0.12);
    color: var(--gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

.service-card .icon-box { margin-bottom: 1rem; }

.product-card img, .service-card img { border-radius: 10px 10px 0 0; object-fit: cover; height: 200px; width: 100%; }
.badge-featured {
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
}
.price-strike { text-decoration: line-through; color: #9aa2af; font-size: 0.9rem; }
.price-current { color: var(--navy); font-weight: 700; font-size: 1.15rem; }

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}
.testimonial-card .stars { color: var(--gold); }

/* ---------- FAQ ---------- */
.accordion-button:not(.collapsed) {
    background-color: rgba(201,162,39,0.08);
    color: var(--navy);
}
.accordion-button:focus { box-shadow: none; border-color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy);
    color: #b9c3d6;
    padding-top: 60px;
}
.site-footer h5 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; }
.site-footer a { color: #b9c3d6; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 18px 0;
    font-size: 0.85rem;
    color: #8695ae;
}
.social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-right: 8px;
    color: #fff !important;
}
.social-icon:hover { background: var(--gold); }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    background: #25D366;
    color: #fff;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 1040;
    transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Breadcrumb / Page Header ---------- */
.page-header {
    background: var(--navy);
    color: #fff;
    padding: 50px 0;
}
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: #cdd6e6; font-size: 0.9rem; }
.page-header .breadcrumb-item.active { color: var(--gold-light); }

/* ---------- Forms ---------- */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.65rem 0.9rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201,162,39,0.15);
}
.enquiry-box {
    background: var(--off-white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

/* ---------- Blog ---------- */
.blog-card img { border-radius: 10px 10px 0 0; height: 210px; object-fit: cover; width: 100%; }
.blog-meta { font-size: 0.82rem; color: var(--gray-text); }

/* ---------- Utility ---------- */
.rounded-xl { border-radius: 14px; }
.shadow-soft { box-shadow: 0 10px 30px rgba(11,28,61,0.08); }

@media (max-width: 768px) {
    .hero { padding: 60px 0 70px; text-align: center; }
    .hero h1 { font-size: 2rem; }
    .section-pad { padding: 45px 0; }
}
