@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    /* Elite Green Corporate Palette */
    --primary-color: #064E3B;
    /* Deep Emerald 900 */
    --primary-accent: #10B981;
    /* Vibrant Emerald 500 */
    --primary-dark: #022C22;
    /* Darkest Emerald 950 */
    --primary-light: #ECFDF5;
    /* Emerald 50 */
    --accent-safety: #34D399;
    /* Light Emerald */
    --accent-warn: #FBBF24;
    --accent-danger: #F87171;

    /* Backgrounds */
    --bg-light: #F0FDF4;
    /* Minty Fresh Background */
    --bg-white: #FFFFFF;
    --text-dark: #064E3B;
    --text-main: #1F2937;
    /* Slate 800 for readability */
    --text-muted: #6B7280;
    /* Slate 500 */
    --border-color: #D1FAE5;
    /* Emerald 100 */
    --white: #FFFFFF;

    /* Professional Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Outfit', sans-serif;

    /* Spacing & Layout Calibrated */
    --navbar-height: 85px;
    --section-padding: clamp(40px, 6vw, 80px) 0;

    /* Modern Radii */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 40px;

    /* Transitions */
    --transition-smooth: 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: 0.3s ease;

    /* Refined Shadow System */
    --shadow-soft: 0 4px 20px rgba(6, 78, 59, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(6, 78, 59, 0.12);
    --shadow-glass: 0 10px 30px rgba(6, 78, 59, 0.05);

    /* Compatibility Layers */
    --theme-lps-color: var(--primary-accent);
    --theme-fire-color: #EF4444;
    --theme-industries-color: var(--primary-accent);
    --theme-projects-color: var(--text-muted);
}

/* ── Global Spacing Fixes ───────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5em;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: var(--section-padding);
}

/* ── Bootstrap 5 Isolation ─────────────────────────────────────
   Prevent Bootstrap grid/utilities from overriding our
   custom typography, colors and box-model settings.
──────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* already in BS, explicit here */
body {
    line-height: 1.7;
}

/* override Bootstrap's 1.5 */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

p {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

/* disable BS p margin */

/* ── GSAP & AOS Visibility Safety ───────────────────────────────
   If JS fails to load or AOS is blocked, elements must never 
   remain invisible (opacity:0).
──────────────────────────────────────────────────────────────── */
[data-aos]:not(.aos-init) {
    opacity: 1 !important;

    visibility: visible !important;
}

/* Ensure hero content is visible even if GSAP fails */
.hero-content>*,
.hero-illustration,
.pe-badge {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    [data-aos] {
        opacity: 1 !important;

    }
}

/* Improve global contrast for secondary text on dark backgrounds */
.text-white-50 {
    color: rgba(255, 255, 255, 0.88) !important;
}

.text-muted {
    color: #64748b !important;
    /* Slightly darker than default for better contrast on white */
}

html {
    scroll-behavior: smooth;
}

/* ── Scroll Performance ─────────────────────────────────────── */
/* Hint to the browser to isolate paint regions per section */
/* Text & Effects Helpers */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

.text-primary-accent {
    color: var(--primary-accent) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}


.reveal-on-scroll {
    opacity: 1;
    transform: translateY(30px);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section {
    contain: layout style;
}

/* Images: Removed content-visibility to avoid AOS/GSAP conflict */
img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-body);
    background-color: #FFFFFF;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ================================================================
   ANIMATIONS & INTERACTIVE ELEMENTS
   ================================================================ */

/* ── Custom Cursor ─────────────────────────────────────────────── */
#custom-cursor {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    margin-left: -19px;
    margin-top: -19px;
    transition: width .3s, height .3s, border-color .3s, background .3s;
    will-change: transform;
}

#cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    margin-left: -3px;
    margin-top: -3px;
    transition: transform .08s linear;
    will-change: transform;
}

#custom-cursor.cursor-hover {
    width: 58px;
    height: 58px;
    border-color: var(--primary-accent);
    background: rgba(16, 185, 129, 0.06);
    margin-left: -29px;
    margin-top: -29px;
}

/* ── Scroll-to-top button ─────────────────────────────────────── */
#scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 900;
    opacity: 1;
    transform: translateY(16px);
    transition: opacity .35s ease, transform .35s ease, background .25s ease, box-shadow .25s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

#scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

#scroll-top-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    transform: translateY(-3px);
}

