/* ============================================================
   IndiaITR.com — Custom Stylesheet (v2 — Enhanced)
   Tax Consultancy Services | Modern Corporate Design
   ============================================================ */

/* Google Font: Poppins (headings) + Inter (body) */

/* ─── CSS Variables / Design Tokens ───────────── */
:root {
    /* Brand Colors */
    --primary:       #1a5276;
    --primary-dark:  #0d3b5c;
    --primary-light: #2471a3;
    --secondary:     #2980b9;
    --accent:        #f39c12;      /* Warmer saffron */
    --accent-hover:  #d68910;
    --accent-light:  rgba(243,156,18,0.12);

    /* Indian tricolor accents (subtle) */
    --tri-saffron:   #ff9933;
    --tri-white:     #ffffff;
    --tri-green:     #138808;

    /* Neutrals */
    --success:       #27ae60;
    --light-bg:      #f8f9fa;
    --lighter-bg:    #f1f4f6;
    --white:         #ffffff;
    --dark:          #1a2332;
    --text:          #2c3e50;
    --text-muted:    #6c7a89;
    --border:        #e3e8ed;

    /* Shadows (softer, more premium) */
    --shadow-sm:     0 2px 12px rgba(26,82,118,0.06);
    --shadow-md:     0 8px 28px rgba(26,82,118,0.10);
    --shadow-lg:     0 16px 48px rgba(26,82,118,0.15);
    --shadow-accent: 0 8px 24px rgba(243,156,18,0.30);

    /* Radii */
    --radius:        0.625rem;
    --radius-lg:     1rem;
    --radius-xl:     1.5rem;

    /* Transitions */
    --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base ────────────────────────────────────── */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                 Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                 Roboto, sans-serif;
    font-weight: 700;
    color: var(--dark);
}

a {
    color: var(--secondary);
    transition: color var(--transition);
    text-decoration: none;
}
a:hover { color: var(--primary); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ─── Scroll Reveals (animation classes) ──────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Tricolor accent strip */
.tricolor-strip {
    height: 4px;
    background: linear-gradient(90deg,
        var(--tri-saffron) 0%, var(--tri-saffron) 33.33%,
        var(--tri-white) 33.33%, var(--tri-white) 66.66%,
        var(--tri-green) 66.66%, var(--tri-green) 100%);
}

/* ─── Top Bar (info strip above navbar) ───────── */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 0.4rem 0;
}
.top-bar a {
    color: rgba(255,255,255,0.85);
}
.top-bar a:hover { color: var(--accent); }
.top-bar .top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.top-bar .top-bar-item i { color: var(--accent); font-size: 0.78rem; }

/* ─── Navbar ──────────────────────────────────── */
#mainNav {
    background: rgba(26,82,118,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}
#mainNav.scrolled {
    background: rgba(13,59,92,0.97);
    box-shadow: var(--shadow-md);
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

#mainNav .navbar-brand {
    color: var(--white) !important;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#mainNav .navbar-brand .brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(243,156,18,0.35);
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.95rem !important;
    border-radius: var(--radius);
    position: relative;
    transition: all var(--transition);
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition);
    transform: translateX(-50%);
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 50%;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--white) !important;
}

/* ─── Buttons ─────────────────────────────────── */
.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(243,156,18,0.40);
    color: var(--white);
}
.btn-primary-site {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary-site:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}
.btn-outline-white {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    backdrop-filter: blur(5px);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    color: var(--white);
}

/* ─── Main Content Offset ─────────────────────── */
.main-content { padding-top: 64px; }

/* ─── Hero Section ────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #082a44 60%, #0a3251 100%);
    color: var(--white);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}
/* Animated decorative orbs */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-section::before {
    width: 500px; height: 500px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(243,156,18,0.15) 0%, transparent 70%);
    animation: floatOrb 8s ease-in-out infinite;
}
.hero-section::after {
    width: 400px; height: 400px;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(41,128,185,0.20) 0%, transparent 70%);
    animation: floatOrb 10s ease-in-out infinite reverse;
}
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(30px, -30px); }
}

.hero-section .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(243,156,18,0.4);
    color: var(--accent);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}
