/**
 * ShreenathPro Industrial Theme – Premium Redesign v2
 * Brand Palette: Deep Navy · Steel Blue · Amber/Orange · Charcoal
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --primary:         #1a56db;
    --primary-dark:    #1040b0;
    --primary-light:   #3b82f6;
    --accent:          #f59e0b;
    --accent-dark:     #d97706;
    --accent-light:    #fbbf24;

    --dark-900:        #0a0d14;
    --dark-800:        #111520;
    --dark-700:        #1b2032;
    --dark-600:        #252c40;
    --dark-500:        #2e3650;

    --light-50:        #f8faff;
    --light-100:       #eef1f8;
    --light-200:       #dde3f0;
    --mid-grey:        #6b7a99;
    --text-muted:      #8898b3;

    --font-heading:    'Outfit', sans-serif;
    --font-body:       'Inter', sans-serif;

    --radius-sm:       6px;
    --radius-md:       12px;
    --radius-lg:       20px;
    --radius-xl:       28px;

    --shadow-sm:       0 2px 8px rgba(0,0,0,.08);
    --shadow-md:       0 8px 24px rgba(0,0,0,.12);
    --shadow-lg:       0 20px 48px rgba(0,0,0,.18);
    --shadow-blue:     0 8px 32px rgba(26,86,219,.25);
    --shadow-amber:    0 8px 32px rgba(245,158,11,.25);

    --ease:            cubic-bezier(0.16, 1, 0.3, 1);
    --transition:      all 0.4s var(--ease);
    --transition-fast: all 0.2s ease;
}

/* ============================================================
   BASE RESETS & TYPOGRAPHY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--light-50);
    color: var(--dark-700);
    overflow-x: hidden;
    line-height: 1.65;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--dark-800); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================================
   BLUEPRINT GRID (subtle tech background)
   ============================================================ */