/* ── Reveal-on-scroll ─────────────────────────────────────────── */
.reveal-on-scroll {
    opacity: 1;
    transform: translateY(40px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Glass card spotlight ─────────────────────────────────────── */
.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(260px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(77, 122, 90, 0.07), transparent 70%);
    opacity: 1;
    transition: opacity .4s ease;
    pointer-events: none;
    z-index: 0;
}

.glass-card:hover::after {
    opacity: 1;
}

/* ── Card border glow ─────────────────────────────────────────── */
@keyframes borderGlow {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(77, 122, 90, 0.1);
    }
}

.glass-card:hover {
    animation: borderGlow 1.6s ease infinite;
}

/* ── Page fade-in ─────────────────────────────────────────────── */
@keyframes pageFadeIn {
    from {
        opacity: 1;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero position for canvas ─────────────────────────────────── */
.hero {
    position: relative;
}

/* ── Stat number ──────────────────────────────────────────────── */
.stat-number {
    display: inline-block;
}

/* ── Service icon bounce ──────────────────────────────────────── */
.glass-card .service-icon {
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), background .3s;
}

.glass-card:hover .service-icon {
    transform: scale(1.15) rotate(-3deg);
}

/* ── Arrow slide ──────────────────────────────────────────────── */
.glass-card .fa-arrow-right-long {
    transition: transform .3s ease;
    display: inline-block;
}

.glass-card:hover .fa-arrow-right-long {
    transform: translateX(6px);
}

/* ── Image zoom ───────────────────────────────────────────────── */
.glass-card img {
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.glass-card:hover img {
    transform: scale(1.06);
}

/* ── Page banner bottom fade ──────────────────────────────────── */
.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    pointer-events: none;
}

/* ── Navbar scrolled ─────────────────────────────────────────── */
.navbar.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09);
    background: #fff;
}

/* ── Floating hero animation ──────────────────────────────────── */
@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(4deg);
    }
}

/* ── Button shimmer ───────────────────────────────────────────── */
.btn-primary {
    background-size: 200% auto;
    background-image: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(77, 122, 90, 0.35);
}

/* ── Text glow accent ─────────────────────────────────────────── */
.text-glow {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(77, 122, 90, 0.3);
}

/* ── Skeleton loader ──────────────────────────────────────────── */
@keyframes skeletonShimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.6s infinite linear;
    border-radius: 8px;
}



ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
   GLASS CARD
   ============================================================ */
.glass-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-md);
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px circle at var(--mouse-x, -200px) var(--mouse-y, -200px), rgba(77, 122, 90, 0.06), transparent 40%);
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card>* {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(77, 122, 90, 0.2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(77, 122, 90, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: currentColor;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
}

/* ============================================================
   NAVBAR & NAVIGATION
   ============================================================ */
/* ============================================================
   NAVBAR & NAVIGATION (Corporate Professional)
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    height: 72px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

#nav-logo {
    height: 56px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.navbar.scrolled #nav-logo {
    height: 44px;
}


/* Desktop Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links>li>a {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    padding: 10px 0;
    text-decoration: none;
    position: relative;
    font-family: var(--font-heading);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--primary-accent);
}

/* Dropdown Panel (Corporate Mega-style) */
.has-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 600px;
    opacity: 1;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 100;
}

.has-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-inner {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border: 1px solid var(--border-color);
    margin-top: 20px;
}

.dropdown-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.dropdown-item:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

.dropdown-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.dropdown-item .icon.bolt {
    background: #E0F2FE;
    color: var(--primary-color);
}

.dropdown-item .icon.fire {
    background: #FEE2E2;
    color: #DC2626;
}

.dropdown-item .icon.iot {
    background: #E0F2FE;
    color: #0284C7;
}

.dropdown-item .icon.cleaning {
    background: #DCFCE7;
    color: #16A34A;
}

.dropdown-item .content h6 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.dropdown-item .content p {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-muted);
    margin: 0;
}


/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 12000;
}

.mobile-toggle .line {
    height: 2px;
    background: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 2px;
}

.mobile-toggle .line-1 {
    width: 100%;
}

.mobile-toggle .line-2 {
    width: 70%;
}

.sidebar-active .mobile-toggle .line-1 {
    transform: translateY(3.5px) rotate(45deg);
    width: 100%;
}

.sidebar-active .mobile-toggle .line-2 {
    transform: translateY(-3.5px) rotate(-45deg);
    width: 100%;
}


@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    .navbar.scrolled {
        height: 72px;
    }
}

/* Sidebar Drawer (Mobile) */
.sidebar-drawer {
    position: fixed;
    inset: 0;
    z-index: 11000;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.4s;
}

