/* ============================================
   Amar Pandey & Company - CA Firm Website
   Theme: India CA Colors (Blue, Orange, Green)
   Modern, Premium, Responsive Design
   ============================================ */

:root {
    /* Primary Palette - India CA Blue */
    --primary-blue: #1a4a7a;
    --primary-dark: #0d2b4a;
    --primary-light: #2d6da3;
    --primary-soft: #e8f1f8;

    /* Accent - India CA Orange */
    --accent-orange: #e87722;
    --accent-orange-light: #f0954f;
    --accent-orange-glow: rgba(232, 119, 34, 0.15);

    /* Secondary Accent - India CA Green */
    --accent-green: #4caf50;
    --accent-green-light: #81c784;
    --accent-green-glow: rgba(76, 175, 80, 0.15);

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafbfc;
    --light-grey: #f0f4f8;
    --border-light: #e1e8ed;
    --text-primary: #1a2b3c;
    --text-secondary: #5a6d80;
    --text-muted: #8a9aaa;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 40%, var(--primary-light) 100%);
    --gradient-orange: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    --gradient-green: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
    --gradient-card: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(13, 43, 74, 0.08);
    --shadow-md: 0 4px 20px rgba(13, 43, 74, 0.1);
    --shadow-lg: 0 10px 40px rgba(13, 43, 74, 0.12);
    --shadow-xl: 0 20px 60px rgba(13, 43, 74, 0.15);
    --shadow-orange: 0 4px 20px rgba(232, 119, 34, 0.25);
    --shadow-green: 0 4px 20px rgba(76, 175, 80, 0.25);

    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);

    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    line-height: 1.65;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.75rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    margin: 0 auto;
    border-radius: var(--radius-full);
    position: relative;
}

.section-title .underline::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 4px;
    background: var(--accent-green);
    border-radius: var(--radius-full);
}

.section-title p {
    color: var(--text-secondary);
    margin-top: 20px;
    font-size: 1.15rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    text-align: center;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 119, 34, 0.35);
}

.btn-secondary {
    background: var(--gradient-hero);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-green {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.35);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 46px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
    transition: var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.01em;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient-orange);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary-blue);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2.5px;
    background: var(--primary-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
}

.mobile-nav a {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--primary-soft);
    border-left-color: var(--accent-orange);
    color: var(--primary-blue);
}

.mobile-nav .btn {
    margin-top: 12px;
    justify-content: center;
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 76px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: var(--white);
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--accent-orange-light);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.hero-visual {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    opacity: 0.06;
}

.hero-visual svg {
    width: 100%;
    height: 100%;
    color: var(--white);
}

/* About Preview */
.about-preview {
    background: var(--off-white);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent-orange);
    border-radius: var(--radius-xl);
    z-index: 0;
    opacity: 0.3;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.05'%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");
}

.about-content h2 {
    font-size: 2.4rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content a {
    color: var(--primary-blue);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 2px;
}

.about-content a:hover {
    color: var(--accent-orange);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.stat-item h3 {
    font-size: 2.2rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
    margin-top: 4px;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background: var(--white);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 1.4rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--gradient-orange);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card h3 a {
    color: inherit;
}

.service-card h3 a:hover {
    color: var(--accent-orange);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: var(--primary-blue);
    gap: 10px;
}

/* Local SEO Section */
.local-seo {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.local-seo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e87722' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.local-seo .section-title h2 {
    color: var(--white);
}

.local-seo .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.local-seo-content {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.local-seo-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 119, 34, 0.35);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    color: var(--accent-orange-light);
    font-size: 0.92rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    cursor: default;
}

.area-tag:hover {
    background: rgba(232, 119, 34, 0.2);
    transform: translateY(-2px);
    border-color: var(--accent-orange);
}

/* CTA Section */
.cta-section {
    background: var(--off-white);
    text-align: center;
}

.cta-box {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 70px 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.93rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 22px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-gstin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 119, 34, 0.12);
    border: 1px solid rgba(232, 119, 34, 0.25);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--accent-orange-light);
    margin-top: 8px;
    backdrop-filter: blur(5px);
    transition: var(--transition-base);
}