.blueprint-grid {
    background-image:
        linear-gradient(rgba(26,86,219,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,86,219,.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed; inset: 0;
    background: var(--dark-900);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: opacity .5s ease, visibility .5s ease;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.preloader-logo span { color: var(--accent); }

.preloader-bar {
    width: 180px;
    height: 3px;
    background: var(--dark-600);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    animation: preloader-slide 1s ease-in-out infinite alternate;
}

@keyframes preloader-slide {
    from { margin-left: 0; }
    to   { margin-left: 60%; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.bg-dark-custom {
    background-color: rgba(10, 13, 20, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26,86,219,.25);
    transition: var(--transition);
}

.bg-dark-custom.scrolled {
    background-color: rgba(10, 13, 20, 0.99);
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

/* Brand */
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Nav links */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.72);
    font-weight: 500;
    font-size: .88rem;
    letter-spacing: .3px;
    padding: .5rem 1rem;
    position: relative;
    transition: color .25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem; right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Call Now pill */
.nav-call-pill {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    border-radius: 50px;
    padding: .45rem 1.2rem !important;
    font-weight: 600 !important;
    font-size: .82rem !important;
    letter-spacing: .5px;
    border: 1px solid rgba(255,255,255,.15);
    transition: var(--transition-fast) !important;
    box-shadow: var(--shadow-blue);
}

.nav-call-pill:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    box-shadow: var(--shadow-amber);
    transform: translateY(-1px);
}

.nav-call-pill::after { display: none !important; }

/* Gear icon spin */
.animate-spin {
    animation: gear-spin 9s linear infinite;
    display: inline-block;
}

@keyframes gear-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress-container {
    position: fixed;
    top: 62px; left: 0;
    width: 100%; height: 3px;
    background: transparent;
    z-index: 1020;
}

.scroll-progress-bar {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width .1s ease-out;
}

/* ============================================================
   HERO – SPLIT ASYMMETRIC
   ============================================================ */
.hero-split {
    min-height: calc(100vh - 62px);
    display: flex;
    align-items: stretch;
    background-color: var(--dark-900);
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* Subtle animated star-field dots in the background */
.hero-split::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content-side {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 56px;
    background: linear-gradient(140deg, rgba(10,13,20,.98) 60%, rgba(26,86,219,.12));
    position: relative;
    z-index: 2;
}

.hero-content-side::after {
    content: '';
    position: absolute;
    top: 0; right: -60px;
    width: 120px; height: 100%;
    background: linear-gradient(140deg, rgba(10,13,20,.98) 60%, rgba(26,86,219,.12));
    transform: skewX(-6deg);
    z-index: -1;
}

.hero-image-side {
    flex: 1;
    background: url('/assets/images/heavy_engineering.jpg') no-repeat center center / cover;
    position: relative;
}

.hero-image-side::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,13,20,.85) 0%, rgba(10,13,20,.1) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.45);
    color: var(--accent-light);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: #fff;
    backdrop-filter: blur(8px);
}

.hero-stat-pill .stat-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.hero-stat-pill .stat-lbl {
    font-size: .75rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* Corner badge on hero image side */
.hero-corner-badge {
    position: absolute;
    bottom: 32px; left: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    padding: 18px 24px;
    color: #fff;
    box-shadow: var(--shadow-blue);
    z-index: 2;
}

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
.stats-section {
    background: var(--dark-800);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(26,86,219,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,86,219,.05) 1px, transparent 1px);
    background-size: 32px 32px;
}

.stat-counter-box {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-counter-box::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.stat-counter-box:hover {
    background: rgba(26,86,219,.1);
    border-color: rgba(26,86,219,.35);
    transform: translateY(-6px);
}

.stat-counter-box:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-plus { color: var(--accent); }

.stat-label {
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   GLASS CARDS (Products / Featured)
   ============================================================ */
.glass-card {
    background: #fff;
    border: 1px solid var(--light-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(26,86,219,.13);
    border-color: rgba(26,86,219,.25);
}

.glass-card .card-img-top {
    transition: transform .6s var(--ease);
}

.glass-card:hover .card-img-top {
    transform: scale(1.04);
}

.card-cat-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(26,86,219,.08);
    color: var(--primary);
    border: 1px solid rgba(26,86,219,.2);
    margin-bottom: 10px;
}

/* ============================================================
   DARK INDUSTRIAL SECTION
   ============================================================ */
.bg-dark-industrial {
    background-color: var(--dark-800) !important;
    color: #fff;
    background-image:
        linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
    background-size: 44px 44px;
}

/* Capability bars */
.capability-row {
    margin-bottom: 20px;
}

.capability-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
}

.capability-label span:last-child { color: var(--accent); }

.capability-track {
    height: 5px;
    background: rgba(255,255,255,.08);
    border-radius: 3px;
    overflow: hidden;
}

.capability-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s var(--ease);
}

.capability-fill.animated { transform: scaleX(1); }

/* Why-us icon boxes */
.why-icon-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    transition: var(--transition);
}

.why-icon-box:hover {
    background: rgba(26,86,219,.12);
    border-color: rgba(26,86,219,.3);
    transform: translateX(4px);
}

.why-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */
.industry-card {
    padding: 32px 24px;
    background: #fff;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--light-200);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary);
}

.industry-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,86,219,.1), rgba(26,86,219,.05));
    border: 2px solid rgba(26,86,219,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary-dark);
    color: #fff;
    transform: scale(1.1);
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
    background: #fff;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-200);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px; right: 24px;
    font-size: 8rem;
    line-height: 1;
    color: rgba(26,86,219,.07);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px 0 0 4px;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-200);
}

/* ============================================================
   SPLIT CTA BANNER
   ============================================================ */
.split-cta-banner {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-cta-info {
    flex: 1; min-width: 300px;
    background: linear-gradient(140deg, var(--dark-800), var(--dark-700));
    color: #fff;
    padding: 64px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.split-cta-info::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(26,86,219,.18);
    pointer-events: none;
}

.split-cta-info::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(245,158,11,.1);
    pointer-events: none;
}

