/* ==========================================================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #2563eb; 
    --primary-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); 
    --secondary-color: #0f172a; 
    --text-main: #334155; 
    --text-light: #64748b; 
    --bg-light: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.98);
    --white: #ffffff;
    --border-color: #e2e8f0;
    --whatsapp: #25D366;
    --google-yellow: #FBBC05;

    /* Border Radius */
    --radius-md: 12px;
    --radius-lg: 24px;

    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 35px -5px rgba(37, 99, 235, 0.15); 
}

/* ==========================================================================
   2. GLOBAL RESETS & BASE TYPOGRAPHY
   ========================================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
}

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 85px; 
    font-size: 16px; 
}

body { 
    background-color: var(--bg-light); 
    color: var(--text-main); 
    overflow-x: hidden; 
    line-height: 1.6; 
}

h1, h2, h3, h4, h5 { 
    color: var(--secondary-color); 
    font-weight: 700; 
    line-height: 1.25; 
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition); 
}

ul { 
    list-style: none; 
}

img { 
    display: block; 
    max-width: 100%; 
    height: auto; 
    border-radius: var(--radius-md); 
    object-fit: cover; 
}

/* ==========================================================================
   3. LAYOUT UTILITIES & COMPONENTS
   ========================================================================== */
.container { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

section { 
    padding: 5rem 0; 
}

.mobile-only { 
    display: none; 
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    padding: 14px 32px; 
    border-radius: 50px; 
    font-weight: 600; 
    letter-spacing: 0.5px; 
    transition: var(--transition); 
    border: none; 
    cursor: pointer; 
    text-align: center; 
    min-height: 48px; 
}

.btn-primary { 
    background: var(--primary-gradient); 
    color: var(--white); 
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25); 
}

.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4); 
    color: var(--white); 
}

.btn-outline { 
    background: rgba(255, 255, 255, 0.15); 
    border: 1.5px solid rgba(255, 255, 255, 0.8); 
    color: var(--white); 
}

.btn-outline:hover { 
    background: var(--white); 
    color: var(--secondary-color); 
    transform: translateY(-3px); 
}

/* Section Titles */
.section-title { 
    text-align: center; 
    margin-bottom: 3.5rem; 
}

.section-title h2 { 
    font-size: clamp(1.8rem, 4vw, 2.75rem); 
    margin-bottom: 1rem; 
    letter-spacing: -0.02em; 
}

.section-title h2 span { 
    color: var(--primary-color); 
}

