/* VVREDDY & ASSOCIATES - Professional Accounting & Auditing Website */
:root {
    --primary-color: #0047ab;
    --primary-dark: #003a8f;
    --primary-light: #0056cc;
    --accent-color: #01c853;
    --accent-dark: #00a847;
    --accent-light: #00e55a;
    --accent-red: #dc3545;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-bg: #f8fafc;
    --dark-bg: #1e293b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --header-banner-height: 44px;
    --nav-height: 60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    padding-top: calc(var(--header-banner-height) + var(--nav-height));
}
html { overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

/* ========== TOP BANNER (fixed above nav) ========== */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-banner-height);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #fff;
    z-index: 1031;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}
.top-banner .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; }
.top-banner a { color: #fff; text-decoration: none; opacity: 0.95; transition: opacity 0.2s; }
.top-banner a:hover { opacity: 1; color: var(--accent-light); }
.top-banner .banner-cta {
    background: var(--accent-color);
    color: #fff !important;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 0.4rem;
    white-space: nowrap;
}
.top-banner .banner-cta:hover { background: var(--accent-light); color: #fff !important; }

/* ========== NAVIGATION (below banner) ========== */
.vv-navbar {
    position: fixed;
    top: var(--header-banner-height);
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: #fff;
    box-shadow: var(--shadow-sm);
    z-index: 1030;
    transition: box-shadow 0.3s ease;
}
.vv-navbar.scrolled { box-shadow: var(--shadow-lg); }
.vv-navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.vv-navbar .brand { font-size: 1.35rem; font-weight: 700; color: var(--primary-color); text-decoration: none; }
.vv-navbar .brand span { color: var(--accent-color); }
.vv-navbar .nav-links { display: flex; align-items: center; gap: 0.5rem; list-style: none; margin: 0; }
.vv-navbar .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 0.4rem;
    transition: color 0.2s, background 0.2s;
}
.vv-navbar .nav-links a:hover, .vv-navbar .nav-links a.active { color: var(--primary-color); background: var(--light-bg); }
.vv-navbar .btn-appointment {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff !important;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    margin-left: 0.5rem;
}
.vv-navbar .btn-appointment:hover { background: linear-gradient(135deg, var(--primary-light), var(--primary-color)); color: #fff !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-color); }

@media (max-width: 991px) {
    /* Hide entire top bar on mobile: more space, no cramping; Call + WhatsApp are in bottom bar */
    .top-banner { display: none !important; }
    .vv-navbar { top: 0; }
    body { padding-top: var(--nav-height); }
    .vv-navbar .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        display: none;
        z-index: 1050;
        box-sizing: border-box;
        border-radius: 0 0 0.5rem 0.5rem;
    }
    .vv-navbar .nav-links.show { display: flex; }
    .vv-navbar .nav-links li { list-style: none; margin: 0; border-bottom: 1px solid var(--border-color); }
    .vv-navbar .nav-links li:last-child { border-bottom: none; }
    .vv-navbar .nav-links a {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-break: break-word;
        color: var(--text-primary) !important;
        padding: 0.85rem 1rem;
        display: block;
    }
    .vv-navbar .nav-links a:hover { background: var(--light-bg); color: var(--primary-color) !important; }
    .vv-navbar .nav-links .btn-appointment { margin-left: 0; margin-top: 0.5rem; }
    .nav-toggle { display: block; flex-shrink: 0; }
    /* Center brand on mobile */
    .vv-navbar .container { display: flex; align-items: center; }
    .vv-navbar .brand {
        flex: 1;
        text-align: center;
        font-size: clamp(1rem, 4.5vw, 1.35rem);
        min-width: 0;
    }
    .vv-navbar .nav-links { order: 3; }
}

/* Keep page content below nav stacking so mobile menu always appears on top (fixes home page) */
@media (max-width: 991px) {
    body > *:not(.top-banner):not(.vv-navbar):not(.mobile-contact-bar) { position: relative; z-index: 0; }
}

/* ========== BUTTONS ========== */
.btn-vv {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}
.btn-vv-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    box-shadow: var(--shadow-md);
}
.btn-vv-primary:hover { background: linear-gradient(135deg, var(--primary-light), var(--primary-color)); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #fff; }
.btn-vv-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: #fff;
}
.btn-vv-accent:hover { background: linear-gradient(135deg, var(--accent-light), var(--accent-color)); transform: translateY(-2px); color: #fff; }
.btn-vv-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}
.btn-vv-outline:hover { background: var(--primary-color); color: #fff; transform: translateY(-2px); }

/* ========== HERO / BANNER SECTIONS ========== */
.hero-banner {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}
.hero-banner.dark {
    background: linear-gradient(135deg, #0f3460 0%, #1e40af 45%, #1e3a8a 100%);
    color: #fff;
}
.hero-banner.dark p { color: rgba(255,255,255,0.9); }
.hero-banner.light { background: linear-gradient(135deg, var(--light-bg) 0%, #e2e8f0 100%); }
.hero-banner .hero-content { position: relative; z-index: 2; }
.hero-banner .hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hero-banner .hero-title .gradient { background: linear-gradient(135deg, var(--accent-color), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-banner .hero-title .red-script,
.hero-banner .red-script { font-style: italic; color: #e63946; font-weight: 700; }
.hero-banner .hero-subtitle { font-size: 1.15rem; margin-bottom: 1.5rem; opacity: 0.95; }

/* Hero 1: Premium Accounting - rich blue (not heavy dark), impressive */
.hero-first.hero-banner {
    min-height: 75vh;
    background: linear-gradient(135deg, #0c4a6e 0%, #1e40af 40%, #1e3a8a 100%) !important;
}
.hero-first .hero-content-card {
    padding: 2rem 2rem 2rem 2.5rem;
    border-left: 4px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0 1rem 1rem 0;
}
.hero-first .hero-title-lg { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: #fff; }
.hero-first .hero-title-lg .hero-accent {
    color: var(--accent-light);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-first .hero-tagline { font-size: 1.25rem; font-style: italic; color: #fca5a5; font-weight: 600; margin-bottom: 1.5rem; }

/* Hero 2: Virtual CFO - tighter section, content proportional, CTA button inside */
.vcfo-block .vcfo-heading { font-size: clamp(1.9rem, 3.5vw, 2.5rem); color: #fff; font-weight: 800; margin-bottom: 0.75rem; }
.vcfo-block .vcfo-content { max-width: 520px; }
.vcfo-block .vcfo-lead { font-size: 1.2rem; color: rgba(255,255,255,0.95); margin-bottom: 1rem; line-height: 1.5; }
.vcfo-block .vcfo-cta-text { font-size: 1rem; color: rgba(255,255,255,0.9); margin-bottom: 1rem; font-style: italic; }
.vcfo-block .vcfo-img-wrap {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 8px 24px rgba(0,0,0,0.3);
}
.vcfo-block .vcfo-img-wrap img {
    max-height: 320px;
    object-fit: cover;
    width: 100%;
    border-radius: 0.65rem;
    animation: float 6s ease-in-out infinite;
}

/* Hero 3: Kingdom Grow (light) */
.hero-kingdom .hero-eyebrow { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--primary-color); margin-bottom: 0.75rem; }
.hero-kingdom .hero-title-kingdom { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Hero 4: Next Level (dark) */
.hero-next-level .hero-title-next { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: #fff; }
.hero-next-level .next-level-tag { font-size: 1.35rem; font-weight: 700; color: #fcd34d; }
.hero-next-level .next-level-quote { font-size: 1.1rem; color: var(--accent-light); font-style: italic; }
.hero-next-level .hero-next-img {
    max-height: 320px;
    object-fit: cover;
    animation: float 7s ease-in-out infinite;
}
.hero-banner .banner-image { position: relative; z-index: 1; }
.hero-banner .banner-image img { border-radius: 1rem; box-shadow: var(--shadow-xl); max-height: 400px; object-fit: cover; }
.hero-banner .overlay-pattern {
    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='%23ffffff' fill-opacity='0.03'%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");
    pointer-events: none;
}

/* Hero decorative orbs and shapes */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    opacity: 0.4;
}
.hero-first .hero-deco-1 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(1,200,83,0.25) 0%, transparent 70%); top: -80px; right: 10%; }
.hero-first .hero-deco-2 { width: 240px; height: 240px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); bottom: 10%; left: -60px; }
.vcfo-block .vcfo-deco-1 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(220,53,69,0.2) 0%, transparent 70%); top: 20%; right: -40px; }
.vcfo-block .vcfo-deco-2 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(1,200,83,0.2) 0%, transparent 70%); bottom: 20%; left: 5%; }
.hero-kingdom .kingdom-deco-1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,71,171,0.12) 0%, transparent 70%); top: -60px; left: -80px; }
.hero-kingdom .kingdom-deco-2 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(1,200,83,0.1) 0%, transparent 70%); bottom: -40px; right: 15%; }
.hero-next-level .next-deco-1 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(252,211,77,0.2) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-next-level .next-deco-2 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(1,200,83,0.15) 0%, transparent 70%); bottom: 15%; right: 20%; }

