/* ==========================================================================
   PREMIUM WARM DESIGN SYSTEM (PROACTIVE INDIA)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
    /* 3 Core Theme Colors (Warm Dark, Eco Green, Solar Gold) */
    --theme-dark: hsl(150, 24%, 14%);       /* Primary Warm Dark Slate */
    --theme-green: hsl(145, 63%, 42%);      /* Secondary Eco Green */
    --theme-gold: hsl(38, 95%, 52%);        /* Accent Bright Gold/Amber */
    
    /* Layout Helpers mapped to Core Colors */
    --eco-green-dark: var(--theme-dark);
    --eco-green: var(--theme-green);
    --solar-amber: var(--theme-gold);
    --solar-gold: var(--theme-gold);
    
    --steel-slate: hsl(210, 15%, 28%);
    --bg-warm-light: hsl(36, 30%, 97%);     /* Very warm ivory/cream base */
    --bg-white: hsl(36, 20%, 99%);          /* Warm soft white */
    --text-dark: #1e2522;
    --text-muted: #5e6b64;
    --border-color: #e5e0d5;
    --accent-gold-light: hsl(38, 70%, 94%);
    
    /* Layout Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1140px;
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    --shadow-premium: 0 4px 20px rgba(40, 30, 20, 0.04);
    --shadow-hover: 0 10px 30px rgba(40, 30, 20, 0.08);
}

/* Base Reset & Animation Kill */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Force disable all animations and transitions */
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-warm-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.serif-text {
    font-family: var(--font-serif);
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   MULTI-LINGUAL DISPLAY SWITCH
   ========================================================================== */
body.lang-en .lang-mr {
    display: none !important;
}

body.lang-mr .lang-en {
    display: none !important;
}

/* Inline Elements Switch */
span.lang-en, span.lang-mr {
    display: inline;
}
body.lang-en span.lang-mr {
    display: none !important;
}
body.lang-mr span.lang-en {
    display: none !important;
}

/* ==========================================================================
   CONTAINERS & SPACING
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 48px 0; /* Cozy and warm padding */
}

/* Decorative Section Dividers */
.divider {
    height: 1px;
    background-color: var(--border-color);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.01);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    position: relative;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 14px;
    order: 1;
}

.logo-icon-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: #004088; /* Visiting card royal blue */
}

.logo-text p {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    order: 2;
    margin-left: auto;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--eco-green);
    border-bottom-color: var(--eco-green);
}

/* Language Toggle Button styling */
.lang-toggle-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--bg-warm-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 3px;
    cursor: pointer;
    user-select: none;
}

.desktop-lang {
    display: flex;
}

.mobile-lang {
    display: none;
}

.lang-btn {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
}

body.lang-en .lang-btn.btn-en {
    background-color: var(--eco-green);
    color: var(--bg-white);
}

body.lang-mr .lang-btn.btn-mr {
    background-color: var(--solar-amber);
    color: var(--bg-white);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    background: linear-gradient(180deg, var(--accent-gold-light) 0%, var(--bg-warm-light) 100%);
    padding: 48px 0; /* Reduced padding for cozy feel */
}

.flipped-layout {
    background: linear-gradient(180deg, var(--bg-warm-light) 0%, var(--accent-gold-light) 100%) !important;
}

.flipped-layout .hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
}

.founder-img-rect {
    width: 140px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid var(--solar-amber);
    box-shadow: var(--shadow-premium);
    margin: 0 auto 20px auto;
    display: block;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--eco-green-dark);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--eco-green-dark);
}

.hero-title span.solar-highlight {
    color: var(--solar-amber);
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Images & Content Images */
.img-container {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-premium);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-block .img-container {
    height: 380px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--eco-green-dark);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--eco-green);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-warm-light);
    border-color: var(--text-dark);
}

.btn-solar {
    background-color: var(--solar-amber);
    color: var(--bg-white);
}

.btn-solar:hover {
    background-color: var(--solar-gold);
}

.btn-brand {
    background-color: #004088;
    color: var(--bg-white);
    border: 1px solid #004088;
}

.btn-brand:hover {
    background-color: #002d62;
    border-color: #002d62;
}

