/* =========================================================
   MYINSTANTCOOL
   HOME PAGE STYLES
========================================================= */

/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #FFFFFF; /* White Background (60%) */
    color: #1A2430; /* Ink Body Text */
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   VARIABLES & PALETTE MAPPING
========================================================= */

:root {
    /* Primary Colors */
    --navy-primary: #0A2240;  /* Deep Navy: Header, nav, footer, cards, hero cover */
    --accent-blue: #4FA3E3;   /* Energy Blue: WhatsApp CTAs, links, icons, highlights (10%) */
    --logo-ice: #92D3F5;      /* Ice Blue: Accent fill on navy background */
    --surface-bg: #E9F2F8;    /* Pale Blue-Gray: Cards & Section Backgrounds (30%) */
    
    /* Supporting Neutrals */
    --navy-hover: #10417A;    /* Deep Blue: Hover states, sub-headers */
    --text-ink: #1A2430;      /* Ink: Body text on white */
    --text-muted: #5A6B7A;    /* Muted: Captions, secondary text */
    --line-border: #CBDCEB;   /* Line: Dividers, table borders */
    --white: #FFFFFF;         /* Background / Whitespace */
    --status-green: #28A745;  /* Status Green: Open / success */

    --radius: 16px;
    --container: 1200px;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}



/* =========================================================
   HERO
========================================================= */

/* =========================================================
   HERO SECTION STYLES (VIDEO BG ADJUSTED RIGHT TO LEFT)
========================================================= */

.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 90px;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white, #FFFFFF);
    overflow: hidden;
}

/* Video Background (Positioned to display properly from Right to Left) */
/* Video Background (Zoomed Out & Positioned Right to Left) */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    /* Zoom Out adjustment: scale(0.75) lowers the size of the video */
    transform: translate(-50%, -50%) scale(0.75); 
    object-fit: cover;
    object-position: 85% center;
}

/* Outer Hero background color for zoomed out video edges */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 90px;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white, #FFFFFF);
    overflow: hidden;
    background-color: #0A2240; /* Dark fallback background for zoom out spacing */
}
/* 40% Dark Overlay Opacity */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 34, 64, 0.45);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Left Content Styles */
.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 650px; /* Gives perfect layout space for text */
}

.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(10, 34, 64, 0.65);
    border: 1px solid #4FA3E3;
    color: #92D3F5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    width: fit-content;
}

.hero h1 {
    font-size: clamp(36px, 4.5vw, 54px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 12px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    display: block;
    color: #92D3F5;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #4FA3E3;
    margin-bottom: 14px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 15px;
    color: #F0F6FA;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 580px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 34, 64, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.hero-point .check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: #4FA3E3;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #4FA3E3;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(79, 163, 227, 0.4);
}

.btn-primary:hover {
    background: #3B8ECB;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(10, 34, 64, 0.65);
    border: 1px solid #CBDCEB;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-trust {
    display: flex;
    gap: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #92D3F5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-actions, .hero-trust {
        justify-content: center;
    }

    .hero-video-bg {
        object-position: center;
    }
}

/* =========================================================
   QUICK STATS
========================================================= */

.quick-stats {
    background: var(--surface-bg);
    border-bottom: 1px solid var(--line-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--line-border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item strong {
    color: var(--navy-primary);
    font-size: 24px;
    font-weight: 900;
}

.stat-item span {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}


/* =========================================================
   SECTIONS & HEADINGS
========================================================= */

.section {
    padding: 90px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    margin-top: 10px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    color: var(--navy-primary);
    font-weight: 900;
}

.section-heading h2 span {
    color: var(--navy-hover);
}

.section-heading p {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   PROBLEM SECTION
========================================================= */

.problem-section {
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.problem-card {
    padding: 30px 24px;
    background: var(--surface-bg);
    border: 1px solid var(--line-border);
    border-radius: var(--radius);
    transition: transform 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.problem-number {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 800;
    margin-bottom: 10px;
}

.problem-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--navy-primary);
    color: var(--logo-ice);
    font-size: 20px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--navy-primary);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.safety-notice {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 40px;
    padding: 20px;
    background: #FFF9E6;
    border: 1px solid #FFE58F;
    border-radius: 12px;
}

.safety-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FAAD14;
    color: var(--white);
    font-weight: 900;
}

.safety-notice strong {
    color: #D48806;
    font-size: 14px;
}

.safety-notice p {
    color: var(--text-ink);
    font-size: 13px;
    margin-top: 2px;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    background: var(--surface-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line-border);
    border-radius: var(--radius);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
}

.service-card.featured {
    border: 2px solid var(--accent-blue);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--accent-blue);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--surface-bg);
    color: var(--accent-blue);
    font-size: 20px;
}