/* Motion for banner content */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.8s ease forwards; }
.animate-in.delay-1 { animation-delay: 0.15s; }
.animate-in.delay-2 { animation-delay: 0.3s; }
.animate-in.delay-3 { animation-delay: 0.45s; }
.animate-in.delay-4 { animation-delay: 0.6s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-banner .banner-image img { animation: float 5s ease-in-out infinite; }

/* ========== SECTIONS ========== */
.section-vv { padding: 4rem 0; }
.section-vv.alt { background: var(--light-bg); }
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); text-align: center; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.services-highlight {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

/* What We Can Offer You - two columns, justified, balanced */
.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
    align-items: stretch;
}
.services-intro-col {
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.services-intro-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
.services-intro-col p:last-child { margin-bottom: 0; }
@media (max-width: 767px) {
    .services-intro { grid-template-columns: 1fr; gap: 1rem; }
}

.section-vv.section-tight-top { padding-top: 2.5rem; }
.section-vv.section-compact { padding: 2rem 0; }

/* Firm name emphasis everywhere */
.firm-name {
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}
.footer-vv .firm-name { color: var(--accent-light); }
.vv-navbar .brand { font-weight: 800; }
.vv-navbar .brand span { font-weight: 800; color: var(--accent-color); }

/* ========== VIRTUAL CFO BLOCK ========== */
.vcfo-block {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 35%, #1d4ed8 100%);
    color: #fff;
    position: relative;
    padding: 2.5rem 0;
    min-height: 0;
}
.vcfo-block .vcfo-row { min-height: 0; }
.vcfo-block h2 .red { color: #ff4444; }

/* ========== WHY CHOOSE US ========== */
.why-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.why-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(1, 200, 83, 0.12);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; color: var(--text-primary); }
.why-card p { font-size: 0.95rem; margin-bottom: 0; color: var(--text-secondary); }

/* Stats strip - one row, bold numbers */
.stats-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.stats-strip .stat-item {
    text-align: center;
}
.stats-strip .stat-num {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.stats-strip .stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Industries hero - compact tag strip */
.industries-hero {
    text-align: center;
    padding: 1.75rem 1rem;
    margin-bottom: 2rem;
    background: var(--light-bg);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}
.industries-hero .industries-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.industries-hero .industries-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.industries-hero .industries-tags span {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

/* Testimonial card: icon + heading one row, quote below */
.testimonial-card {
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: box-shadow 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-card .testimonial-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.testimonial-card .testimonial-head .icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(0, 71, 171, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.testimonial-card .testimonial-head h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}
.testimonial-card .testimonial-quote {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-left: 0;
}
@media (min-width: 768px) {
    .testimonial-card .testimonial-quote { padding-left: calc(48px + 0.75rem); }
}

/* ========== CTA STRIP ========== */
.cta-strip {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.cta-strip h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.5rem; }
.cta-strip p { color: rgba(255,255,255,0.95); margin-bottom: 1.5rem; }
.cta-strip .btn-vv-accent { background: var(--accent-color); color: #fff; }

/* ========== SERVICES GRID ========== */
.service-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 1px solid var(--border-color);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card .service-img {
    height: 180px;
    overflow: hidden;
    background: var(--light-bg);
}
.service-card .service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card .service-img-fallback { display: none; align-items: center; justify-content: center; width: 100%; height: 100%; color: rgba(255,255,255,0.9); font-size: 3rem; }
.service-card .service-img-fallback.show { display: flex; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-card .service-body { padding: 1.5rem; }
.service-card .service-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--primary-color); }
.service-card .service-body p { font-size: 0.9rem; margin-bottom: 0; color: var(--text-secondary); }
/* Service card theme accents (when no image) */
.service-card .service-img { position: relative; }
.service-card.theme-bookkeeping .service-img { background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%); }
.service-card.theme-tds .service-img { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }
.service-card.theme-filings .service-img { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); }
.service-card.theme-ma .service-img { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.service-card.theme-audit .service-img { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); }
.service-card.theme-strategy .service-img { background: linear-gradient(135deg, #059669 0%, #047857 100%); }
.service-card.theme-registrations .service-img { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); }
.service-card.theme-arbitration .service-img { background: linear-gradient(135deg, #64748b 0%, #475569 100%); }
.service-card.theme-gst .service-img { background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); }
.service-card.theme-secretarial .service-img { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); }
.service-card.theme-india .service-img { background: linear-gradient(135deg, #0f766e 0%, #115e59 100%); }
.service-card.theme-valuations .service-img { background: linear-gradient(135deg, #0047ab 0%, #003a8f 100%); }

/* ========== FAQ ========== */
.faq-item {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item .faq-q {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-item .faq-q:hover { background: var(--light-bg); }
.faq-item .faq-q i { transition: transform 0.3s; color: var(--primary-color); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item .faq-a { padding: 0 1.25rem 1rem; color: var(--text-secondary); font-size: 0.95rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* ========== CONTACT ========== */
.contact-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid var(--border-color);
}
.contact-card .icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(0, 71, 171, 0.1); color: var(--primary-color); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.contact-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-card p { margin-bottom: 0; font-size: 0.95rem; }
.branch-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}
.branch-card:hover { box-shadow: var(--shadow-lg); }
.branch-card h4 { color: var(--primary-color); font-size: 1.15rem; margin-bottom: 0.75rem; }
.branch-card .branch-address, .branch-card .branch-phone { margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--text-secondary); }

/* ========== FOOTER ========== */
.footer-vv {
    background: var(--dark-bg);
    color: #fff;
    padding: 3rem 0 1.5rem;
}
.footer-vv a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.footer-vv a:hover { color: var(--accent-light); }
.footer-vv .brand { font-size: 1.25rem; font-weight: 700; color: #fff; }
.footer-vv .brand span { color: var(--accent-color); }
.footer-vv .copy { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-vv .footer-brand-line2 { display: block; margin-top: 0.25rem; }
.footer-vv .footer-brand-line3 { display: block; margin-top: 0.25rem; }
.footer-branches-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-branch-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.footer-branch-tag:hover { background: rgba(255,255,255,0.18); border-color: var(--accent-color); color: #fff; }

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

/* ========== MOBILE STICKY CONTACT BAR (Call & WhatsApp only) ========== */
.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 10px rgba(15, 23, 42, 0.1);
    z-index: 1032;
    display: none;
    padding: 0.5rem 0.75rem;
}
.mobile-contact-bar-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}
.mobile-contact-bar a {
    flex: 1;
    min-width: 0;
    max-width: 50%;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.6rem 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    overflow: hidden;
    height: 2.75rem;
    min-height: 2.75rem;
    box-sizing: border-box;
}
.mobile-contact-bar a span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mobile-contact-bar a:active { transform: scale(0.98); }
.mobile-contact-bar a .fa-phone-alt,
.mobile-contact-bar a .fa-phone { font-size: 1.1rem; flex-shrink: 0; }
.mobile-contact-bar a .fa-whatsapp { font-size: 1.2rem; flex-shrink: 0; }
/* Call button */
.mobile-contact-bar a[href^="tel:"] {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    box-shadow: var(--shadow-md);
}
.mobile-contact-bar a[href^="tel:"]:hover { box-shadow: var(--shadow-lg); }
/* WhatsApp button */
.mobile-contact-bar a[href^="https://wa.me"] {
    color: #fff;
    background: #25d366;
    border: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.mobile-contact-bar a[href^="https://wa.me"]:hover { background: #20bd5a; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }

@media (max-width: 767px) {
    body {
        padding-bottom: 72px; /* space for mobile contact bar (Call + WhatsApp) */
    }
    .mobile-contact-bar {
        display: block;
    }
}