/* ==========================================================================
   GATEWAY CARDS (HOMEPAGE)
   ========================================================================== */
.gateway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.gateway-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.gateway-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--text-muted);
}

.gateway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

.gateway-card.solar-card::before {
    background: linear-gradient(to right, var(--solar-amber), var(--theme-green));
}

.gateway-card.materials-card::before {
    background: linear-gradient(to right, var(--steel-slate), var(--theme-dark));
}

.gateway-icon {
    font-size: 36px;
    margin-bottom: 24px;
}

.gateway-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--eco-green-dark);
}

.gateway-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 32px;
    flex-grow: 1;
    line-height: 1.7;
}

.brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.brand-pill {
    background-color: var(--bg-warm-light);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   FLYER SHOWCASE SECTION
   ========================================================================== */
.flyer-preview-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-premium);
}

.flyer-preview-card img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.flyer-preview-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--eco-green-dark);
}

/* ==========================================================================
   BRAND LOGOS SHOWCASE
   ========================================================================== */
.brand-showcase-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
}

.showcase-title {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 700;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.brand-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    width: 160px;
    height: 80px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.brand-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.brand-logo-card.tata { border-top: 3px solid #005a9c; }
.brand-logo-card.fujiyama { border-top: 3px solid #8cc63f; }
.brand-logo-card.waaree { border-top: 3px solid #ee3b24; }
.brand-logo-card.sudarshan { border-top: 3px solid #ffcc00; }
.brand-logo-card.kamdhenu { border-top: 3px solid #c1272d; }
.brand-logo-card.ambuja { border-top: 3px solid #009245; }
.brand-logo-card.chettinad { border-top: 3px solid #1c75bc; }
.brand-logo-card.wonder { border-top: 3px solid #ff9900; }

/* ==========================================================================
   OFFERINGS & SPECS GRIDS
   ========================================================================== */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offering-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

.offering-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--eco-green-dark);
}

.offering-card .badge {
    align-self: flex-start;
    background-color: var(--accent-gold-light);
    color: var(--solar-amber);
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offering-card.solar .badge {
    background-color: hsl(150, 40%, 94%);
    color: var(--eco-green);
}

.offering-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.7;
}

.offering-benefits {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.offering-benefits li {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.offering-benefits li span {
    font-size: 16px;
    line-height: 1;
}

/* ==========================================================================
   TABLES & INFO PANELS
   ========================================================================== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* smooth momentum scrolling on iOS */
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    margin: 24px 0;
    box-shadow: var(--shadow-premium);
}

.table-responsive table {
    min-width: 750px; /* Force minimum width to prevent text wrap squishing & bleeding */
    width: 100%;
    border-collapse: collapse;
}

table th {
    background-color: var(--eco-green-dark);
    color: var(--bg-white);
    padding: 20px 24px;
    font-weight: 700;
    text-align: left;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3.5px solid var(--theme-gold); /* Premium Gold Accent bar */
}

table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    line-height: 1.6;
    vertical-align: middle;
    word-break: normal;
    overflow-wrap: break-word; /* Prevents text overflow bleeding */
}

table tr:nth-child(even) td {
    background-color: hsl(36, 25%, 96%); /* Premium warm alternate striping */
}

/* Spec Box info elements */
.spec-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-premium);
}

.spec-box.gold-accent {
    border-left: 6px solid var(--theme-gold);
}

.spec-box.dark-accent {
    border-left: 6px solid var(--steel-slate);
}

.spec-box h5 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--eco-green-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   FAQ SECTION (PREMIUM LIST)
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-premium);
}

.faq-card h4 {
    font-size: 17px;
    color: var(--eco-green-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.4;
}

.faq-card p {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 30px;
    border-left: 2px solid var(--solar-amber);
    line-height: 1.7;
}

/* ==========================================================================
   CONTACT DETAILS & BLOCKS
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
}

.contact-info-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.info-block {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: var(--shadow-premium);
}

.info-icon {
    font-size: 24px;
    background-color: var(--accent-gold-light);
    color: var(--solar-amber);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 700;
}

.info-details p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.info-details a:hover {
    color: var(--eco-green);
    text-decoration: underline;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (NO ANIMATIONS)
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    z-index: 1000;
    cursor: pointer;
    background: transparent;
}

.floating-wa img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--eco-green-dark);
    color: var(--bg-white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 14px;
    color: hsl(150, 20%, 80%);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--solar-gold);
}

.footer-bottom {
    border-top: 1px solid hsl(150, 40%, 12%);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: hsl(150, 20%, 70%);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--eco-green-dark);
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   MOBILE MENU OVERLAY & RESPONSIVENESS
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-image-block {
        order: -1;
    }
    .hero-image-block .img-container {
        height: 320px;
    }
    .hero-actions {
        justify-content: center;
    }
    .gateway-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px; /* Reduced header height for mobile */
    }

    .logo-icon-img {
        width: 32px;  /* Compact logo size */
        height: 32px;
    }

    .logo-text h1 {
        font-size: 13.5px;
        letter-spacing: 0.5px;
    }
    
    /* Toggle visibility of switchers */
    .desktop-lang {
        display: none !important;
    }
    
    .mobile-lang {
        display: flex !important;
        order: 2;
        margin-left: auto; /* Push switcher and menu button to the right */
        margin-right: 14px;
    }
    
    .mobile-toggle {
        display: block;
        order: 3;
        font-size: 22px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px; /* Aligns with compact mobile header height */
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        order: 4;
        z-index: 999;
    }
    .nav-menu.open {
        display: flex;
    }
    
    /* Mobile Tables: Remove slider (no scrolling), show all content natively */
    .table-responsive {
        overflow-x: visible !important; /* Disable slider */
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        margin: 16px 0;
        box-shadow: var(--shadow-premium);
    }
    
    .table-responsive table {
        min-width: 100% !important; /* Force table to fit screen width */
        width: 100% !important;
        table-layout: auto !important;
    }
    
    table th {
        padding: 12px 6px !important;
        font-size: 10.5px !important;
        letter-spacing: 0px !important;
    }
    
    table td {
        padding: 12px 6px !important;
        font-size: 10.5px !important;
        line-height: 1.4 !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 36px;
    }
    .logo-text p {
        display: none;
    }

    /* Mobile Alignment Adjustments */
    .section-padding {
        padding: 24px 0 !important;
    }

    .hero-actions {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
    }
    .hero-actions .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-logos-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
        overflow: visible !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 10px !important;
    }
    .hero-logos-row img {
        height: 36px !important;
        max-width: 44% !important;
        width: auto !important;
        object-fit: contain !important;
        margin: 0 !important;
    }
    .partner-badge {
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center !important;
    }
    .partner-badge div {
        text-align: center !important;
    }
    
    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 24px !important;
    }
    
    /* Make images/cards come first on mobile */
    .hero-grid .hero-image-block,
    .hero-grid .flyer-preview-card,
    .hero-grid .flyer-pics-col {
        order: -1 !important;
        margin-bottom: 8px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-grid .hero-content,
    .hero-grid div:not(.hero-image-block):not(.flyer-preview-card):not(.flyer-pics-col) {
        order: 1 !important;
    }
    
    .hero-grid h2, .hero-grid h3, .hero-grid h4, .hero-grid p {
        text-align: center !important;
    }
    .hero-grid ul {
        text-align: left !important;
        display: inline-block !important;
        max-width: 340px !important;
        margin: 12px auto !important;
        padding-left: 16px !important;
    }
    
    .hide-on-mobile {
        display: none !important;
    }
    .hide-on-desktop {
        display: block !important;
    }
    .hide-on-desktop.hero-grid {
        display: flex !important;
    }

    /* Contact Page Mobile Overrides */
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 480px !important;
        margin: 0 auto !important;
        padding: 0 16px !important;
    }
    
    .contact-grid .info-block {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
        padding: 20px !important;
        align-items: center !important;
    }
}


.hide-on-desktop {
    display: none !important;
}

/* Footer Social Icons Hover Zoom & Opacity */
.footer-socials a:hover {
    transform: scale(1.18);
    opacity: 0.85;
}

@media (min-width: 993px) {
    .full-width-card {
        grid-column: span 2 !important;
        width: 100% !important;
    }
}




