/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
    /* Colors */
    --color-primary-navy: #0F172A; /* Deep Command Navy Blue */
    --color-accent-green: #10B981; /* High-Vibrancy Clean Green */
    --color-accent-amber: #F59E0B; /* Solar Amber */
    
    --color-text-light: #F8FAFC;
    --color-text-dark: #1E293B;
    --color-text-muted: #94A3B8;
    
    --color-bg-dark: #020617;
    --color-bg-light: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --header-height: 80px;
    --container-max: 1280px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent-green);
    color: var(--color-bg-light);
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-primary:hover {
    background-color: #059669; /* Darker green */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   Global Header
   ========================================================================== */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

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

.brand-anchor {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-text-light);
    letter-spacing: -0.02em;
    max-width: 250px;
    line-height: 1.2;
}

/* Navigation */
.directory-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-light);
}

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

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

/* Mega Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::before {
    content: '▾';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.7;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-primary-navy);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 100;
}

.dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-list li {
    margin-bottom: 0.75rem;
}

.dropdown-list li:last-child {
    margin-bottom: 0;
}

.dropdown-list a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: block;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.dropdown-list a:hover {
    color: var(--color-text-light);
    background-color: rgba(255,255,255,0.05);
    padding-left: 1rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
}

/* ==========================================================================
   Hero Slider Engine
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Abstract Backgrounds with Gradients */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Animated scene shows through; slide backgrounds are a consistent dark vignette for text legibility */
.slide[data-index="0"] .slide-bg,
.slide[data-index="1"] .slide-bg,
.slide[data-index="2"] .slide-bg {
    background: radial-gradient(ellipse at 50% 38%, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0.55) 55%, rgba(2, 6, 23, 0.78) 100%);
    background-size: cover;
}

/* ===== Animated Power-Sector Hero Scene ===== */
.hero-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,6,23,0.55) 0%, rgba(2,6,23,0.45) 45%, rgba(2,6,23,0.65) 100%);
}
/* Hero slider sits above the video; text stays on top */
.hero-slider .slider-container { position: relative; z-index: 1; }
.hero-slider .slide-bg { z-index: 0; }
.hero-slider .slide-content { position: relative; z-index: 2; }
.hero-slider .slider-controls { z-index: 20; }

.slide-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s, opacity 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

/* Ensure slide 1 (H1) and others (H2) have identical styling as requested */
h1.slide-title, h2.slide-title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.slide-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-text-muted);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    z-index: 20;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.slider-indicators {
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.indicator.active {
    background: var(--color-accent-green);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* ==========================================================================
   Trust Sub-Banner
   ========================================================================== */
.trust-sub-banner {
    background-color: var(--color-primary-navy);
    color: var(--color-text-light);
    padding: 4rem 0;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.6;
    border-top: 4px solid var(--color-accent-amber);
}

.trust-sub-banner strong {
    color: var(--color-accent-green);
}

/* ==========================================================================
   About Us Styles
   ========================================================================== */
.about-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.4)), url('assets/images/photo-1466611653911-95081537e5b7.jpg') center/cover;
    padding: 5rem 2rem;
    color: white;
    text-align: center;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-split-text {
    background: var(--color-primary-navy);
    color: white;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-split-img {
    background: url('assets/images/photo-1600880292203-757bb62b4baf.jpg') center/cover;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    border-radius: 2px;
    overflow: hidden;
    background: white;
    transition: all 0.4s ease-in-out;
    border-bottom: 4px solid transparent;
}

.leader-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease-in-out;
}

.leader-card:hover .leader-img {
    filter: grayscale(0%);
}

.leader-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--color-accent-amber);
}

.leader-info {
    padding: 1.5rem;
    text-align: center;
}

/* ==========================================================================
   Industries Styles
   ========================================================================== */