.section-title p { 
    color: var(--text-light); 
    font-size: 1.1rem; 
    max-width: 750px; 
    margin: 0 auto; 
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
header { 
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 0; 
    background: var(--bg-glass); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
    z-index: 1000; 
    padding: 10px 0; 
    transition: var(--transition); 
    box-shadow: var(--shadow-sm); 
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.header-logo { 
    display: flex; 
    align-items: center; 
    height: 55px; 
}

.header-logo img { 
    max-height: 100%; 
    width: auto; 
    object-fit: contain; 
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
}

.nav-links a { 
    font-weight: 600; 
    font-size: 0.95rem; 
    color: var(--text-main); 
    transition: color var(--transition-fast); 
}

.nav-links a:hover { 
    color: var(--primary-color); 
}

.nav-call-btn { 
    background: var(--secondary-color); 
    color: var(--white); 
    padding: 12px 24px; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    box-shadow: var(--shadow-sm); 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    min-height: 48px; 
}

.nav-call-btn:hover { 
    background: var(--primary-gradient); 
    color: var(--white); 
    transform: translateY(-2px); 
}

.hamburger { 
    display: none; 
    font-size: 1.8rem; 
    cursor: pointer; 
    padding: 5px; 
    color: var(--secondary-color); 
    min-height: 48px; 
    min-width: 48px; 
    align-items: center; 
    justify-content: center; 
    background: transparent; 
    border: none;
}

/* ==========================================================================
   5. HERO SECTION & FORM
   ========================================================================== */
.hero { 
    padding: 120px 0 60px; 
    position: relative; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    color: var(--white); 
}

.hero-wrap { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 50px; 
    width: 100%; 
}

.hero-content { 
    flex: 1.2; 
}

.hero-tag { 
    background: rgba(255, 255, 255, 0.15); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    padding: 8px 20px; 
    border-radius: 50px; 
    display: inline-block; 
    font-weight: 600; 
    margin-bottom: 1.5rem; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.hero h1 { 
    font-size: clamp(2rem, 5vw, 3.8rem); 
    font-weight: 800; 
    margin-bottom: 1.2rem; 
    color: var(--white); 
    letter-spacing: -0.03em; 
    line-height: 1.15; 
}

.hero p { 
    font-size: 1.1rem; 
    color: #f1f5f9; 
    margin-bottom: 2rem; 
    max-width: 90%; 
    font-weight: 400; 
}

.hero-buttons { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
}

/* Quote Form Container */
.quote-form-container { 
    flex: 0.9; 
    background: rgba(255, 255, 255, 0.1); 
    padding: 35px; 
    border-radius: var(--radius-lg); 
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2); 
    width: 100%; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
}

.quote-form-container h3 { 
    margin-bottom: 1.5rem; 
    font-size: 1.6rem; 
    text-align: center; 
    color: var(--white); 
}

.form-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 12px; 
}

.form-group.full-width { 
    grid-column: span 2; 
}

input, select { 
    width: 100%; 
    padding: 15px; 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: var(--radius-md); 
    background: rgba(255, 255, 255, 0.08); 
    color: var(--white); 
    font-size: 16px; 
    transition: var(--transition); 
    -webkit-appearance: none; 
    appearance: none; 
    min-height: 50px;
}

input::placeholder { 
    color: rgba(255, 255, 255, 0.8); 
}

input:focus, select:focus { 
    border-color: var(--primary-color); 
    background: rgba(255, 255, 255, 0.2); 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

.select-wrapper { 
    position: relative; 
    width: 100%; 
    cursor: pointer; 
}

.select-wrapper select { 
    cursor: pointer; 
    padding-right: 40px; 
}

.select-wrapper select option { 
    color: var(--secondary-color); 
    background: var(--white); 
    font-weight: 500;
}

.select-wrapper select:required:invalid { 
    color: rgba(255, 255, 255, 0.8); 
}

.select-icon { 
    position: absolute; 
    right: 16px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: rgba(255, 255, 255, 0.8); 
    pointer-events: none; 
    transition: color var(--transition-fast); 
}

.select-wrapper:hover .select-icon { 
    color: var(--white); 
}

.whatsapp-btn { 
    width: 100%; 
    background: linear-gradient(135deg, var(--whatsapp), #1ebd5a); 
    color: var(--white); 
    padding: 15px; 
    border: none; 
    border-radius: 50px; 
    font-size: 1.05rem; 
    font-weight: 700; 
    margin-top: 15px; 
    cursor: pointer; 
    transition: var(--transition); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px; 
    min-height: 50px; 
}

.whatsapp-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); 
}

/* ==========================================================================
   6. STATS & SEO CONTENT
   ========================================================================== */
.stats { 
    background: var(--primary-gradient); 
    padding: 4rem 0; 
    color: var(--white); 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    text-align: center; 
    gap: 30px; 
}

.stat-item h3 { 
    font-size: clamp(2.5rem, 4vw, 3.5rem); 
    color: var(--white); 
    font-weight: 800; 
    letter-spacing: -1px; 
    margin-bottom: 0.2rem; 
}

.stat-item p { 
    font-size: 1rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.seo-optimized-section { 
    background: var(--white); 
    padding: 6rem 0; 
    overflow: hidden; 
    position: relative; 
    border-bottom: 1px solid var(--border-color); 
}

.seo-content { 
    max-width: 900px; 
    margin: 0 auto; 
    text-align: left; 
}

.seo-content h2 { 
    font-size: clamp(2rem, 4vw, 2.75rem); 
    color: var(--secondary-color); 
    margin-bottom: 1.5rem; 
    letter-spacing: -0.02em; 
    text-align: center; 
}

.seo-content p { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: var(--text-light); 
    margin-bottom: 1.5rem; 
    text-align: center;
}

.seo-sub-box { 
    background: var(--bg-light); 
    border-left: 5px solid var(--primary-color); 
    padding: 25px; 
    margin: 30px 0; 
    border-radius: 0 var(--radius-md) var(--radius-md) 0; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition); 
}

.seo-sub-box:hover { 
    transform: translateY(-3px); 
    box-shadow: var(--shadow-md); 
    border-color: rgba(37, 99, 235, 0.6); 
}

.seo-sub-box h3 { 
    font-size: 1.4rem; 
    color: var(--secondary-color); 
    margin-bottom: 10px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.seo-sub-box h3 i { 
    color: var(--primary-color); 
}

.seo-sub-box p { 
    margin-bottom: 0; 
    font-size: 1.05rem; 
    text-align: left;
}

/* ==========================================================================
   7. SERVICES, WHY US & GALLERY GRIDS
   ========================================================================== */
.why-us-grid, 
.services-grid, 
.testimonial-grid, 
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 24px; 
}

.feature-item, 
.service-card { 
    background: var(--white); 
    padding: 30px; 
    border-radius: var(--radius-lg); 
    transition: var(--transition); 
    border: 1px solid var(--border-color); 
    box-shadow: var(--shadow-sm); 
}

.feature-item:hover, 
.service-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-lg); 
    border-color: rgba(37, 99, 235, 0.3); 
}