.service-arrow {
    color: var(--text-muted);
    font-size: 20px;
}

.service-card:hover .service-arrow {
    color: var(--accent-blue);
}

.service-tag {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.service-card h3 {
    color: var(--navy-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.service-price {
    color: var(--navy-primary);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 6px;
}

.service-price small {
    color: var(--text-muted);
    font-size: 11px;
}

.second-price {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.service-card > p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-hover {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--line-border);
}

.service-hover strong {
    color: var(--navy-primary);
    font-size: 12px;
}

.service-hover ul {
    list-style: none;
    margin: 8px 0;
}

.service-hover li {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.service-hover li::before {
    content: "✓ ";
    color: var(--accent-blue);
    font-weight: 800;
}

.learn-more {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   CLEAN NOTE
========================================================= */

.clean-note-section {
    padding-top: 0;
    background: var(--surface-bg);
}

.clean-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line-border);
}

.clean-note-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface-bg);
    color: var(--accent-blue);
    font-weight: 900;
}

.clean-note h3 {
    color: var(--navy-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.clean-note p {
    color: var(--text-muted);
    font-size: 13px;
}

/* =========================================================
   CLEAN & ROUNDED PRICING TABLE (MATCHING IMAGE DESIGN)
========================================================= */

/* Main Section Wrapper */
.pricing-container {
    background: transparent;
    padding: 10px 0;
    margin-bottom: 20px;
}

.pricing-container h2 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.pricing-container p {
    font-size: 14.5px;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Table Wrapper for Rounded Card Look */
.table-responsive {
    width: 100%;
    margin: 16px 0;
    border-radius: 16px; /* Smooth rounded corners */
    border: 1px solid #E5E7EB;
    overflow: hidden; /* Header aur rows ke corners clip hone ke liye */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
}

/* Table Headers (Blue Banner Style) */
.price-table th {
    background: linear-gradient(90deg, #0284C7, #0369A1); /* Modern Blue Gradient */
    color: #FFFFFF;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 18px;
    border: none;
}

/* Table Data Cells */
.price-table td {
    padding: 14px 18px;
    font-size: 14.5px;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
}

/* Zebra Striping (Light grey alternate rows) */
.price-table tbody tr:nth-child(even) {
    background-color: #F9FAFB;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* Alignments & Highlights */
.text-right {
    text-align: right;
}

.highlight-price {
    font-weight: 700;
    color: #111827;
}

.pricing-note {
    font-size: 13.5px;
    color: #6B7280;
    margin-top: 16px;
    line-height: 1.6;
}

/* Mobile Friendly Optimization */
@media (max-width: 768px) {
    .pricing-container h2 {
        font-size: 20px;
    }

    .price-table th, 
    .price-table td {
        padding: 12px 14px;
        font-size: 13.5px;
    }
}

/* =========================================================
   INSTALLATION
========================================================= */

.installation-section {
    background: var(--surface-bg);
}

.installation-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.installation-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--navy-primary);
    margin-bottom: 18px;
}

.installation-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 16px;
}

.installation-box {
    padding: 35px;
    border-radius: var(--radius);
    background: var(--navy-primary);
    color: var(--white);
}

.installation-box-header span {
    color: var(--logo-ice);
    font-size: 11px;
    font-weight: 800;
}

.installation-box-header strong {
    color: var(--white);
    font-size: 36px;
    display: block;
}

.installation-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.included-title {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.included-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.included-list li {
    color: var(--line-border);
    font-size: 13px;
}

.included-list span {
    color: var(--accent-blue);
    margin-right: 8px;
}

.installation-box small {
    color: var(--text-muted);
    font-size: 11px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-main-card {
    padding: 40px;
    border-radius: var(--radius);
    background: var(--navy-primary);
    color: var(--white);
    text-align: center;
}

.about-symbol {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--logo-ice);
    font-size: 40px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 auto 20px;
}

.about-word {
    font-size: 22px;
    font-weight: 900;
}

.about-main-card p {
    color: var(--line-border);
    font-size: 13px;
    margin-top: 8px;
}

.about-floating-card {
    margin-top: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    background: var(--surface-bg);
    border: 1px solid var(--line-border);
    text-align: center;
}

.about-floating-card strong {
    display: block;
    color: var(--navy-primary);
    font-size: 24px;
}

.about-floating-card span {
    color: var(--text-muted);
    font-size: 11px;
}

.about-content h2 {
    color: var(--navy-primary);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 18px;
}

.about-content > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.value-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--line-border);
}

.value-item > span {
    color: var(--accent-blue);
    font-weight: 800;
}

.value-item strong {
    color: var(--navy-primary);
    font-size: 14px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 12px;
}


/* =========================================================
   WHY US
========================================================= */

.why-section {
    background: var(--surface-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    padding: 25px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line-border);
}

.why-number {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-card h3 {
    color: var(--navy-primary);
    font-size: 16px;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 12px;
}


/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
    padding: 90px 0;
    background: var(--navy-primary);
    color: var(--white);
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 50px;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 46px);
    margin-top: 10px;
    color: var(--white);
}

.cta-content p {
    color: var(--line-border);
    font-size: 15px;
    margin-top: 15px;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-action strong {
    color: var(--logo-ice);
    font-size: 18px;
    margin-top: 15px;
}

.cta-action small {
    color: var(--line-border);
    font-size: 11px;
    margin-top: 4px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--line-border);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    color: var(--navy-primary);
    font-size: 16px;
    font-weight: 700;
}

.faq-item summary span {
    color: var(--accent-blue);
    font-size: 20px;
}

.faq-answer {
    padding-bottom: 22px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
}


/* =========================================================
   NEXT STEPS
========================================================= */

.next-section {
    background: var(--surface-bg);
}

.next-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.next-card {
    padding: 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--line-border);
}