.industries-hero {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.industries-hero-img {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    background: url('assets/images/photo-1451187580459-43490279c0fa.jpg') center/cover;
}

.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.zigzag-img-wrapper {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: box-shadow 0.6s ease;
}

.zigzag-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zigzag-row:hover .zigzag-img {
    transform: scale(1.04);
}

.zigzag-row:hover .zigzag-img-wrapper {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

/* ==========================================================================
   Insights Tracker Styles
   ========================================================================== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.insight-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.insight-thumb-wrapper {
    background-color: var(--color-primary-navy);
    height: 200px;
    overflow: hidden;
}

.insight-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-4px);
    border-top: 3px solid var(--color-accent-amber);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.insight-card:hover .insight-thumb {
    mix-blend-mode: normal;
    opacity: 1;
}

.insight-content {
    padding: 2rem;
    flex-grow: 1;
}

/* ==========================================================================
   Contact Us Styles
   ========================================================================== */
.contact-split {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: calc(100vh - 80px); /* minus header */
}

.contact-form-side {
    padding: 4rem 3rem;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-img-side {
    position: relative;
    background: url('assets/images/photo-1558494949-ef010cbdcc31.jpg') center/cover;
    position: sticky;
    top: 0;
    height: 100vh;
}

.contact-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(15, 23, 42, 0.8));
    animation: pulseOpacity 4s infinite alternate;
}

@keyframes pulseOpacity {
    0% { opacity: 0.7; }
    100% { opacity: 0.95; }
}

.clean-form input,
.clean-form select,
.clean-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: transparent;
}

.clean-form input:focus,
.clean-form select:focus,
.clean-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-amber);
}

/* ==========================================================================
   Responsive Rules
   ========================================================================== */
/* ==========================================================================
   Shared Component Styles
   ========================================================================== */
.section-padding {
    padding: 4rem 0;
}

.bg-light {
    background-color: #F8FAFC;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-accent-green);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-header {
    margin-bottom: 4rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* ==========================================================================
   About Split Section
   ========================================================================== */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.split-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Capabilities Grid
   ========================================================================== */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.capability-card {
    background-color: var(--color-bg-light);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
    z-index: 2;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.card-image-banner {
    height: 162px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.8s ease;
}

.capability-card:hover .card-image-banner {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-light);
    position: relative;
    z-index: 1;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 1rem;
}

.capability-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    font-weight: 600;
    color: var(--color-accent-green);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
    align-self: flex-start;
}

.card-link:hover {
    color: #059669;
    padding-left: 0.5rem;
}
/* ==========================================================================
   Market Verticals Matrix
   ========================================================================== */
.verticals-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vertical-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: flex-end;
    transition: var(--transition-smooth);
}

.vertical-item:hover {
    transform: translateY(-10px);
}

.vertical-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.vertical-item:hover .vertical-bg {
    transform: scale(1.1);
}

.vertical-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0) 100%);
}

.vertical-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: var(--color-text-light);
}

.vertical-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vertical-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Breakout Capture CTA
   ========================================================================== */
.breakout-cta {
    background-color: var(--color-primary-navy);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.breakout-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.75rem);
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cta-content h2 {
        white-space: normal;
    }
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--color-accent-amber);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Global Institutional Footer Component
   ========================================================================== */
.global-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-muted);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}
.footer-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
}
.global-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.company-overview {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.validation-marker {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.global-footer h4 {
    color: var(--color-text-light);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-audience ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer-audience ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent-green);
}

.contextual-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contextual-form input,
.contextual-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    font-family: inherit;
}

.contextual-form input:focus,
.contextual-form select:focus {
    outline: none;
    border-color: var(--color-accent-green);
}

.footer-verification p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-verification strong {
    color: var(--color-text-light);
}

.footer-stripline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--color-text-light);
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    padding: 1.25rem 0 0.25rem;
}
.footer-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social .social-icon:hover {
    background: var(--color-accent-green);
    color: #fff;
    border-color: var(--color-accent-green);
}

/* Mobile Menu Open State */
@media (max-width: 1024px) {
    .directory-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-primary-navy);
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        z-index: 999;
    }
    .directory-menu.mobile-open .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .directory-menu.mobile-open .mega-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.04);
        padding: 0.75rem 1rem;
    }
    .directory-menu.mobile-open .dropdown:hover .mega-dropdown {
        transform: none;
    }
}

/* ==========================================================================
   Inner Page & Service Blueprint Styles
   ========================================================================== */
.inner-page-content {
    background-color: var(--color-bg-light);
    min-height: 60vh;
}