.feature-item { 
    display: flex; 
    gap: 16px; 
}

.feature-icon, 
.service-icon { 
    background: rgba(37, 99, 235, 0.08); 
    color: var(--primary-color); 
    border-radius: 16px; 
    transition: var(--transition); 
}

.feature-icon { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 56px; 
    height: 56px; 
    min-width: 56px; 
    font-size: 1.5rem; 
    flex-shrink: 0; 
}

.service-icon { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 70px; 
    height: 70px; 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
}

.feature-item:hover .feature-icon, 
.service-card:hover .service-icon { 
    background: var(--primary-gradient); 
    color: var(--white); 
    transform: scale(1.1); 
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.25); 
}

.feature-text h4, 
.service-card h3 { 
    font-size: 1.2rem; 
    margin-bottom: 10px; 
}

.services { 
    background: var(--bg-light); 
}

.gallery-item { 
    overflow: hidden; 
    height: 250px; 
    position: relative; 
    transition: var(--transition); 
    border: 1px solid var(--border-color); 
    border-radius: var(--radius-md); 
    background-color: var(--white); 
}

.gallery-item:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-lg); 
    border-color: var(--primary-color); 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.gallery-item:hover img { 
    transform: scale(1.05); 
}

/* ==========================================================================
   8. LOCATION TAGS & PARTNERS
   ========================================================================== */
.seo-areas { 
    background: var(--secondary-color); 
    color: var(--white); 
    text-align: center; 
    border-bottom: 5px solid var(--primary-color); 
}

.seo-areas h2 { 
    color: var(--white); 
    margin-bottom: 1rem; 
}

.seo-areas p { 
    max-width: 900px; 
    margin: 0 auto 2rem; 
    color: #cbd5e1; 
    font-size: 1.1rem; 
}

.area-tags { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 2rem; 
}

.area-tags span { 
    background: rgba(255, 255, 255, 0.1); 
    padding: 10px 20px; 
    border-radius: 50px; 
    font-size: 0.9rem; 
    font-weight: 500; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    transition: var(--transition); 
    cursor: default; 
}

.area-tags span:hover { 
    background: var(--primary-gradient); 
    transform: translateY(-2px); 
    border-color: transparent; 
}

.pan-india-text { 
    background: rgba(37, 99, 235, 0.15); 
    border: 1px solid rgba(37, 99, 235, 0.4); 
    padding: 15px 25px; 
    border-radius: var(--radius-md); 
    display: inline-block; 
    color: var(--white); 
    font-size: 1.1rem; 
    font-weight: 600;
}