.sidebar-drawer.active {
    pointer-events: all;
    visibility: visible;
}

.sidebar-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.sidebar-drawer.active .sidebar-backdrop {
    opacity: 1;
}

.sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.05);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
}

.sidebar-drawer.active .sidebar-content {
    transform: translateX(0);
}

.sidebar-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-header .logo img {
    height: 50px;
    width: auto;
}

.sidebar-body {
    flex: 1;
    padding: 40px 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-links>li {
    margin-bottom: 24px;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.sidebar-drawer.active .sidebar-links>li {
    opacity: 1;
    transform: translateY(0);
}

.sidebar-links>li>a {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    letter-spacing: -0.5px;
}

.sd-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sd-toggle i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sidebar-dropdown.active .sd-toggle i {
    transform: rotate(180deg);
}

.sd-menu {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0 10px 0;
    display: none;
    border-left: 1px solid #E2E8F0;
}

.sd-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.sd-menu li a:hover {
    color: var(--primary-color);
}

.sidebar-footer {
    margin-top: auto;
    padding: 30px;
    background: #F8FAFC;
    border-radius: 16px;
}

.sidebar-footer p {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 20px;
    font-weight: 500;
}

.sd-socials {
    display: flex;
    gap: 12px;
}

.sd-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}

.sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #F1F5F9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: #E2E8F0;
    transform: rotate(90deg);
}

/* Section Layouts */
.section {
    padding: 120px 0;
    position: relative;
}

.section-hero {
    padding: 200px 0 100px;
    min-height: 85vh;
}


/* ============================================================
   PAGE BANNER  — Full-bleed hero banner for interior pages
   ============================================================ */
.page-banner {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    /* REMOVED: background-attachment: fixed — causes repaint on every scroll frame */
    background-attachment: scroll;
    padding-top: var(--navbar-height);
}

/* Dark overlay so text is always readable */
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    padding-top: 60px;
    color: #fff;
}

.page-banner h1 {
    font-size: 52px;
    color: #fff;
    margin-top: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-top: 12px;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: #fff;
}

/* ============================================================
   HERO — Home page full-viewport hero
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 70% 50%, rgba(95, 127, 102, 0.08), transparent 60%), #fff;
    padding-top: var(--navbar-height);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-content span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    background: rgba(95, 127, 102, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Illustration */
.hero-illustration {
    position: relative;
    height: 540px;
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    display: block;
}

/* PE badge */
.pe-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    z-index: 5;
    animation: badgeFloat 5s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: clamp(40px, 6vw, 80px) 0 !important;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 50px) !important;
}

.section-title h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================================
   STATS
   ============================================================ */
.stat-item {
    text-align: center;
    padding: 20px;
}

/* ============================================================
/* ============================================================
   CTA SECTION — Clean Pre-Footer
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: clamp(50px, 8vw, 80px) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 12px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    max-width: 400px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-accent);
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--accent-safety);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
}

/* ============================================================
   FOOTER  — Clean & Modern
   ============================================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 8vw, 100px) 0 40px;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(40px, 8vw, 80px);
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Logo Section */
.footer-logo-wrap {
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-3px);
}

/* Section Title */
.footer-section-title {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px;
}

/* Menu Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #fff;
    transform: translateX(4px);
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-item a,
.contact-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 58px;
    height: 58px;
    background: var(--accent-warn);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
    z-index: 9000;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: ctaPulse 2.5s infinite;
}

.floating-cta:hover {
    background: var(--accent-danger);
    transform: scale(1.1);
    animation: none;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 154, 76, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(241, 154, 76, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(241, 154, 76, 0);
    }
}

/* Parallax utility */
.parallax-img {
    will-change: transform;
}

/* ============================================================
   THEME ACCENTS (per-page)
   ============================================================ */
.theme-fire .page-banner::before {
    background: linear-gradient(to bottom, rgba(180, 70, 0, 0.55), rgba(0, 0, 0, 0.7));
}

.theme-projects .page-banner::before {
    background: linear-gradient(to bottom, rgba(40, 50, 70, 0.6), rgba(0, 0, 0, 0.75));
}

/* ============================================================
   FORMS
   ============================================================ */
.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    background: rgba(255, 255, 255, 0.8);
    transition: border 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    color: var(--text-dark);
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(95, 127, 102, 0.12);
}

.responsive-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 2), 1fr);
  
}

