/* -------------------------------------------------------------
   SRI VENKATESHWARA SEPTIC TANK CLEANING - STYLESHEET
   ------------------------------------------------------------- */

/* --- Custom Variables (Design System) --- */
:root {
    /* Color Palette (HSL) */
    --primary: hsl(175, 75%, 35%);        /* Sanitization Teal */
    --primary-light: rgb(213, 248, 244);
    --primary-dark: hsl(175, 80%, 25%);
    --secondary: hsl(215, 25%, 12%);      /* Premium Deep Slate Blue */
    --secondary-light: hsl(215, 15%, 20%);
    --accent: hsl(38, 90%, 50%);          /* Spiritual/Deity Gold Accents */
    --accent-hover: hsl(38, 95%, 45%);
    
    --bg-light: hsl(210, 20%, 98%);       /* Background Light */
    --bg-card: hsl(0, 0%, 100%);
    --border-color: hsl(214, 32%, 91%);
    
    /* Text Colors */
    --text-main: hsl(215, 25%, 15%);
    --text-muted: hsl(215, 12%, 42%);
    --text-light: hsl(0, 0%, 95%);
    
    /* Layout & Effects */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.15);
    
    --navbar-height: 96px;
}

/* --- Base Resets & Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Shared Typography & UI Components --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-tagline {
    display: inline-block;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 4px 12px;
    background-color: var(--primary-light);
    border-radius: 50px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background-color: white;
    color: var(--secondary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--secondary);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
    border-radius: var(--border-radius-md);
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* --- Header / Navigation Bar --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

/* Logo styling */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Nav links */
.desktop-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    transition: color var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.nav-cta .cta-button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.03);
}

.nav-cta .cta-button .button-icon {
    width: 16px;
    height: 16px;
}

/* Mobile drawer controls */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

.mobile-menu-toggle .menu-icon-close {
    display: none;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-card);
    z-index: 99;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid var(--border-color);
    visibility: hidden;
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
}

.drawer-divider {
    margin: 24px 0;
    border: 0;
    border-top: 1px solid var(--border-color);
}

.drawer-contact-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.drawer-phone-link {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.drawer-phone-link .phone-name {
    color: var(--primary);
    margin-right: 8px;
}

/* --- Hero Section & Callback Form --- */
.hero-section {
    position: relative;
    padding-top: calc(var(--navbar-height) + 60px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, hsl(215, 25%, 15%) 0%, hsl(215, 30%, 8%) 100%);
    background-image: url('../assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 40%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-accent {
    background-color: var(--accent);
    color: var(--secondary);
}

.badge-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-title {
    font-size: 48px;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), hsl(175, 75%, 50%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.glow-btn {
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.4);
}

.glow-btn:hover {
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.6);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.60);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Glassmorphism Form Card */
.glass-form-card {
    background: rgba(30, 41, 59, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    color: white;
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 28px;
    text-align: center;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(15, 23, 42, 0.4);
    color: white;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: all var(--transition-fast);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background-color: rgba(15, 23, 42, 0.6);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25);
}

.form-group select option {
    background-color: var(--secondary-light);
    color: white;
}

/* --- Services Grid Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    transform: scaleY(0);
    transition: transform var(--transition-normal);
    transform-origin: top;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(20, 184, 166, 0.2);
    background-color: white;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-name {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--primary-dark);
}

/* --- Service Areas & Animated Map --- */
.areas-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(215, 25%, 16%) 0%, hsl(215, 30%, 10%) 100%);
    color: white;
    overflow: hidden;
}

.areas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tag-light {
    color: var(--accent);
    background-color: rgba(217, 119, 6, 0.12);
}

.title-light {
    color: white;
}

.desc-light {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.area-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.area-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.area-badge:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: scale(1.02);
}

.badge-icon-svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.areas-alert {
    padding: 20px;
    background-color: rgba(20, 184, 166, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-size: 15px;
}

.areas-alert a {
    color: var(--accent);
    font-weight: 700;
    display: inline-block;
    margin-left: 6px;
}

.areas-alert a:hover {
    text-decoration: underline;
}

/* Map CSS graphic */
.map-graphic-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1.2 / 1;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 0),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 24px 24px;
    background-position: center;
}