.next-card > span {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 800;
}

.next-card strong {
    color: var(--navy-primary);
    font-size: 13px;
}

.next-card small {
    color: var(--text-muted);
    font-size: 10px;
}


/* =========================================================
   COVERAGE
========================================================= */

.coverage-section {
    padding: 70px 0;
    background: var(--white);
    border-top: 1px solid var(--line-border);
}

.coverage-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.coverage-content h2 {
    color: var(--navy-primary);
    font-size: 36px;
}

.coverage-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 10px;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coverage-tags span {
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--surface-bg);
    border: 1px solid var(--line-border);
    color: var(--navy-primary);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   OFFERS
========================================================= */

.offers-section {
    background: var(--surface-bg);
}

.offer-box {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 25px;
    align-items: center;
    padding: 35px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line-border);
}

.offer-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--navy-primary);
    color: var(--logo-ice);
    font-size: 24px;
    font-weight: 900;
}

.offer-content h2 {
    color: var(--navy-primary);
    font-size: 24px;
}

.offer-content p {
    color: var(--text-muted);
    font-size: 13px;
}

.offer-note {
    margin-top: 6px;
    color: var(--text-muted) !important;
    font-size: 11px !important;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding-top: 70px;
    background: var(--navy-primary);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-brand p {
    color: var(--line-border);
    font-size: 12px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--logo-ice);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links a {
    color: var(--line-border);
    font-size: 12px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-contact strong {
    color: var(--white);
    font-size: 16px;
}

.footer-contact p {
    color: var(--line-border);
    font-size: 12px;
}

.footer-whatsapp {
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 800;
}

.footer-bottom {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--line-border);
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .services-grid, .problem-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .next-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .site-header { position: relative; }
    .nav-container { height: auto; padding: 15px 0; flex-wrap: wrap; }
    .main-nav { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; }
    .hero-grid, .installation-grid, .about-grid, .coverage-content, .cta-box { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid var(--line-border); }
    .offer-box { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .problem-grid, .services-grid, .pricing-grid, .why-grid, .next-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; }
}

/* =========================================================
   GENERAL CLEANING PAGE STYLING
========================================================= */

.page-hero {
    background: #0A2240;
    color: #FFFFFF;
    padding: 120px 0 50px 0;
    text-align: center;
}

.page-hero .badge {
    background: #FF6B00;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: 36px;
    margin: 15px 0;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    color: #CBD5E1;
}

.content-section {
    padding: 50px 0;
    background: #F8FAFC;
    color: #1E293B;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.highlight-card {
    border-left: 5px solid #2563EB;
}

.info-card h2 {
    font-size: 24px;
    color: #0F172A;
    margin-bottom: 12px;
}

.info-card .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 15px;
}

.feature-list, .check-list, .links-list {
    margin: 20px 0;
    padding-left: 20px;
}

.feature-list li, .check-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.links-list li {
    margin-bottom: 8px;
}

.links-list a {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
}

.links-list a:hover {
    text-decoration: underline;
}

/* PRICING TABLE */
/* =========================================================
   PRICING SECTION & RESPONSIVE TABLE STYLES
========================================================= */

.pricing-container {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pricing-container h2 {
    font-size: 22px;
    color: #0F172A;
    margin-bottom: 10px;
}

.pricing-container p {
    font-size: 14.5px;
    color: #475569;
    margin-bottom: 18px;
    line-height: 1.5;
}

.pricing-container h3 {
    font-size: 16px;
    color: #1E293B;
    margin-top: 15px;
    margin-bottom: 12px;
}

/* Scrollable Container for Mobile */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    margin: 16px 0;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px; /* Forces scroll instead of squishing columns */
    background: #FFFFFF;
}