.partners { 
    background: var(--white); 
    text-align: center; 
}

.partner-banner { 
    width: 100%; 
    max-width: 850px; 
    height: auto; 
    box-shadow: var(--shadow-md); 
    border-radius: var(--radius-md); 
    margin: 0 auto; 
    display: block; 
}

/* ==========================================================================
   9. FAQS (ACCORDION)
   ========================================================================== */
.faq-section { 
    background: var(--bg-light); 
}

.faq-container { 
    max-width: 850px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}

.faq-item { 
    background: var(--white); 
    border: 1px solid var(--border-color); 
    border-radius: var(--radius-md); 
    overflow: hidden; 
    transition: var(--transition); 
    box-shadow: var(--shadow-sm); 
}

.faq-item:hover { 
    box-shadow: var(--shadow-md); 
    border-color: rgba(37, 99, 235, 0.4); 
}

.faq-question { 
    padding: 20px 24px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    font-weight: 700; 
    font-size: 1.1rem; 
    color: var(--secondary-color); 
    background: var(--white); 
    border: none; 
    width: 100%; 
    text-align: left; 
    -webkit-tap-highlight-color: transparent; 
    min-height: 60px; 
    outline: none; 
    transition: background var(--transition-fast);
}

.faq-question:focus-visible { 
    background: rgba(37, 99, 235, 0.05); 
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

.faq-question i { 
    color: var(--primary-color); 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    font-size: 1.2rem; 
    flex-shrink: 0; 
    margin-left: 15px;
}

.faq-item.active { 
    border-color: var(--primary-color); 
    box-shadow: var(--shadow-md); 
}

.faq-item.active .faq-question { 
    background: rgba(37, 99, 235, 0.03); 
}

.faq-item.active .faq-question i { 
    transform: rotate(180deg); 
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    background: var(--white); 
    color: var(--text-main); 
}

.faq-answer-inner { 
    padding: 0 24px 20px 24px; 
    font-size: 1.05rem; 
    line-height: 1.7; 
    border-top: 1px solid transparent; 
}

.faq-item.active .faq-answer-inner { 
    border-top-color: var(--border-color); 
    padding-top: 20px; 
}

/* ==========================================================================
   10. TESTIMONIALS & REVIEWS
   ========================================================================== */
.star-rating-title { 
    margin-bottom: 2rem; 
}

.rating-subtext { 
    color: var(--text-light); 
    margin-top: 5px; 
}

.overall-rating { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    font-size: 2rem; 
    font-weight: 800; 
    color: var(--secondary-color); 
    margin-top: 10px;
}

.overall-rating .stars i { 
    color: var(--google-yellow); 
    font-size: 1.5rem; 
}

.testimonial-card { 
    display: flex; 
    flex-direction: column; 
    background: var(--white); 
    padding: 30px; 
    border-radius: 16px; 
    border: 1px solid var(--border-color); 
    transition: var(--transition); 
    height: 100%; 
}

.testimonial-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-md); 
    border-color: rgba(66, 133, 244, 0.3); 
}

.reviewer-info { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 12px; 
}

.reviewer-avatar { 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    background: var(--primary-color); 
    color: var(--white); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
    font-weight: 700; 
    flex-shrink: 0; 
}

.avatar-2 { background: #EA4335; }
.avatar-3 { background: #34A853; }

.reviewer-details h4 { 
    font-size: 1.05rem; 
    margin-bottom: 2px; 
}

.reviewer-details .post-date { 
    font-size: 0.85rem; 
    color: var(--text-light); 
}

.review-stars { 
    color: var(--google-yellow); 
    margin-bottom: 12px; 
    font-size: 1rem; 
}

.testimonial-text { 
    font-size: 1rem; 
    line-height: 1.6; 
    flex-grow: 1; 
}

/* ==========================================================================
   11. CONTACT & MAP SECTION
   ========================================================================== */
.contact-section { 
    background: var(--white); 
}

.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
}

.contact-info { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.info-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 20px; 
    background: var(--bg-light); 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--border-color); 
    transition: var(--transition); 
}