.pulse-point {
    position: absolute;
    width: 12px;
    height: 12px;
}

.pulse-ring {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: mapPulse 2s infinite ease-out;
    opacity: 0;
}

.pulse-core {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.point-label {
    position: absolute;
    top: -6px;
    left: 20px;
    background-color: var(--secondary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Position points representing Hyderabad sub-regions layout */
.point-gachibowli { top: 30%; left: 25%; }
.point-gachibowli .pulse-core, .point-gachibowli .pulse-ring { background-color: var(--accent); border-color: var(--accent); }
.point-gachibowli .pulse-core { box-shadow: 0 0 10px var(--accent); }

.point-hitech { top: 22%; left: 45%; }
.point-shamshabad { top: 78%; left: 55%; }
.point-shamshabad .pulse-core, .point-shamshabad .pulse-ring { background-color: var(--accent); border-color: var(--accent); }
.point-shamshabad .pulse-core { box-shadow: 0 0 10px var(--accent); }

.point-hyderabad { top: 45%; left: 70%; }

@keyframes mapPulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* --- Why Choose Us (Trust Signals) --- */
.why-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.why-image-card {
    position: relative;
}

.truck-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.truck-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: brightness(0.95);
}

.truck-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 20px;
    color: white;
}

.badge-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
}

.badge-subtitle {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Features checklist */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-bullet {
    width: 32px;
    height: 32px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-bullet svg {
    width: 18px;
    height: 18px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 15px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.client-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary);
}

.client-location {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    color: var(--secondary);
    cursor: pointer;
    outline: none;
}

.faq-icon-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

.faq-question .minus-icon {
    display: none;
}

.faq-question[aria-expanded="true"] .plus-icon {
    display: none;
}

.faq-question[aria-expanded="true"] .minus-icon {
    display: block;
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 15px;
    display: none;
}

.faq-item:hover {
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: var(--shadow-sm);
}

/* --- Call To Action Banner Section --- */
.cta-banner-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-card);
}

.cta-banner-card {
    background: linear-gradient(135deg, var(--secondary) 0%, hsl(215, 30%, 8%) 100%);
    border-radius: var(--border-radius-lg);
    padding: 56px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-banner-title {
    color: white;
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-banner-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.cta-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
}

.phone-cta-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-fast);
}

.phone-cta-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.phone-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.phone-num-style {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-info .logo-link {
    margin-bottom: 24px;
}

.footer-info .logo-text {
    background: linear-gradient(to right, white, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-owner p {
    font-size: 14px;
    color: white;
    margin-bottom: 8px;
}

.footer-owner strong {
    color: var(--accent);
}

.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links a {
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-seo-credits {
    color: rgba(255, 255, 255, 0.3);
}

/* --- Floating Mobile Actions Bar --- */
.mobile-actions-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--secondary);
    display: none;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    z-index: 101;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

.phone-btn {
    background-color: var(--primary);
}

.phone-btn:hover {
    background-color: var(--primary-dark);
}

.whatsapp-btn {
    background-color: #25D366; /* Official WhatsApp color */
}

.whatsapp-btn:hover {
    background-color: #1ebd59;
}

.action-icon {
    width: 20px;
    height: 20px;
}

/* --- Media Queries (Responsiveness) --- */

@media (max-width: 1024px) {
    .desktop-nav,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .site-header {
        height: 80px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon,
    .logo-img {
        width: 72px;
        height: 72px;
    }
    
    .mobile-drawer {
        top: 80px;
    }
    
    .hero-section {
        padding-top: calc(80px + 40px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 36px auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .hero-form-container {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .areas-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-image-card {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        /* Add bottom padding to account for floating actions bar */
        padding-bottom: 60px;
    }
    
    .services-section,
    .why-section,
    .areas-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .truck-photo {
        height: 320px;
    }
    
    .hero-section {
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-banner-card {
        padding: 36px 20px;
    }
    
    .cta-banner-title {
        font-size: 26px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .mobile-actions-bar {
        display: grid;
    }
}

@media (max-width: 480px) {
    .container,
    .hero-container {
        padding: 0 16px;
    }

    .truck-photo {
        height: 240px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .badge-container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .glass-form-card {
        padding: 24px 16px;
    }
    
    .area-badges {
        grid-template-columns: 1fr;
    }
}