.price-table th, 
.price-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
    font-size: 14.5px;
}

.price-table th {
    background: #F8FAFC;
    color: #0F172A;
    font-weight: 700;
    white-space: nowrap;
}

/* Zebra Striping for readability */
.price-table tbody tr:nth-child(even) {
    background-color: #F8FAFC;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.highlight-price {
    color: #2563EB;
    font-weight: 800;
    font-size: 15px;
}

/* =========================================================
   MOBILE RESPONSIVE ADJUSTMENTS (<= 768px)
========================================================= */
@media (max-width: 768px) {
    .pricing-container {
        padding: 16px; /* Reduced container padding for mobile width */
    }

    .pricing-container h2 {
        font-size: 19px;
    }

    .pricing-container p {
        font-size: 13.5px;
    }

    .price-table th, 
    .price-table td {
        padding: 10px 12px; /* Compact padding */
        font-size: 13px;
    }

    .highlight-price {
        font-size: 14px;
    }
}

/* FAQ SECTION */
.faq-container {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F1F5F9;
}

.faq-item h4 {
    font-size: 16px;
    color: #0F172A;
    margin-bottom: 8px;
}

/* BUTTON & CONTACT */
.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s ease;
}

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

.contact-box {
    background: #0A2240;
    color: #FFFFFF;
    padding: 35px;
    border-radius: 10px;
}

.contact-box h2 {
    color: #FFFFFF;
}

.contact-box .phone {
    font-size: 18px;
    margin: 15px 0;
}

.promo-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.promo-box h3 {
    color: #4FA3E3;
    margin-bottom: 10px;
}

/* =========================================================
   ADDITIONAL TABLE & HELPER STYLES (CHEMICAL CLEANING)
========================================================= */

.table-caption {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.table-note {
    font-size: 13px;
    color: #64748B;
    margin-top: 10px;
    line-height: 1.5;
}

.margin-top-large {
    margin-top: 35px !important;
}

.margin-top {
    margin-top: 20px !important;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* ================= FOOTER STYLES ================= */
.site-footer {
    background-color: #07111e;
    color: #94a3b8;
    padding: 50px 0 20px 0;
    margin-top: 50px;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
}

/* ================= ELEGANT 2-COLUMN FORM STYLING ================= */
.form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
    max-width: 750px; /* Slightly wider for 2 columns */
    margin: 0 auto;
}

/* Form Grid System */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Equal Columns */
    gap: 18px 20px; /* Vertical & Horizontal spacing */
}

/* Full Width spanning for Message & Button */
.full-width {
    grid-column: span 2;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    color: #1e293b;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
}

/* Mobile Responsive Adjustment */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr; /* Switch back to 1 column on mobile */
    }
    .full-width {
        grid-column: span 1;
    }
    .form-card {
        padding: 25px 20px;
    }
}

/* ================= 2-COLUMN GRID FIX ================= */
.form-grid-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 20px !important;
}

.form-grid-wrapper .full-width-span {
    grid-column: 1 / -1 !important;
}

.form-group {
    margin-bottom: 0 !important;
}

.form-group label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 6px !important;
}

.form-control {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background-color: #f8fafc !important;
    box-sizing: border-box !important;
}

.form-control:focus {
    outline: none !important;
    border-color: #2563eb !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.btn-submit {
    width: 100% !important;
    padding: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: #2563eb !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.btn-submit:hover {
    background: #1d4ed8 !important;
}

/* Responsive adjustment for Mobile Phones */
@media (max-width: 640px) {
    .form-grid-wrapper {
        grid-template-columns: 1fr !important;
    }
}

/* ================= FLOATING WHATSAPP BUTTON ================= */
.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    bottom: 25px !important;
    right: 25px !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, background-color 0.2s ease !important;
}

.whatsapp-float:hover {
    background-color: #128c7e !important;
    transform: scale(1.1) !important;
}

.wa-icon {
    width: 35px !important;
    height: 35px !important;
    display: block !important;
}

/* Mobile Devices */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    .wa-icon {
        width: 30px !important;
        height: 30px !important;
    }
}
/* ================= HEADER BASE STYLES ================= */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #0056b3;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================= MOBILE RESPONSIVE STYLES ================= */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex; /* Mobile par hamburger show ho */
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none; /* Default state: hidden */
    }

    /* JavaScript toggle class */
    .nav-menu.active {
        display: flex;
    }
}