.hero-section h1 {
    color: var(--white);
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.hero-section h1 .accent-text { color: var(--accent); }
.hero-section .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 580px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Hero visual */
.hero-visual {
    position: relative;
    z-index: 2;
}
.hero-card {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--white);
}
.hero-card .hero-card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-accent);
}
.hero-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.5rem; }
.hero-card p { opacity: 0.85; font-size: 0.92rem; margin: 0; }

.hero-trust-row {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-row .trust-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; opacity: 0.9;
}
.hero-trust-row .trust-item i { color: var(--accent); }

/* ─── Stats Counter Section ───────────────────── */
.stats-section {
    background: var(--white);
    padding: 3.5rem 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 5;
    margin-top: -3rem;
    border-radius: var(--radius-xl);
    margin-left: 1rem; margin-right: 1rem;
}
.stat-item { text-align: center; }
.stat-item .stat-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(26,82,118,0.08), rgba(26,82,118,0.04));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
}
.stat-item .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
}
.stat-item .stat-number .suffix { color: var(--accent); }
.stat-item .stat-label {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── Section Styles ──────────────────────────── */
.section-padding { padding: 5rem 0; }
.section-light { background: var(--light-bg); }

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.5px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
}
.divider-accent {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    margin: 0.8rem auto 1.5rem;
    border-radius: 2px;
}
.divider-accent.left { margin-left: 0; }

/* ─── Service Cards (Enhanced) ────────────────── */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--tri-saffron));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .service-number {
    position: absolute;
    top: 1rem; right: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--lighter-bg);
    line-height: 1;
    transition: color var(--transition);
}
.service-card:hover .service-number { color: rgba(243,156,18,0.15); }

.service-card .service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1.3rem;
    transition: all var(--transition);
    box-shadow: 0 6px 16px rgba(26,82,118,0.25);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(243,156,18,0.40);
}
.service-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.6rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    margin-bottom: 0;
}
.service-card .service-link {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
}
.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}
.service-card .service-link:hover { color: var(--accent); }

/* ─── Why Choose Us ───────────────────────────── */
.why-us-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}
.why-us-card .why-icon {
    width: 76px; height: 76px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, rgba(243,156,18,0.12), rgba(243,156,18,0.04));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem;
    color: var(--accent);
    transition: all var(--transition);
}
.why-us-card:hover .why-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    transform: scale(1.1);
}
.why-us-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.why-us-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ─── Process Steps ───────────────────────────── */
.process-step {
    text-align: center;
    position: relative;
    padding: 1rem;
}
.process-step .step-number {
    width: 72px; height: 72px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    box-shadow: 0 8px 20px rgba(26,82,118,0.25);
    transition: all var(--transition);
}
.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(243,156,18,0.40);
}
.process-step .step-number .step-badge {
    position: absolute;
    top: -8px; right: -8px;
    width: 28px; height: 28px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
/* Connecting line */
.process-row { position: relative; }
.process-row::before {
    content: '';
    position: absolute;
    top: 36px; left: 12%; right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
    z-index: 0;
}

/* ─── Testimonials Carousel ───────────────────── */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.testimonial-card .quote-mark {
    position: absolute;
    top: 1.2rem; left: 1.5rem;
    font-size: 3.5rem;
    color: var(--accent-light);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card .rating {
    color: #f1c40f;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    letter-spacing: 2px;
}
.testimonial-card .testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-card .testimonial-author {
    display: flex; align-items: center; justify-content: center;
    gap: 0.8rem;
}
.testimonial-card .author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}
.testimonial-card .author-info { text-align: left; }
.testimonial-card .author-name {
    font-weight: 700; color: var(--dark); font-size: 0.95rem;
}
.testimonial-card .author-role {
    font-size: 0.82rem; color: var(--text-muted);
}

/* ─── CTA Section ─────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(243,156,18,0.10) 0%, transparent 65%);
    pointer-events: none;
}
.cta-section h2 {
    color: var(--white);
    font-size: 2.1rem;
    margin-bottom: 0.8rem;
}
.cta-section p {
    font-size: 1.1rem;
    opacity: 0.88;
    max-width: 600px;
    margin: 0 auto 1.8rem;
}
.cta-section .btn { position: relative; z-index: 2; }

/* ─── Page Header ─────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #062237 100%);
    color: var(--white);
    padding: 4rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 50%; height: 200%;
    background: radial-gradient(circle, rgba(243,156,18,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    position: relative; z-index: 2;
}
.page-header .breadcrumb-nav {
    font-size: 0.95rem;
    opacity: 0.85;
    position: relative; z-index: 2;
}
.page-header .breadcrumb-nav a {
    color: rgba(255,255,255,0.9);
}
.page-header .breadcrumb-nav a:hover { color: var(--accent); }

/* ─── About Page ──────────────────────────────── */
.about-intro { font-size: 1.08rem; line-height: 1.9; color: var(--text-muted); }
.mission-vision-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
    text-align: center;
}
.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.mission-vision-card .mv-icon {
    width: 72px; height: 72px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    color: var(--white);
    box-shadow: var(--shadow-accent);
}
.mission-vision-card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 0.6rem; }
.mission-vision-card p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }

.values-list .value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border);
}
.values-list .value-item:last-child { border-bottom: none; }
.values-list .value-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(243,156,18,0.12), rgba(243,156,18,0.04));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
}
.values-list h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.values-list p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* Cert / badge strip */
.badge-strip {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
    padding: 2rem 0 0;
}
.cert-badge {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    transition: all var(--transition);
}
.cert-badge:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.cert-badge i { font-size: 1.4rem; color: var(--primary); }

/* ─── FAQ Accordion ───────────────────────────── */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-accordion .accordion-item:hover { border-color: var(--primary-light); }
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    box-shadow: none !important;
    padding: 1.1rem 1.4rem;
    font-size: 1.02rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--light-bg);
}
.faq-accordion .accordion-button::after {
    background: var(--accent);
    border-radius: 50%;
    transition: transform var(--transition);
}
.faq-accordion .accordion-body {
    color: var(--text-muted);
    line-height: 1.8;
    padding: 1.2rem 1.4rem;
    font-size: 0.95rem;
}
.faq-search {
    position: relative;
    max-width: 500px; margin: 0 auto 2.5rem;
}
.faq-search input {
    padding-left: 3rem !important;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}
.faq-search i {
    position: absolute;
    left: 1.3rem; top: 50%; transform: translateY(-50%);
    color: var(--text-muted);
}
.faq-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    margin: 0 0.3rem 0.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--light-bg);
    color: var(--text-muted);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition);
}
.faq-category:hover,
.faq-category.active {
    background: var(--primary);
    color: var(--white);
}

/* ─── Contact Page ────────────────────────────── */
.contact-form-section { background: var(--light-bg); }
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-form-card .form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    transition: all var(--transition);
    font-size: 0.95rem;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(41,128,185,0.12);
}
.contact-form-card textarea.form-control { min-height: 140px; }

/* CAPTCHA */
.captcha-group {
    display: flex; align-items: center; gap: 0.8rem;
}
.captcha-image {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-shrink: 0;
}
.captcha-refresh {
    color: var(--secondary);
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
}
.captcha-refresh:hover { color: var(--accent); text-decoration: underline; }

/* Contact info card */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(243,156,18,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.contact-info-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 1.6rem; }
.contact-info-card .info-item {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.4rem;
    position: relative; z-index: 2;
}
.contact-info-card .info-item i {
    width: 42px; height: 42px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--accent);
}
.contact-info-card .info-item .info-label { font-size: 0.82rem; opacity: 0.7; margin-bottom: 0.15rem; }
.contact-info-card .info-item .info-value { font-weight: 600; font-size: 0.95rem; }
.contact-info-card a { color: var(--white); }
.contact-info-card a:hover { color: var(--accent); }

/* Response time badge */
.response-badge {
    background: rgba(39,174,96,0.15);
    border: 1px solid rgba(39,174,96,0.3);
    color: var(--success);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.45rem;
}
.response-badge .pulse {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(1.4); }
}