.footer-gstin:hover {
    background: rgba(232, 119, 34, 0.2);
    border-color: var(--accent-orange);
    transform: translateX(3px);
}

.footer-gstin svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.footer-gstin strong {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-base);
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
}

.call-float-mobile {
    display: none;
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 58px;
    height: 58px;
    background: var(--gradient-orange);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-orange);
    z-index: 999;
    transition: var(--transition-base);
}

.call-float-mobile:hover {
    transform: scale(1.12);
}

/* Page Header */
.page-header {
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e87722' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--off-white);
    padding: 16px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--accent-orange);
}

.breadcrumbs span {
    color: var(--text-primary);
    font-weight: 600;
}

/* Services Detail Page */
.service-detail {
    padding: 70px 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-item:nth-child(even) {
    direction: rtl;
}

.service-detail-item:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h2 {
    font-size: 1.9rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.service-detail-content p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 1rem;
}

.service-detail-content ul {
    list-style: none;
    margin-top: 20px;
}

.service-detail-content li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.service-detail-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-detail-image {
    background: linear-gradient(135deg, var(--primary-soft), #dbe9f5);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.service-detail-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
    border-radius: 50%;
}

/* About Page */
.about-hero {
    background: var(--off-white);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.mission-values {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-base);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-10deg);
}

.value-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

.why-choose {
    background: var(--gradient-hero);
    color: var(--white);
}

.why-choose .section-title h2 {
    color: var(--white);
}

.why-choose .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 119, 34, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-orange);
    transform: scaleY(0);
    transition: var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-card h3 {
    color: var(--accent-orange-light);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

.why-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    height: fit-content;
    border: 1px solid var(--border-light);
}

.contact-info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 28px;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.contact-item:hover .contact-item-icon {
    background: var(--gradient-orange);
    color: var(--white);
    transform: scale(1.1);
}