.info-item:hover { 
    border-color: var(--primary-color); 
    transform: translateX(5px); 
}

.info-item i { 
    font-size: 1.5rem; 
    color: var(--primary-color); 
    background: rgba(37, 99, 235, 0.08); 
    width: 50px; 
    height: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 12px; 
    flex-shrink: 0; 
}

.whatsapp-icon-color { 
    color: var(--whatsapp); 
}

.info-item h4 { 
    font-size: 1.1rem; 
    margin-bottom: 2px; 
}

.map-address { 
    font-style: normal; 
}

.footer-contact-phone { 
    font-weight: 700; 
    font-size: 1.1rem; 
    color: var(--text-main); 
}

.map-wrapper { 
    position: relative; 
    width: 100%; 
    min-height: 400px; 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    box-shadow: var(--shadow-sm); 
    border: 2px solid var(--border-color); 
}

.map-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    z-index: 10; 
    cursor: pointer; 
    background: transparent; 
}

.map-wrapper iframe { 
    width: 100%; 
    height: 100%; 
    border: none; 
    filter: contrast(1.1); 
}

.map-wrapper:hover iframe { 
    filter: contrast(1.1) brightness(0.9); 
    transition: filter var(--transition-fast); 
}

/* ==========================================================================
   12. FOOTER & FLOATING WIDGET
   ========================================================================== */
footer { 
    background: var(--secondary-color); 
    color: var(--white); 
    padding: 3rem 0 1.5rem; 
    text-align: center; 
}

footer p.footer-desc { 
    color: #94a3b8; 
    max-width: 600px; 
    margin: 0 auto 1.5rem; 
    font-size: 0.95rem; 
}

.footer-page-links { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    margin-bottom: 20px; 
}

.footer-page-links a { 
    color: #cbd5e1; 
    font-size: 0.95rem; 
    font-weight: 500; 
    text-decoration: underline; 
    text-decoration-color: transparent; 
    transition: var(--transition); 
    min-height: 44px; 
    display: inline-flex; 
    align-items: center;
}

.footer-page-links a:hover { 
    color: var(--primary-color); 
    text-decoration-color: var(--primary-color); 
}

.footer-social { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 1.5rem; 
}

.footer-social a { 
    width: 44px; 
    height: 44px; 
    background: rgba(255, 255, 255, 0.05); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    font-size: 1.1rem; 
    transition: var(--transition); 
}

.footer-social a:hover { 
    background: var(--primary-gradient); 
    color: var(--white); 
    transform: translateY(-3px); 
}

.footer-bottom { 
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
    padding-top: 1.5rem; 
    font-size: 0.9rem; 
    color: #64748b; 
}

.footer-dev-link { 
    color: var(--primary-color); 
}

.floating-widget { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    z-index: 999; 
    background: linear-gradient(135deg, var(--whatsapp), #1ebd5a); 
    color: var(--white); 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 2rem; 
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); 
    transition: var(--transition); 
}

.floating-widget:hover { 
    transform: scale(1.08) translateY(-5px); 
    color: var(--white); 
}

/* ==========================================================================
   13. ABOUT US PAGE COMPONENTS
   ========================================================================== */
:root {
    --accent-orange: #ea580c; 
    --accent-dark: #0f172a; 
    --line-color: #fed7aa; 
}

.accent-orange { color: var(--accent-orange) !important; }
.bg-light { background-color: var(--bg-light); }

.about-hero {
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.shifting-process {
    padding: 6rem 0;
    background: var(--white);
}

.process-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    gap: 20px;
}

.process-line {
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--line-color);
    z-index: 1;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-icon-box {
    width: 110px;
    height: 110px;
    background: var(--white);
    border-radius: 50%;
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 25px;
    transition: var(--transition);
}

.process-icon-box i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon-box {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.15);
}

.process-step:hover .process-icon-box i {
    transform: scale(1.1);
}

.process-number {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-dark);
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    border: 3px solid var(--white);
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 220px;
}

.service-locations {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.city-group {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.city-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.3);
}