/* Map placeholder */
.map-placeholder {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 220px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: var(--text-muted);
    background-image:
        linear-gradient(rgba(26,82,118,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,82,118,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}
.map-placeholder i { font-size: 2.5rem; color: var(--primary-light); margin-bottom: 0.5rem; }

/* ─── Alert Messages ──────────────────────────── */
.alert-site-success {
    background: #d4edda; border: 1px solid #c3e6cb; color: #155724;
    border-radius: var(--radius); padding: 1rem 1.3rem;
}
.alert-site-error {
    background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24;
    border-radius: var(--radius); padding: 1rem 1.3rem;
}

/* ─── Footer ──────────────────────────────────── */
.site-footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #051e30 100%);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}
.site-footer .footer-heading {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
    position: relative;
    padding-bottom: 0.7rem;
}
.site-footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.site-footer .footer-brand {
    display: flex; align-items: center; gap: 0.6rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem; font-weight: 700;
    margin-bottom: 1.2rem;
}
.site-footer .footer-brand .brand-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
}
.site-footer .footer-about { font-size: 0.9rem; line-height: 1.7; }
.site-footer .footer-links li { margin-bottom: 0.5rem; }
.site-footer .footer-links a {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    transition: all var(--transition);
    display: inline-block;
}
.site-footer .footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.site-footer .footer-contact li {
    margin-bottom: 0.8rem; font-size: 0.9rem;
    display: flex; align-items: flex-start; gap: 0.6rem;
}
.site-footer .footer-contact i {
    color: var(--accent);
    width: 18px; text-align: center; margin-top: 3px;
}
.site-footer .footer-contact a { color: rgba(255,255,255,0.72); }
.site-footer .footer-contact a:hover { color: var(--accent); }

/* Social icons in footer */
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.10);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Newsletter mini form */
.footer-newsletter input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: var(--radius);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter input:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent);
    box-shadow: none;
    color: var(--white);
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 1.3rem 0;
    font-size: 0.88rem;
    margin-top: 2.5rem;
}

.text-accent { color: var(--accent) !important; }

/* ─── Floating Contact Bubbles ────────────────── */
.floating-contacts {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 1050;
    display: flex; flex-direction: column; gap: 0.7rem;
}
.float-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
}
.float-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.float-btn:hover { transform: translateY(-4px) scale(1.06); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.whatsapp:hover { background: #1da851; }
.float-btn.scroll-top { background: var(--primary); }
.float-btn.scroll-top:hover { background: var(--accent); }

/* WhatsApp pulse ring */
.float-btn.whatsapp::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ─── Privacy Page ────────────────────────────── */
.privacy-content h3 {
    font-size: 1.3rem; color: var(--primary);
    margin-top: 2rem; margin-bottom: 0.8rem;
}
.privacy-content p, .privacy-content li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.85;
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-section { padding: 3.5rem 0 5rem; }
    .hero-section h1 { font-size: 2.3rem; }
    .stats-section { margin-top: -2.5rem; }
    .stat-item .stat-number { font-size: 2.2rem; }
    .section-padding { padding: 3.5rem 0; }
    .page-header { padding: 3rem 0 2.5rem; }
    .page-header h1 { font-size: 2rem; }
    /* Hide the connecting line on tablet */
    .process-row::before { display: none; }
    /* Show navbar button properly on mobile */
    #mainNav .btn-accent { width: 100%; justify-content: center; }
}

@media (max-width: 767.98px) {
    .hero-section { padding: 2.5rem 0 4rem; text-align: center; }
    .hero-section h1 { font-size: 1.9rem; }
    .hero-section .hero-subtitle { font-size: 1rem; margin-left: auto; margin-right: auto; }
    .hero-trust-row { justify-content: center; }
    .section-title { font-size: 1.7rem; }
    .stats-section { margin-left: 0.5rem; margin-right: 0.5rem; padding: 2.5rem 0; }
    .stat-item { margin-bottom: 1.5rem; }
    .stat-item .stat-number { font-size: 2rem; }
    .contact-form-card, .contact-info-card { padding: 1.5rem; }
    .site-footer { padding: 2.5rem 0 0; }
    .floating-contacts { bottom: 16px; right: 16px; }
    .float-btn { width: 48px; height: 48px; font-size: 1.15rem; }
    .top-bar { display: none; } /* hide top bar on small screens */
}

@media (max-width: 575.98px) {
    .hero-section h1 { font-size: 1.65rem; }
    .page-header h1 { font-size: 1.5rem; }
    .cta-section h2 { font-size: 1.5rem; }
    .captcha-group { flex-direction: column; align-items: flex-start; }
    .testimonial-card { padding: 2rem 1.5rem; }
}

/* Print friendly */
@media print {
    #mainNav, .floating-contacts, .cta-section, .site-footer { display: none; }
    .main-content { padding-top: 0; }
}