@media (max-width: 768px) {
    .responsive-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1200px — Large Tablets */
@media (max-width: 1200px) {
    .container {
        padding: 0 28px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .footer-grid {
        gap: 40px;
    }
}

/* 992px — Tablet & Mobile */
@media (max-width: 992px) {
    :root {
        --navbar-height: 70px;
    }

    /* Navbar */
    .navbar {
        padding: 12px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .logo img {
        height: 56px;
    }

    .navbar.scrolled .logo img {
        height: 48px;
    }

    /* Show hamburger, hide desktop links */
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        right: -100%;
        left: auto;
        transform: translateX(0);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 10000;
        padding: 60px 40px 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 24px;
    }

    .nav-links a {
        display: block;
        padding: 18px 0;
        font-size: 20px;
        font-weight: 600;
        color: var(--text-dark) !important;
    }

    .nav-links a:hover {
        color: var(--primary-color) !important;
    }

    .nav-links a::after {
        display: none;
    }

    .btn-nav {
        display: inline-block;
        padding: 12px 32px;
        background: var(--primary-color);
        color: #fff !important;
        border-radius: 8px;
    }

    /* Dropdown inside mobile menu */
    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--bg-light);
        border-radius: var(--border-radius-sm);
        margin: 0 20px 10px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: var(--navbar-height);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-illustration {
        height: 340px;
        margin: 0 auto;
        max-width: 520px;
        width: 100%;
    }

    .pe-badge {
        right: -10px;
        top: 20px;
        padding: 14px 18px;
    }

    /* Page banner */
    .page-banner {
        min-height: 320px;
    }

    .page-banner h1 {
        font-size: 38px;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section {
        padding: 70px 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* 768px — Small Tablet */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .page-banner p {
        font-size: 16px;
    }

    .hero-grid {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* 576px — Mobile */
@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
    }

    .navbar.scrolled .logo img {
        height: 42px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-illustration {
        height: 260px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .glass-card {
        padding: 24px;
    }

    .pe-badge {
        display: none;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-col--brand {
        grid-column: auto;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-badges {
        flex-direction: column;
    }

    .badge {
        width: 100%;
        text-align: center;
    }

    /* CTA Section Mobile */
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-wrapper a {
        width: 100%;
    }


    .floating-cta {
        bottom: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
    }

    .section {
        padding: 50px 0;
    }
}

/* ============================================================
   NEW COMPONENTS & PAGE STYLES
   ============================================================ */

/* Badges */
.badge-accent {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-accent);
    background: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge-outline {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* Vertical Cards */
/* Vertical Cards (Placeholder for removal/unification) */
.vertical-card-v1 {
    display: none;
}

/* Removed redundant hover state */

/* Cleaned up older icon-box */

.icon-box.bolt {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-accent);
}

.icon-box.fire {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-warn);
}

.icon-box.iot {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.icon-box.cleaning {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-safety);
}

.vertical-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.vertical-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    flex-grow: 1;
    line-height: 1.6;
}

.learn-more {
    margin-top: 24px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Industry Box */
.industry-box {
    background: #fff;
    padding: 30px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.industry-box:hover {
    background: var(--primary-light);
    border-color: var(--primary-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.industry-box i {
    font-size: 28px;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
}

.industry-box:hover i {
    transform: scale(1.1);
}

.industry-box span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Benefits Grid */
.benefits-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 10px;
}

.benefit-item i {
    color: var(--primary-color);
}

/* CTA Mini Card */
.cta-mini-card {
    background: var(--primary-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    color: #fff;
}

.cta-mini-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

/* Assessment Page Components */
.risk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.highlight-info {
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    background: var(--primary-light);
}

.component-card {
    transition: var(--transition-fast);
}

.component-card:hover {
    transform: translateY(-5px);
    background: var(--primary-light) !important;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 800;
}

/* Safety Card */
.safety-card {
    transition: all 0.3s ease;
    cursor: default;
}

.safety-card:hover {
    background: rgba(251, 191, 36, 0.08);
    border-color: var(--accent-warn);
}

/* IoT Visual */
.mock-alert {
    animation: alertPulse 2s infinite;
}

@keyframes alertPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* IoT Dashboard Visual */
.iot-visual-dashboard {
    background: var(--primary-dark);
    border-radius: var(--border-radius-md);
    padding: 30px;
    color: #fff;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}

.blink {
    animation: blinker 1.2s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}

@keyframes blinker {
    from {
        opacity: 1;
    }

    to {
        opacity: 1;
    }
}

.mock-alert-iot {
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
}

.mock-alert-iot.danger {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #FECACA;
}

.mock-alert-iot.warning {
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #FDE68A;
}

.mock-alert-iot small {
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    opacity: 0.8;
}

.magnetic-tilt {
    transition: transform 0.1s ease-out;
}


/* LPS & Fire Specifics */
.risk-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.risk-card:hover {
    border-color: var(--danger);
    background: #FEF2F2;
    transform: translateX(8px);
}

.risk-card i {
    font-size: 20px;
    color: var(--danger);
}

.premium-compliance {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
}

.premium-compliance h3 {
    color: #fff;
    margin-bottom: 20px;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.compliance-item i {
    color: var(--primary-accent);
}

/* Grid helper update */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991px) {
    .col-lg-2-4 {
        width: 33.333%;
    }
}

@media (max-width: 767px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

.badge-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.badge-tag:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ============================================================
   HOME PAGE REVAMP COMPONENTS
   ============================================================ */
/* About Section Enhanced */
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-glass-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-glass-item:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform: translateX(8px);
    border-color: var(--primary-color);
}

.feature-glass-item .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #F1F5F9;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-glass-item:hover .icon {
    background: var(--primary-color);
    color: #fff;
}

.feature-glass-item .text h5 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.feature-glass-item .text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.about-image-stack {
    position: relative;
    padding: 0 40px 40px 0;
}

.about-image-stack .main-img img {
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.exp-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 30px 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.exp-badge .number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-badge .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-top: 6px;
    font-weight: 600;
}

/* Stats Section */
.section-stats {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.stat-card {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.stat-card h2 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-card p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94A3B8;
    font-weight: 600;
}

/* Industry Marquee */
.section-industries {
    background: #fff;
    padding: 30px 0;
    /* Reduced from 60px to decrease empty space */
}

.industry-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.marquee-content {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.industry-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    background: #F8FAFC;
    border-radius: 100px;
    border: 1px solid #E2E8F0;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.industry-tag i {
    color: var(--primary-color);
    font-size: 18px;
}

.industry-tag span {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.industry-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-tag:hover i,
.industry-tag:hover span {
    color: #fff;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.btn-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-text i {
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(8px);
}

@media (max-width: 991px) {
    .about-image-stack {
        padding: 0 0 40px 0;
    }

    .exp-badge {
        right: 20px;
    }

    .stat-card h2 {
        font-size: 40px;
    }
}

/* Resilience Section */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #051e3a 100%);
    color: #fff;
    position: relative;
    padding: clamp(60px, 10vw, 100px) 0;
    overflow: hidden;
}

.why-bg-accent {
    position: absolute;
    top: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   WHY CHOOSE US (Premium Reconstruction)
   ============================================================ */
.why-choose-us {
    background-color: var(--primary-dark);
    position: relative;
    padding: clamp(60px, 10vw, 120px) 0;
    z-index: 1;
}

/* Background Decorations */
.why-decor-orb-1,
.why-decor-orb-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: floatingOrb 20s infinite alternate;
}

.why-decor-orb-1 {
    top: -10%;
    left: -10%;
}

.why-decor-orb-2 {
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes floatingOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.1);
    }
}

.why-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(16, 185, 129, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.5;
}

/* Typography & Title */
.badge-accent-elite {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--primary-accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.text-gradient-vibrant {
    background: linear-gradient(135deg, #10B981, #34D399, #6EE7B7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-accent);
    margin: 24px 0;
    border-radius: 2px;
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.7);
}

/* Benefit Cards Glassmorphism */
.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
    overflow: hidden;
}

.benefit-card-glass::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card-glass:hover::after {
    opacity: 1;
}

.benefit-card-glass:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.card-inner {
    position: relative;
    z-index: 2;
}

.card-top-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.card-icon-v2 {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card-glass:hover .card-icon-v2 {
    transform: rotate(10deg) scale(1.1);
}

.icon-emerald {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.icon-ocean {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
}

.icon-amber {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.icon-vibrant {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
}

.card-title-v2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.card-text-v2 {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.card-glow-v2 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    filter: blur(20px);
    transition: all 0.5s ease;
}

.benefit-card-glass:hover .card-glow-v2 {
    transform: scale(2);
    opacity: 0.5;
}

/* Premium Consultation Card (Right) */
.premium-consultation-card {
    background: #fff;
    border-radius: 32px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    height: 100%;
    color: var(--text-dark);
}

.card-mesh-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 50%);
    z-index: 1;
}

.premium-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F0FDF4;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.expert-visual {
    width: 90px;
    height: 90px;
    background: var(--primary-light);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.shield-ring {
    position: absolute;
    inset: -10px;
    border: 2px dashed rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    animation: rotateRing 15s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.premium-card-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.premium-card-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.premium-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}

.premium-checks i {
    color: var(--primary-accent);
    font-size: 18px;
}

.premium-actions {
    margin-top: auto;
}

.btn-premium-full {
    width: 100%;
    background: var(--primary-dark);
    color: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-premium-full:hover {
    background: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.2);
}

.hotline-badge {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.hotline-badge i {
    color: var(--primary-accent);
    font-size: 20px;
}

.hotline-text strong {
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .benefits-cards-grid {
        grid-template-columns: 1fr;
    }

    .premium-consultation-card {
        padding: 32px;
    }
}


.cta-btn-primary:hover {
    background: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

.cta-btn-secondary {
    background: #f0f9ff;
    color: var(--primary-color);
    border: 2px solid #e0f2fe;
}

.cta-btn-secondary:hover {
    background: var(--primary-accent);
    color: #fff;
    border-color: var(--primary-accent);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.cta-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.cta-footer p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-footer i {
    color: var(--primary-accent);
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-cards-grid {
        grid-template-columns: 1fr;
    }

    .cta-consultation-card {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .benefit-card-modern {
        padding: 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .benefits-cards-grid {
        gap: 16px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }
}

.section-resilience {
    position: relative;
    padding: var(--section-padding);
    background: var(--primary-dark) !important;
}

.resilience-bg-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-icon-inner {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ============================================================
   HERO ELITE & PREMIUM UTILITIES
   ============================================================ */
.hero-elite {
    position: relative;
    padding: clamp(100px, 10vw, 120px) 0 clamp(30px, 5vw, 60px) !important;
    background: #FFFFFF;
    overflow: hidden;
}

.hero-background-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border-color) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    opacity: 0.3;
    mask-image: radial-gradient(circle at 10% 25%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 10% 25%, black, transparent 80%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge-elite {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 50px;
    margin-bottom: 20px !important;
}

.hero-badge-elite .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    font-size: 13px;
    margin-top: -1px;
}

.hero-badge-elite .label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-accent);
    line-height: 1;
}

.hero-title {
    font-size: clamp(54px, 7vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--primary-color);
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

.hero-subtitle-badge {
    display: table;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-main);
    max-width: 650px;
    margin-bottom: 40px !important;
    font-weight: 500;
    opacity: 0.85;
}

.hero-btns-elite {
    display: flex;
    gap: 24px;
    align-items: center;
}

.hero-visual-elite {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}

.visual-wrapper {
    position: relative;
    border-radius: 40px;
    /* Refined for symmetry */
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background: #fff;
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.visual-wrapper:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.visual-wrapper img {
    width: 100%;
    aspect-ratio: 4/5.5;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-wrapper:hover img {
    transform: scale(1.08);
}

.visual-stats-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 20px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.visual-stats-badge:hover {
    transform: translateY(-10px);
}

.visual-stats-badge .count {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.visual-stats-badge .text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

.visual-stats-badge .count {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.visual-stats-badge .text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Elite Buttons */
.btn-primary {
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 18px 40px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    border: none !important;
}

.btn-primary:hover {
    background: var(--primary-accent) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.25) !important;
}

.btn-outline-dark {
    padding: 18px 40px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

@media (max-width: 991px) {
    .hero-title {
        letter-spacing: -1.5px;
    }

    .hero-btns-elite {
        flex-direction: column;
    }

    .hero-elite {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns-elite {
        align-items: center;
    }
}

@media (max-width: 991px) {
    .hero-subtitle-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================================
   INTERNAL PAGE HERO (Elite Corporate Style)
   ============================================================ */
.internal-hero-elite {
    position: relative;
    padding: clamp(120px, 12vw, 150px) 0 clamp(60px, 8vw, 80px);
    background: var(--primary-dark);
    color: #fff;
    overflow: hidden;
}

.internal-hero-elite .hero-background-pattern {
    opacity: 0.15;
}

.internal-hero-elite h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #fff;
}

.internal-hero-elite .breadcrumb-elite {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.internal-hero-elite .breadcrumb-elite a {
    color: #fff;
    opacity: 0.6;
}

.internal-hero-elite .breadcrumb-elite a:hover {
    opacity: 1;
    color: var(--primary-accent);
}

.page-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(16, 185, 129, 0.15), transparent);
    z-index: 1;
}


/* Cleaned up redundant definitions */

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.vertical-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.vertical-card:hover::before {
    transform: scaleX(1);
}

.vertical-card .icon-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 32px;
    background: rgba(16, 185, 129, 0.05);
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.vertical-card:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.vertical-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.vertical-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    flex: 1;
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Resilience Section */

.btn-text {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-text i {
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--primary-accent);
}

.btn-text:hover i {
    transform: translateX(5px);
}

.learn-more {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-accent);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* ============================================================
   ELITE COMPONENT REFINEMENTS
   ============================================================ */

/* Vertical Cards */
.vertical-card {
    background: var(--bg-white);
    padding: clamp(32px, 5vw, 48px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.vertical-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(16, 185, 129, 0.2);
}

/* ── Hero Scroll Indicator ──────────────────────── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--primary-accent);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll-indicator .wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-accent);
    border-radius: 2px;
    animation: scrollWheel 2s ease-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .hero-scroll-indicator {
        display: none;
    }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10000;
    background: transparent;
}

#scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-accent), #2563EB, #8B5CF6);
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ============================================================
   HERO FLOATING ORBS
   ============================================================ */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, rgba(37, 99, 235, 0.2) 60%, transparent 80%);
    filter: blur(40px);
    pointer-events: none;
    animation: orbFloat linear infinite;
    z-index: 0;
}

@keyframes orbFloat {
    0% {
        transform: translateY(0px) scale(1);
    }

    33% {
        transform: translateY(-30px) scale(1.05);
    }

    66% {
        transform: translateY(15px) scale(0.97);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

/* ============================================================
   AOS COMPATIBILITY — allow AOS to properly animate
   ============================================================ */
[data-aos] {
    opacity: 1;
    visibility: visible;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* Safe fallback: if AOS library not loaded */
[data-aos]:not(.aos-init) {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* ============================================================
   HERO ANIMATION FALLBACK CLASSES
   ============================================================ */
.hero-anim-in {
    animation: heroFadeUp 0.7s ease forwards;
}



/* ============================================================
   DROPDOWN — OPEN CLASS (for JS-controlled hover)
   ============================================================ */
.has-dropdown.open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

/* ============================================================
   SIDEBAR MOBILE ACCORDION IMPROVED
   ============================================================ */
.sd-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.sidebar-dropdown.active .sd-menu {
    max-height: 300px;
    opacity: 1;
}

/* Animate hamburger to X */
.mobile-toggle.open .line-1 {
    transform: translateY(7px) rotate(45deg);
    width: 24px;
}

.mobile-toggle.open .line-2 {
    transform: translateY(-7px) rotate(-45deg);
    width: 24px;
}

/* ============================================================
   SCROLL-TO-TOP — visible state fix
   ============================================================ */
#scroll-top-btn {
    opacity: 0;
    pointer-events: none;
}

#scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* ============================================================
   PRODUCT FILTER BUTTONS
   ============================================================ */
.filter-btn {
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #64748B;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active-filter {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 16px rgba(6, 78, 59, 0.2);
    transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.testimonial-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1) !important;
}

/* ============================================================
   SWIPER PAGINATION DOTS
   ============================================================ */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #F59E0B !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* ============================================================
   DATA-ANIMATE FALLBACK (no GSAP)
   ============================================================ */
[data-animate="true"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="true"].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   TYPED TEXT CURSOR
   ============================================================ */
.typed-text::after {
    content: '|';
    animation: blink 0.8s step-end infinite;
    margin-left: 2px;
    color: var(--primary-accent);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ============================================================
   FLOATING CTA ENHANCED
   ============================================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-accent));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 900;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    transition: all 0.3s ease;
    animation: ctaPulse 2.5s ease infinite;
}

.floating-cta:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), 0 0 0 0 rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

/* ============================================================
   MARQUEE ANIMATION ENSURE
   ============================================================ */
.marquee-content {
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   FORM VALIDATION & ERROR STYLING
   ============================================================ */

/* Invalid Input Styling */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545 !important;
    background-color: #fff5f5;
    transition: all 0.3s ease;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    background-color: #fff5f5;
}

.form-control:focus,
.form-select:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

/* Invalid Feedback */
.invalid-feedback {
    display: block;
    font-size: 13px;
    color: #dc3545;
    margin-top: 6px;
    font-weight: 500;
}

/* Alert Styling */
.alert {
    border-radius: 12px !important;
    border: none !important;
}

.alert-success {
    background-color: #d4edda !important;
    color: #155724 !important;
}

.alert-success strong {
    color: #155724;
}

.alert-success .invalid-feedback {
    color: inherit;
}

.alert-danger {
    background-color: #f8d7da !important;
    color: #721c24 !important;
}

.alert-danger strong {
    color: #721c24;
}

.alert-danger ul {
    margin-bottom: 0;
}

.alert-danger ul li {
    margin-bottom: 6px;
}

.alert-danger ul li:last-child {
    margin-bottom: 0;
}

.alert-warning {
    background-color: #fff3cd !important;
    color: #856404 !important;
}

.alert-warning strong {
    color: #856404;
}

/* Close Button */
.btn-close {
    filter: opacity(0.5);
}

.btn-close:hover,
.btn-close:focus {
    filter: opacity(1);
}

/* Form Label Styling */
.form-label {
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

/* Input/Select Base Styling */
.form-control,
.form-select {
    padding: 14px 20px !important;
    border-radius: 12px !important;
    border: 1px solid #cbd5e1 !important;
    background-color: #f8fafc !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #cbd5e1;
}

.form-control,
.form-select {
    min-height: 50px;
}

textarea.form-control {
    min-height: 140px;
}

/* Input Success State (optional) */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #28a745 !important;
}

.form-control.is-valid:focus,
.form-select.is-valid:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* =====================
   MODERN CONTACT PAGE
   ===================== */

/* Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: clamp(80px, 12vw, 120px) 0;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-accent {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-header {
    margin-bottom: 10px;
}

.info-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.info-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    background: white;
    border-color: var(--primary-accent);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.phone-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.email-icon {
    background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
}

.location-icon {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.hours-icon {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.card-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 600;
}

.card-text {
    font-size: 15px;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}

.card-link {
    font-size: 15px;
    color: var(--primary-accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0;
}

.card-link:hover {
    color: var(--primary-color);
}

.info-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.info-box i {
    color: var(--primary-accent);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box>div h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px 0;
}

.info-box>div p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Contact Form Column */
.contact-form-column {
    display: flex;
    align-items: flex-start;
}

.form-card {
    width: 100%;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.05);
}

.form-header {
    margin-bottom: 30px;
}

.form-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.required {
    color: #EF4444;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.form-input:focus~.input-icon,
.form-input:not(:placeholder-shown)~.input-icon {
    color: var(--primary-accent);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px 14px 12px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: #F8FAFC;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #CBD5E1;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #EF4444;
    background: #FEF2F2;
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-select {
    appearance: none;
    padding-right: 44px;
    background-image: none;
    /* Removed background image as we use font-awesome icon */
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

.form-textarea {
    padding: 14px 16px 14px 44px;
    min-height: 120px;
    resize: vertical;
}

.textarea-icon {
    top: 20px;
    bottom: auto;
    transform: none;
}

.error-text {
    font-size: 12px;
    color: #EF4444;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.error-text i {
    font-size: 12px;
}

/* Alert Styling */
.alert-success,
.alert-error,
.alert-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.alert-success i {
    color: #10B981;
    font-size: 20px;
    flex-shrink: 0;
}

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #7F1D1D;
}

.alert-error i {
    color: #EF4444;
    font-size: 20px;
    flex-shrink: 0;
}

.alert-warning {
    background: #FFFBEB;
    border: 1px solid #FEE3B1;
    color: #78350F;
}

.alert-warning i {
    color: #F59E0B;
    font-size: 20px;
    flex-shrink: 0;
}

.alert-success strong,
.alert-error strong,
.alert-warning strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.alert-success p,
.alert-error p,
.alert-warning p {
    margin: 0;
    font-size: 14px;
}

.alert-success ul,
.alert-error ul,
.alert-warning ul {
    margin: 6px 0 0 0;
    padding-left: 20px;
}

.alert-success li,
.alert-error li,
.alert-warning li {
    margin-bottom: 4px;
}

.alert-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    text-decoration: none;
    color: inherit;
    margin-left: auto;
    flex-shrink: 0;
}

.alert-close:hover {
    opacity: 1;
}

/* Form Buttons */
.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-accent) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(6, 78, 59, 0.15);
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(6, 78, 59, 0.25);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-security-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-security-note i {
    color: var(--primary-accent);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-hero {
        padding: 60px 0;
    }

    .info-title {
        font-size: 24px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-card {
        padding: 30px;
    }

    .form-submit-btn {
        padding: 14px 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .contact-cards-list {
        gap: 16px;
    }

    .contact-card {
        padding: 16px;
        gap: 12px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .card-title {
        font-size: 16px;
    }

    .form-card {
        padding: 20px;
    }

    .form-submit-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .info-box {
        padding: 16px;
    }
}