.breadcrumb-ui {
    padding: 2rem 2rem 0 2rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.breadcrumb-ui a {
    color: var(--color-accent-green);
    text-decoration: none;
}

.breadcrumb-ui a:hover {
    text-decoration: underline;
}

.title-frame {
    padding: 2rem 2rem 1rem 2rem;
}

.page-h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    border-bottom: 4px solid var(--color-accent-green);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.inclusions-matrix {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.inclusions-matrix h3 {
    font-size: 1.5rem;
    color: var(--color-primary-navy);
    margin-bottom: 2rem;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.matrix-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-accent-amber);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: var(--transition-fast);
}

.matrix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.matrix-card h4 {
    font-size: 1.125rem;
    color: var(--color-primary-navy);
    margin-bottom: 0.5rem;
}

.matrix-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Hero Eyebrow
   ========================================================================== */
.hero-eyebrow {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-accent-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 2rem;
    padding: 0.35rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Stats Impact Bar
   ========================================================================== */
.stats-bar {
    background: var(--color-primary-navy);
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--color-accent-green);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   About Checklist
   ========================================================================== */
.about-checklist {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.check-icon {
    color: var(--color-accent-green);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   Service Cards — Icon Banner Variant
   ========================================================================== */
.card-icon-banner {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-navy) 0%, #1e3a5f 100%);
}

.card-icon-banner svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-accent-green);
    opacity: 0.9;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--color-primary-navy);
    border: 2px solid var(--color-primary-navy);
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.btn-outline:hover {
    background: var(--color-primary-navy);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-section {
    background: #F8FAFC;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 2px;
    background: linear-gradient(to right, var(--color-accent-green), var(--color-accent-amber));
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-number {
    width: 5rem;
    height: 5rem;
    background: var(--color-primary-navy);
    color: var(--color-accent-green);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--color-accent-green);
    box-shadow: 0 0 0 6px rgba(16,185,129,0.08);
}

.process-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 0.75rem;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.bg-dark-navy {
    background-color: var(--color-primary-navy);
}

.section-title--light {
    color: var(--color-text-light) !important;
}

.section-badge--light {
    background: rgba(16,185,129,0.15);
    color: var(--color-accent-green);
    border: 1px solid rgba(16,185,129,0.3);
}

.section-badge--amber {
    background: rgba(245,158,11,0.15);
    color: var(--color-accent-amber);
    border: 1px solid rgba(245,158,11,0.3);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.why-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(16,185,129,0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
}

.why-icon svg {
    width: 3rem;
    height: 3rem;
    stroke: var(--color-accent-green);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 1rem;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: var(--transition-smooth);
    border-top: 4px solid var(--color-accent-amber);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-quote {
    font-size: 5rem;
    line-height: 1;
    color: var(--color-accent-green);
    font-weight: 800;
    margin-bottom: -1rem;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--color-primary-navy);
    color: var(--color-accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary-navy);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: flex-start;
}

.faq-header p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-top: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(15,23,42,0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--color-accent-green);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.975rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* ==========================================================================
   Responsive Rules
   ========================================================================== */
@media (max-width: 1200px) {
    .verticals-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .directory-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-action {
        display: none;
    }

    .split-container {
        grid-template-columns: 1fr;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-grid .stat-item:nth-child(3) {
        border-right: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid::before {
        display: none;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .slider-controls {
        padding: 0 1.5rem;
        bottom: 1.5rem;
    }

    .slide-bg {
        background-blend-mode: overlay;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .verticals-matrix {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-stripline {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child {
        border-bottom: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   Service Inner Page Enhancements
   ========================================================================== */
.service-hero {
    position: relative;
    padding: 8rem 2rem 6rem;
    text-align: center;
    color: white;
    background-color: var(--color-primary-navy);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-bottom: 4px solid var(--color-accent-green);
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
    z-index: 1;
}

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

.service-body-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-body-split .split-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-primary-navy);
}

.service-body-split .split-image {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.service-body-split .split-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-body-split .split-image:hover img {
    transform: scale(1.05);
}

.matrix-card {
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}
.matrix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--color-accent-green);
}

@media (max-width: 992px) {
    .service-body-split {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Home Split Container (Corporate Profile)
   ========================================================================== */
/* Who We Are Section */
.who-we-are-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}
.wwa-left {
    background: #ffffff;
    display: flex;
    align-items: center;
}
.wwa-left-inner {
    padding: 5rem 4rem;
}
.wwa-left h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1.25;
    margin: 1rem 0 1.25rem;
}
.wwa-left p {
    font-size: 0.95rem;
    color: rgba(10, 25, 60, 0.75);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.wwa-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.75rem;
}
.wwa-pillar {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.wwa-pillar-icon {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    flex-shrink: 0;
    margin-top: 2px;
}
.wwa-pillar div strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 0.15rem;
}
.wwa-pillar div span {
    font-size: 0.8rem;
    color: rgba(10, 25, 60, 0.65);
    line-height: 1.5;
}

/* Right side */
.wwa-right {
    background: #F1F5F9;
    display: flex;
    flex-direction: column;
}
.wwa-image-block {
    position: relative;
    flex: 1;
    overflow: hidden;
}
.wwa-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 380px;
}
.wwa-badge-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.4rem;
    box-shadow: 0 4px 20px rgba(10,25,60,0.18);
    text-align: center;
    border-left: 4px solid var(--color-accent-green);
}
.wwa-badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1;
}
.wwa-badge-label {
    font-size: 0.72rem;
    color: #666;
    margin-top: 0.3rem;
    line-height: 1.4;
    font-weight: 500;
}
.wwa-metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--color-accent-green);
}
.wwa-metric {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.wwa-metric:last-child { border-right: none; }
.wwa-metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.wwa-metric-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.3rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .who-we-are-section { grid-template-columns: 1fr; }
    .wwa-left-inner { padding: 3.5rem 2rem; }
    .wwa-image-block img { min-height: 280px; }
}
@media (max-width: 600px) {
    .wwa-left-inner { padding: 2.5rem 1.5rem; }
    .wwa-metric-value { font-size: 1.2rem; }
}

.home-corporate-profile {
    background-color: var(--color-bg-light);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.split-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================================================
   Modern Power Sector UI Enhancements
   ========================================================================== */

/* Power Pulse Animation for Primary Buttons */
@keyframes powerPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-primary {
    animation: powerPulse 2s infinite;
}
.btn-primary:hover {
    animation: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Neon Glow for Matrix Cards */
.matrix-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.matrix-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.matrix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1), 0 5px 15px rgba(0,0,0,0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.matrix-card:hover::after {
    transform: scaleX(1);
}

@media (max-width: 992px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Floating UI: WhatsApp button, Sticky mobile CTA, Success toast
   ═══════════════════════════════════════════════════════════════════════════ */

/* Success toast (shown on ?success=1 redirect) */
.ir-toast {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    z-index: 9999;
    max-width: 92%;
    width: 460px;
    background: #ECFDF5;
    border: 1.5px solid #10B981;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
    font-family: var(--font-primary);
}
.ir-toast.show { transform: translateX(-50%) translateY(0); }
.ir-toast svg { flex-shrink: 0; width: 22px; height: 22px; stroke: #10B981; margin-top: 1px; }
.ir-toast-text { flex: 1; }
.ir-toast-text strong { display: block; color: #065F46; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.ir-toast-text span { color: #047857; font-size: 0.85rem; line-height: 1.45; }
.ir-toast-close { background: none; border: none; cursor: pointer; color: #047857; font-size: 1.25rem; line-height: 1; padding: 0 0.25rem; opacity: 0.6; }
.ir-toast-close:hover { opacity: 1; }

/* WhatsApp floating button */
.ir-whatsapp {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 9000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.ir-whatsapp:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }
.ir-whatsapp svg { width: 30px; height: 30px; fill: #fff; }

/* Sticky mobile CTA bar (mobile only) */
.ir-sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8900;
    background: var(--color-primary-navy);
    padding: 0.6rem 0.85rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.22);
}
.ir-sticky-cta a {
    display: block;
    background: var(--color-accent-green);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem;
    border-radius: 0.6rem;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.ir-sticky-cta a:active { background: #059669; }

@media (max-width: 768px) {
    .ir-sticky-cta { display: block; }
    /* lift WhatsApp button above the sticky bar */
    .ir-whatsapp { bottom: 5rem; right: 1rem; width: 52px; height: 52px; }
    .ir-whatsapp svg { width: 27px; height: 27px; }
}