.split-cta-form {
    flex: 1; min-width: 300px;
    background: #fff;
    padding: 64px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-item .ci-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(245,158,11,.2);
    border: 1px solid rgba(245,158,11,.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-light);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 2px;
    background: var(--primary);
}

.section-eyebrow-light { color: var(--accent-light); }
.section-eyebrow-light::before { background: var(--accent); }

.section-title-center {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 12px;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-title {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 48px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* ============================================================
   SIDEBAR FILTER (Products / Gallery)
   ============================================================ */
.sticky-sidebar {
    position: sticky;
    top: 80px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--light-200);
    box-shadow: var(--shadow-sm);
}

.sidebar-filter-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-filter-list .filter-btn {
    width: 100%;
    text-align: left;
    border: 1px solid transparent;
    background: transparent;
    color: var(--dark-700);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .85rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.sidebar-filter-list .filter-btn:hover {
    background: var(--light-100);
    color: var(--primary);
}

.sidebar-filter-list .filter-btn.active {
    background: rgba(26,86,219,.08);
    border-color: rgba(26,86,219,.2);
    color: var(--primary);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
    transition: var(--transition);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(10,13,20,.88);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-img {
    height: 250px; object-fit: cover; width: 100%;
    transition: transform .6s var(--ease);
}

.gallery-item:hover .gallery-img { transform: scale(1.08); }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 92px; right: 24px;
    background: linear-gradient(135deg, #25d366, #1ab354);
    color: #fff;
    width: 52px; height: 52px;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    z-index: 1000;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 28px rgba(37,211,102,.55);
}

.call-float {
    position: fixed;
    bottom: 28px; right: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    width: 52px; height: 52px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    box-shadow: var(--shadow-blue);
    z-index: 1000;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.12) translateY(-2px);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: var(--shadow-amber);
}

.back-to-top {
    position: fixed;
    bottom: 28px; left: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--dark-700);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    display: none;
    justify-content: center; align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    font-size: 18px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================================
   BOUNCE ANIMATION (WhatsApp)
   ============================================================ */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.animate-bounce { animation: bounce 2.5s ease-in-out infinite; }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-control, .form-select {
    border: 1.5px solid var(--light-200);
    border-radius: var(--radius-sm);
    font-size: .875rem;
    padding: .65rem 1rem;
    color: var(--dark-700);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,.12);
    outline: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark-900);
    color: rgba(255,255,255,.65);
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
}

.footer-brand-name span { color: var(--accent); }

.footer-desc {
    font-size: .85rem;
    line-height: 1.7;
    color: rgba(255,255,255,.45);
    margin-top: 12px;
}

.footer-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,.4);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.07);
}

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

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

.footer-links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
    gap: 12px;
}

.footer-links a i {
    color: var(--primary);
    font-size: .7rem;
    transition: color .2s ease;
}

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

/* Footer contact items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: .85rem;
}

.footer-contact-item .fci-icon {
    width: 34px; height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(26,86,219,.15);
    border: 1px solid rgba(26,86,219,.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-contact-item a:hover { color: #fff; }

/* Social icons */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }

.social-btn {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 0;
    margin-top: 56px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    font-size: .8rem;
    color: rgba(255,255,255,.35);
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}

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

/* Certifications / badges in footer */
.footer-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    letter-spacing: .5px;
}

.footer-cert-badge i { color: var(--accent); }

/* Google Map embed */
.map-embed-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    filter: grayscale(60%) brightness(0.75);
    transition: filter .3s ease;
}

.map-embed-wrap:hover {
    filter: grayscale(20%) brightness(0.9);
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#cookie-consent-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform .5s var(--ease);
    pointer-events: none;
}

#cookie-consent-banner.visible {
    transform: translateY(0);
    pointer-events: all;
}