.contact-item h4 {
    color: var(--primary-dark);
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-blue);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-orange);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-form-card h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(26, 74, 122, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.recaptcha-placeholder {
    background: var(--off-white);
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.map-section {
    padding: 0 0 80px;
    background: var(--off-white);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 420px;
    background: var(--white);
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Page */
.faq-section {
    background: var(--off-white);
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(26, 74, 122, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question svg {
    width: 22px;
    height: 22px;
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--accent-orange);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 28px 28px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer-inner p {
    margin-bottom: 10px;
}

.faq-answer-inner ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-answer-inner li {
    margin-bottom: 6px;
}

.faq-answer-inner a {
    color: var(--primary-blue);
    font-weight: 600;
    border-bottom: 1px solid var(--accent-orange);
}

.faq-answer-inner a:hover {
    color: var(--accent-orange);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection styling */
::selection {
    background: rgba(232, 119, 34, 0.25);
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-grid,
    .about-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-item:nth-child(even) {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 110px 0 60px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cta-box {
        padding: 50px 28px;
    }

    .cta-box h2 {
        font-size: 1.7rem;
    }

    .call-float-mobile {
        display: flex;
    }

    .whatsapp-float {
        bottom: 96px;
    }

    .values-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .logo-img {
        height: 38px;
        max-width: 200px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px 20px;
    }
}

/* ============================================
   ANIMATION ADDITIONS — May 2025
   ============================================ */

/* ── Scroll Progress Bar ── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-orange);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ── Hero Entrance Stagger ── */
.hero-badge,
.hero h1,
.hero p,
.hero-buttons,
.hero-trust {
    opacity: 0;
    transform: translateY(28px);
    animation: heroEnter 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-badge  { animation-delay: 0.1s; }
.hero h1     { animation-delay: 0.25s; }
.hero p      { animation-delay: 0.4s; }
.hero-buttons{ animation-delay: 0.55s; }
.hero-trust  { animation-delay: 0.7s; }

@keyframes heroEnter {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Hero H1 Word Highlight Shimmer ── */
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    left: -5%;
    top: -5%;
    width: 110%;
    height: 110%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmerText 3s ease-in-out 1.5s infinite;
    pointer-events: none;
}

@keyframes shimmerText {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ── Stagger Fade-In for grids ── */
.stagger-child {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-child.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay utilities applied by JS */
.stagger-child:nth-child(1)  { transition-delay: 0.05s; }
.stagger-child:nth-child(2)  { transition-delay: 0.12s; }
.stagger-child:nth-child(3)  { transition-delay: 0.19s; }
.stagger-child:nth-child(4)  { transition-delay: 0.26s; }
.stagger-child:nth-child(5)  { transition-delay: 0.33s; }
.stagger-child:nth-child(6)  { transition-delay: 0.40s; }
.stagger-child:nth-child(7)  { transition-delay: 0.47s; }
.stagger-child:nth-child(8)  { transition-delay: 0.54s; }
.stagger-child:nth-child(9)  { transition-delay: 0.61s; }
.stagger-child:nth-child(10) { transition-delay: 0.68s; }
.stagger-child:nth-child(11) { transition-delay: 0.75s; }
.stagger-child:nth-child(12) { transition-delay: 0.82s; }
.stagger-child:nth-child(13) { transition-delay: 0.89s; }
.stagger-child:nth-child(14) { transition-delay: 0.96s; }

/* ── Animated Section Underline ── */
.section-title .underline {
    width: 0;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-title.visible .underline {
    width: 60px;
}

/* ── Counter Number Animation ── */
.stat-item h3 {
    display: inline-block;
}

.stat-item {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.25s; }
.stat-item:nth-child(3) { transition-delay: 0.4s; }

/* ── Area Tags Cascade ── */
.area-tag {
    opacity: 0;
    transform: scale(0.85) translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease,
                background 0.3s ease, border-color 0.3s ease;
}

.area-tag.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ── Trust Items in Hero ── */
.trust-item {
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(232, 119, 34, 0.4);
    transform: translateX(4px);
}

/* ── CTA Box Glow Pulse ── */
.cta-box {
    animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 20px 60px rgba(13, 43, 74, 0.2); }
    50%       { box-shadow: 0 20px 80px rgba(232, 119, 34, 0.2), 0 20px 60px rgba(13, 43, 74, 0.2); }
}

/* ── FAQ Question Icon Spin ── */
.faq-question::after {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e87722' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") center/contain no-repeat;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

/* Remove the old svg chevron approach from JS-added SVGs */
.faq-question svg { display: none; }

/* ── FAQ answer smooth with opacity ── */
.faq-answer {
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 700px;
    opacity: 1;
}

/* ── Service card icon bounce on hover ── */
.service-card:hover .service-icon {
    animation: iconBounce 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes iconBounce {
    0%  { transform: scale(1) rotate(0deg); }
    30% { transform: scale(1.2) rotate(-8deg); }
    60% { transform: scale(0.95) rotate(4deg); }
    80% { transform: scale(1.08) rotate(-3deg); }
    100%{ transform: scale(1.1) rotate(-5deg); }
}

/* ── Hero floating orbs more lively ── */
.hero::before {
    animation: floatOrb1 9s ease-in-out infinite;
}

.hero::after {
    animation: floatOrb2 12s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%,100% { transform: translate(0, 0) scale(1); }
    33%     { transform: translate(-20px, -30px) scale(1.08); }
    66%     { transform: translate(15px, -15px) scale(0.95); }
}

@keyframes floatOrb2 {
    0%,100% { transform: translate(0, 0) scale(1); }
    40%     { transform: translate(20px, 25px) scale(1.1); }
    70%     { transform: translate(-10px, 10px) scale(0.92); }
}

/* ── Header logo subtle entrance ── */
.logo-img {
    animation: logoFadeIn 0.6s ease 0.05s both;
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Nav links entrance ── */
.nav-desktop a {
    animation: navFadeIn 0.5s ease both;
}

.nav-desktop a:nth-child(1) { animation-delay: 0.1s; }
.nav-desktop a:nth-child(2) { animation-delay: 0.17s; }
.nav-desktop a:nth-child(3) { animation-delay: 0.24s; }
.nav-desktop a:nth-child(4) { animation-delay: 0.31s; }
.nav-desktop a:nth-child(5) { animation-delay: 0.38s; }

@keyframes navFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll-to-top button ── */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 46px;
    height: 46px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 998;
}

#scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#scroll-top:hover {
    background: var(--gradient-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

@media (max-width: 768px) {
    #scroll-top { right: 84px; bottom: 96px; }
}

/* ── Page entry for inner pages (service pages) ── */
main .container > div > p:first-child,
main .container > div > h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

main .container > div > p:first-child.visible,
main .container > div > h2.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Table row hover ── */
table tbody tr {
    transition: background 0.2s ease;
}

table tbody tr:hover {
    background: var(--primary-soft) !important;
}

/* ── Breadcrumb link hover ── */
.breadcrumb-nav a {
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent-orange, #e87722) !important;
    text-decoration: underline;
}

/* ── Reduce motion for accessibility ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   FOOTER — AREAS WE SERVE (Redesigned)
   ============================================ */

.footer-areas {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Heading with map-pin icon */
.footer-areas-heading {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-areas-heading svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

/* Subtitle */
.footer-areas-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 14px;
}

/* 2-column chip grid */
.footer-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 16px;
}

.footer-area-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    color: rgba(255,255,255,0.72);
    font-size: 0.82rem;
    font-weight: 500;
    transition: background 0.22s ease, border-color 0.22s ease,
                color 0.22s ease, transform 0.22s ease;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.footer-area-chip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(232,119,34,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-area-chip:hover {
    background: rgba(232,119,34,0.12);
    border-color: rgba(232,119,34,0.35);
    color: var(--accent-orange-light);
    transform: translateY(-1px);
}

.footer-area-chip:hover::after {
    opacity: 1;
}

/* Animated pulse dot */
.area-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: var(--accent-orange);
    position: relative;
    flex-shrink: 0;
}

.area-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--accent-orange);
    opacity: 0.25;
    animation: dotPulse 2.4s ease-in-out infinite;
}

/* Stagger the pulse so dots don't all blink together */
.footer-area-chip:nth-child(2) .area-dot::before { animation-delay: 0.3s; }
.footer-area-chip:nth-child(3) .area-dot::before { animation-delay: 0.6s; }
.footer-area-chip:nth-child(4) .area-dot::before { animation-delay: 0.9s; }
.footer-area-chip:nth-child(5) .area-dot::before { animation-delay: 1.2s; }
.footer-area-chip:nth-child(6) .area-dot::before { animation-delay: 1.5s; }
.footer-area-chip:nth-child(7) .area-dot::before { animation-delay: 1.8s; }
.footer-area-chip:nth-child(8) .area-dot::before { animation-delay: 2.1s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50%       { transform: scale(2.2); opacity: 0; }
}

/* Mini stats row */
.footer-areas-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
    padding: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
}

.footer-areas-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.footer-areas-stat strong {
    color: var(--accent-orange-light);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.footer-areas-stat span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Online note */
.footer-areas-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    padding-top: 2px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 10px;
}

.footer-areas-online svg {
    color: var(--accent-green);
    flex-shrink: 0;
    opacity: 0.85;
}

/* Adjust footer-grid to give areas column proper space */
.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-areas {
        grid-column: 1 / -1;
    }
    .footer-area-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-areas-stats {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .footer-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-area-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Reduce-motion: kill dot pulse */
@media (prefers-reduced-motion: reduce) {
    .area-dot::before { animation: none; }
}


/* Homepage calculator preview */
.homepage-calculator-teaser {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}
.homepage-calculator-teaser .service-icon {
    font-size: 1rem;
    font-weight: 900;
}