.city-group h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.city-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.city-group ul li {
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.city-group ul li::before {
    content: "\f058"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.about-story {
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 1rem 0 1.5rem;
}

.story-text h2 span {
    color: var(--primary-color);
}

.story-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.story-stat-box h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.story-stat-box span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
}

.story-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-offset-bg {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

.story-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-cta {
    background: var(--bg-light);
    padding-bottom: 6rem;
}

.cta-content {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bg-white-btn {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.bg-white-btn:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ==========================================================================
   14. ADVANCED RESPONSIVE MEDIA QUERIES (Consolidated & Minified)
   ========================================================================== */

/* Tablet (Landscape) / Small Desktop */
@media (max-width: 1024px) {
    .hero-wrap { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px; 
    }
    .hero-content { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }
    .hero p { 
        max-width: 100%; 
    }
    .hero-buttons { 
        justify-content: center; 
    }
    .quote-form-container { 
        max-width: 650px; 
        margin: 0 auto; 
    }
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
}

/* Mid-Sized Layouts (About Page Grids) */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .image-offset-bg {
        top: 20px;
        right: -15px;
    }
}

/* Tablet (Portrait) / Large Phones (Unified 768px Ruleset) */
@media (max-width: 768px) {
    section { 
        padding: 3.5rem 0; 
    }
    .section-title { 
        margin-bottom: 2.5rem; 
    }
    .stats-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
        padding: 0 1rem; 
    }
    .stat-item h3 { 
        font-size: 3rem; 
    }
    .hero { 
        padding: 100px 0 40px; 
        min-height: auto; 
    }
    .hero h1 { 
        font-size: clamp(2rem, 8vw, 2.5rem); 
    }
    .quote-form-container { 
        padding: 25px; 
    }
    .form-grid { 
        grid-template-columns: 1fr; 
    }
    .form-group.full-width { 
        grid-column: span 1; 
    }
    .gallery-grid { 
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    }
    .gallery-item { 
        height: 200px; 
    }
    .nav-call-btn { 
        display: none; 
    }
    .hamburger { 
        display: flex; 
    }
    .header-logo img { 
        max-height: 40px; 
    }
    .mobile-only { 
        display: block; 
    }
    .mobile-phone-link { 
        color: var(--primary-color) !important; 
        font-weight: 700; 
    }
    .nav-links { 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: var(--white); 
        flex-direction: column; 
        padding: 20px; 
        display: none; 
        border-top: 1px solid var(--border-color); 
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
    }
    .nav-links.active { 
        display: flex; 
    }
    .nav-links a { 
        width: 100%; 
        padding: 12px 0; 
        text-align: center; 
        display: block; 
        min-height: 48px;
    }
    .pan-india-text { 
        font-size: 1rem; 
        padding: 12px 20px; 
        width: 100%; 
    }
    .map-wrapper { 
        min-height: 300px; 
    }
    .floating-widget { 
        width: 55px; 
        height: 55px; 
        font-size: 1.8rem; 
        bottom: 15px; 
        right: 15px; 
    }

    /* About Page Mobile Fixes */
    .about-hero {
        padding: 130px 0 60px;
    }
    .process-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .process-line {
        display: none; 
    }
    .process-step p {
        max-width: 100%;
    }
    .story-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .story-stat-box {
        padding-bottom: 15px;
        border-bottom: 1px solid var(--border-color);
    }
    .story-stat-box:last-child {
        border-bottom: none;
    }
    .cta-content {
        padding: 40px 20px;
    }
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero-buttons { 
        flex-direction: column; 
        width: 100%; 
    }
    .hero-buttons .btn { 
        width: 100%; 
    }
    .feature-item { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
    .info-item { 
        flex-direction: column; 
        text-align: center; 
    }
    .seo-sub-box { 
        border-left: none; 
        border-top: 5px solid var(--primary-color); 
        border-radius: 0 0 var(--radius-md) var(--radius-md); 
        padding: 20px 15px; 
        text-align: center; 
    }
    .seo-sub-box h3 { 
        flex-direction: column; 
        text-align: center; 
    }
    .seo-sub-box p { 
        text-align: center; 
    }
}