.cookie-inner {
    background: rgba(15, 19, 30, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(26,86,219,.3);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: cookie-wobble 3s ease-in-out infinite;
}

@keyframes cookie-wobble {
    0%, 100% { transform: rotate(-8deg); }
    50%       { transform: rotate(8deg); }
}

.cookie-text {
    flex: 1; min-width: 220px;
}

.cookie-text h6 {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    box-shadow: var(--shadow-blue);
}

.btn-cookie-accept:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: var(--shadow-amber);
    transform: translateY(-1px);
}

.btn-cookie-decline {
    background: transparent;
    color: rgba(255,255,255,.45);
    border: 1px solid rgba(255,255,255,.15);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-cookie-decline:hover {
    color: rgba(255,255,255,.8);
    border-color: rgba(255,255,255,.35);
}

.btn-cookie-settings {
    background: transparent;
    color: rgba(255,255,255,.35);
    border: none;
    padding: 0;
    font-size: .75rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color .2s ease;
}

.btn-cookie-settings:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   COOKIE PREFERENCES MODAL
   ============================================================ */
#cookie-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

#cookie-modal-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.cookie-modal {
    background: var(--dark-800);
    border: 1px solid rgba(26,86,219,.25);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    padding: 36px;
    transform: translateY(20px) scale(.97);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg);
}

#cookie-modal-overlay.visible .cookie-modal {
    transform: translateY(0) scale(1);
}

.cookie-modal h5 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.cookie-modal p.lead-sm {
    color: rgba(255,255,255,.45);
    font-size: .82rem;
    margin-bottom: 28px;
}

/* Cookie toggle rows */
.cookie-pref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.cookie-pref-row:last-of-type { border-bottom: none; }

.cookie-pref-info h6 {
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.cookie-pref-info p {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    margin: 0;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
    width: 44px; height: 24px;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    cursor: pointer;
    transition: background .25s ease;
    position: relative;
}

.cookie-toggle input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    transition: transform .25s ease, background .25s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.cookie-toggle input[type="checkbox"]:checked::after {
    transform: translateX(20px);
    background: #fff;
}

.cookie-toggle input[type="checkbox"]:disabled {
    cursor: default;
    opacity: .6;
}

.cookie-toggle input[type="checkbox"]:disabled:checked {
    background: var(--mid-grey);
    border-color: var(--mid-grey);
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.max-width-600 { max-width: 600px; }
.tracking-wide  { letter-spacing: .5px; }
.tracking-wider { letter-spacing: 1.5px; }
.bg-light-grey  { background-color: var(--light-100) !important; }

.text-accent-orange { color: var(--accent) !important; }
.text-primary       { color: var(--primary) !important; }

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pill badge */
.badge-outline-primary {
    border: 1px solid rgba(26,86,219,.35);
    color: var(--primary);
    background: rgba(26,86,219,.07);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .scroll-progress-container { top: 56px; }

    .hero-split { flex-direction: column; }

    .hero-content-side {
        padding: 64px 24px;
        text-align: center;
    }

    .hero-content-side::after { display: none; }

    .hero-image-side { min-height: 300px; }

    .hero-corner-badge { left: 16px; bottom: 16px; }

    .sticky-sidebar {
        position: static;
        margin-bottom: 28px;
    }

    .sidebar-filter-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 8px;
    }

    .sidebar-filter-list .filter-btn {
        width: auto;
        white-space: nowrap;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title { text-align: center; }

    .split-cta-info,
    .split-cta-form {
        padding: 48px 28px;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-float { bottom: 88px; right: 16px; width: 48px; height: 48px; font-size: 22px; }
    .call-float    { bottom: 24px; right: 16px; width: 48px; height: 48px; font-size: 20px; }
    .back-to-top   { bottom: 24px; left: 16px; width: 40px; height: 40px; }

    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .cookie-actions { width: 100%; }
    .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }

    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    .hero-content-side { padding: 48px 16px; }
    .stats-section { padding: 40px 0; }
    .stat-number { font-size: 2.6rem; }
}
