:root {
    /* Brand Colors */
    --primary-blue: #0f2c4a;
    /* Deep Professional Navy */
    --secondary-blue: #2c5aa0;
    /* Trustworthy Medium Blue */
    --accent-orange: #e67e22;
    /* Action/Highlight (Call to actions) */
    --accent-orange-hover: #d35400;

    /* Neutrals */
    --bg-light: #f8fbff;
    /* Very subtle cool tint for backgrounds */
    --bg-white: #ffffff;
    --text-main: #333333;
    /* Dark Grey for readability */
    --text-muted: #666666;
    /* Secondary text */
    --border-color: #e0e6ed;

    /* System */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 44, 74, 0.08);
    --shadow-lg: 0 8px 24px rgba(15, 44, 74, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.3s ease;

    /* Optional Luxury Accent (for premium buyers) */
    --accent-gold: #d4af37;
}

/* ================================
   GLOBAL VISUAL POLISH (Enterprise-Grade)
================================ */

/* Smooth scroll only on desktop - Mobile uses native momentum */
@media (min-width: 768px) {
    html {
        scroll-behavior: smooth;
    }
}

@media (max-width: 767px) {
    html {
        scroll-behavior: auto !important;
    }
}

html {
    -webkit-tap-highlight-color: transparent;
}

/* ================================
   SKELETON LOADING & LAYOUT SHIFT PREVENTION
   ================================ */

/* Skeleton Shimmer Animation */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Skeleton Loader Base */
.skeleton-loader {
    background: linear-gradient(90deg,
            #f0f0f0 25%,
            #e8e8e8 37%,
            #f0f0f0 63%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* Remove skeleton after image loads */
.skeleton-loader.loaded {
    animation: none;
    background: transparent;
}

/* Product Card Layout Shift Prevention */
.product-item {
    min-height: 380px;
}

.product-card {
    min-height: 100%;
}

/* Image Wrapper Stabilization */
.img-wrapper {
    min-height: 160px;
    background-color: #f5f5f5;
    position: relative;
}

/* Smooth Image Fade-in */
.img-wrapper img {
    transition: opacity 0.3s ease;
}

.img-wrapper img.loaded,
.img-wrapper.loaded img {
    opacity: 1 !important;
}

/* Image Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ================================
   BFCACHE-SAFE PRODUCT FILTERING
   ================================
   Uses display:none for proper grid reflow.
   Hidden products are completely removed from grid flow.
*/

/* Primary hiding mechanism - uses display:none for proper grid reflow */
.product-hidden {
    /* CRITICAL: display:none removes item from grid flow entirely */
    /* This ensures remaining products fill gaps uniformly */
    display: none !important;

    /* Prevent interaction as a fallback */
    pointer-events: none !important;

    /* NOTE: Do NOT use visibility/height collapse - keeps items in grid flow */
    /* NOTE: Do NOT use contain:strict - it blocks paint of descendants */
}

/* Force visible state - NO aggressive containment */
.product-item:not(.product-hidden) {
    /* Ensure non-hidden items are fully visible */
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 380px;
    overflow: visible !important;

    /* Safe containment - does NOT block paint */
    /* contain: none - explicitly disable any inherited containment */
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(44, 90, 160, 0.06), transparent),
        radial-gradient(800px 400px at -10% 10%, rgba(230, 126, 34, 0.05), transparent),
        var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Better text rendering for interactive elements */
button,
input,
textarea {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Accessibility + Professionalism: Focus Visible */
:focus-visible {
    outline: 3px solid rgba(230, 126, 34, 0.6);
    outline-offset: 3px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Product list specific grid - uniform card heights for responsive consistency */
.grid-3.product-list-container {
    grid-auto-rows: minmax(380px, auto);
    align-content: start;
    /* Account for sticky header + search bar when scrollIntoView is called */
    scroll-margin-top: 180px;
}

/* Responsive adjustments for product grid */
@media (max-width: 768px) {
    .grid-3.product-list-container {
        grid-auto-rows: minmax(340px, auto);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .grid-3.product-list-container {
        grid-auto-rows: minmax(320px, auto);
        gap: 15px;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

/* Product Detail Page - Desktop Optimization */
@media (min-width: 769px) {
    .product-detail-grid {
        align-items: start;
    }

    .product-gallery img {
        position: sticky;
        top: 20px;
        max-height: 600px !important;
    }

    .product-info {
        min-height: 600px;
    }

    .product-info .description {
        margin-bottom: 25px !important;
        line-height: 1.9 !important;
    }

    .specs-box {
        margin: 30px 0 !important;
    }
}

/* Product Detail - Mobile Responsive */
@media (max-width: 768px) {
    .product-gallery {
        float: none !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }

    .product-info-flow h1 {
        font-size: 1.8rem !important;
    }
}


/* Buttons (Enterprise Micro-Interactions) */
.btn,
.button,
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition:
        transform var(--trans-fast),
        box-shadow var(--trans-fast),
        background var(--trans-fast);
}

/* Shimmer effect on hover */
.btn::after,
.button::after,
.cta-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 20%,
            rgba(255, 255, 255, 0.35),
            transparent 80%);
    transform: translateX(-120%);
}

.btn:hover::after,
.button:hover::after,
.cta-btn:hover::after {
    transform: translateX(120%);
    transition: transform 0.6s ease;
}

.btn:hover,
.button:hover,
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 44, 74, 0.25);
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
}

.btn-secondary:hover {
    background-color: var(--secondary-blue);
    color: white;
}



/* HERO SECTION (Cinematic Upgrade) */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    /* Fallback */
    height: calc(100svh - 120px);
    /* Stable mobile height (prevents address bar resize jumps) */
    /* adjust if header height changes */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Cinematic gradient overlay layer */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(15, 44, 74, 0.75) 0%,
            rgba(15, 44, 74, 0.55) 40%,
            rgba(15, 44, 74, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

/* VIDEO BACKGROUND */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* DARK OVERLAY FOR BETTER TEXT VISIBILITY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 44, 74, 0.4);
    /* Reduced opacity since we have cinematic gradient */
    z-index: 1;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    /* light text color on dark overlay */
    max-width: 900px;
    padding: 0 20px;
}

/* HERO TEXT (Cinematic) */
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.35),
        0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-content p {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    margin-bottom: 30px;
    line-height: 1.5;
    color: #f1f1f1;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: #f5821f;
    /* orange */
    color: #fff;
}

.btn-primary:hover {
    background: #e06e00;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #0f2c4a;
}

/* RESPONSIVE HERO HEIGHT */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .hero-content p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Contact Bar Layout */
.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info a {
    white-space: nowrap;
}

@media(max-width: 600px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* User Requested Scroll Safety Override - GLOBAL */
.card,
.product-card,
.leader-card,
.category-card,
.diff-card,
.premium-card {
    touch-action: pan-y pinch-zoom !important;
}

/* ACCORDION FLIP CARD STYLES - Premium Restore */
.flip-card {
    position: relative;
    width: 100%;
    min-height: 380px;

    /* CRITICAL: Scroll Safety */
    touch-action: pan-y pinch-zoom !important;

    perspective: 1000px;
    margin-bottom: 30px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* The element that flips */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;

    /* SLOW & SMOOTH FLIP */
    /* SLOW & SMOOTH FLIP */
    transition: transform 0.8s ease-in-out;

    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 16px;

    /* Performance Optimization */
    will-change: transform;
}

/* Flipped State - Triggered by JS */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* CRITICAL: When flipped, promote back face to ensure buttons are clickable */
.flip-card.flipped .flip-card-back {
    z-index: 10;
}

.flip-card.flipped .flip-card-front {
    z-index: 1;
}

/* Uniqueness: Slight scale pulse when active/flipping */
.flip-card:active .flip-card-inner {
    transform: scale(0.98);
}

/* IMPORTANT: Preserve rotation when active on selected card */
.flip-card.flipped:active .flip-card-inner {
    transform: rotateY(180deg) scale(0.98);
}

/* DESKTOP HOVER BEHAVIOR */
@media (min-width: 992px) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card:hover .flip-card-back {
        z-index: 10;
    }

    .flip-card:hover .flip-card-front {
        z-index: 1;
    }
}

/* Common Face Styles */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background: white;
    overflow: hidden;
}

/* Front Face */
.flip-card-front {
    background: white;
    border-top: 4px solid var(--accent-orange);
    z-index: 2;
}

/* Back Face - Attractive Brand Styling */
.flip-card-back {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
    /* Stronger light blue */
    transform: rotateY(180deg);
    border: 2px solid var(--secondary-blue);
    /* Restored brand border */
    z-index: 1;
    box-shadow: inset 0 0 20px rgba(10, 102, 194, 0.05);
}

/* Ensure content on back is visible and high-contrast */
.flip-card-back h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    display: block !important;
}

.flip-card-back p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: block !important;
}

.flip-card-back .btn {
    display: inline-block !important;
    opacity: 1 !important;
    transform: none !important;
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Icon Styles - Standard Clean Look */
.flip-card-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary-blue);
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-icon,
.flip-card.flipped .flip-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-blue);
    color: white;
}

/* Reduced Motion: Disable all transforms */
@media (prefers-reduced-motion: reduce) {
    .flip-card-inner {
        will-change: auto;
    }

    .flip-card-icon {
        transform: none !important;
    }
}

/* Step Number Badge for Process Section */
.step-badge {
    position: absolute;
    top: -15px;
    background: var(--primary-blue);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
    box-shadow: 0 4px 8px rgba(15, 44, 74, 0.3);
    z-index: 10;
}



/* --- UNIQUE FOOTER STYLES --- */
.main-footer {
    background-color: var(--primary-blue);
    color: white;
    padding-top: 45px;
    margin-top: 0;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-brand {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-orange);
    display: inline-block;
    padding-bottom: 8px;
}

.footer-desc {
    color: #cbd5e0;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 90%;
    font-size: 0.85rem;
}

.badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 0.68rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 6px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-heading {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(3px);
}

.footer-contact-info p {
    color: #cbd5e0;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.footer-contact-info i {
    color: var(--accent-orange);
    margin-top: 3px;
    width: 16px;
}

.footer-social {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    text-align: center;
    color: #888;
    font-size: 0.78rem;
}

.footer-bottom a {
    color: #888;
    margin: 0 8px;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: white;
}

.mobile-only {
    display: none;
}

@media (min-width: 769px) {

    .accordion-col,
    .contact-col {
        text-align: center;
    }

    .accordion-col .footer-heading,
    .contact-col .footer-heading {
        justify-content: center;
    }

    .contact-col .footer-contact-info p {
        justify-content: center;
    }

    .contact-col .footer-social {
        justify-content: center;
    }
}

/* --- MOBILE FOOTER (ACCORDION) --- */
@media (max-width: 768px) {
    .main-footer {
        padding-top: 40px;
    }

    .footer-grid {
        display: block;
        /* Stack columns */
        padding-bottom: 20px;
    }

    .footer-col {
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        /* Separator lines */
        padding-bottom: 20px;
    }

    .footer-col:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    /* Accordion Behavior */
    .accordion-col .footer-links {
        display: none;
        /* Hidden by default on mobile */
        padding-top: 10px;
        padding-left: 10px;
    }

    .accordion-col.active .footer-links {
        display: block;
        /* Show when active */
        animation: fadeIn 0.3s ease;
    }

    .accordion-col .footer-heading {
        cursor: pointer;
        margin-bottom: 0;
        /* Remove margin when collapsed */
        padding: 10px 0;
        /* Enhance tap target */
        justify-content: space-between;
        /* Restore justify-between for arrow */
    }

    .accordion-col.active .footer-heading {
        margin-bottom: 10px;
        color: var(--accent-orange);
    }

    .mobile-only {
        display: inline-block;
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

    .accordion-col.active .mobile-only {
        transform: rotate(180deg);
    }

    /* Center Align Brand & Contact on Mobile */
    .brand-col,
    .contact-col,
    .footer-bottom {
        text-align: center;
    }

    .footer-badges {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* --- LEADERSHIP SECTION STYLES --- */
.leadership-section {
    padding: 70px 0;
    background: #f8fafc;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a2e5c;
}

.section-subtitle {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.leaders-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.leader-card {
    /* Extending .premium-card styles */
    padding: 25px 25px 35px;
    text-align: center;
}

.leader-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    /* Fix for cutting off heads */
    border: 4px solid #eaeaea;
    margin-bottom: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Added shadow to image */
}

.leader-name {
    margin-top: 18px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
}

.leader-role {
    color: var(--accent-orange);
    /* Use brand variable */
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.leader-bio {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile Responsiveness for Leadership */
@media(max-width: 768px) {
    .leaders-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Premium Card (Reusable) */
.premium-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 44, 74, 0.12);
}

/* Form Controls */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-blue);
    background: white;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

/* Section Header Shared Style */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Icon List (Contextual Info) */
.icon-list-item {
    display: flex;
    align-items: flex-start;
    /* Align top for multi-line address */
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1rem;
}

.icon-list-item i {
    color: var(--secondary-blue);
    font-size: 1.2rem;
    margin-top: 3px;
    /* visual alignment */
    width: 24px;
    text-align: center;
}

.icon-list-item strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 4px;
}

/* --- LEADERSHIP & HOMEPAGE PREVIEW STYLES --- */

/* --- UNIQUE LEADERSHIP REFINEMENTS --- */

/* Quote Styling */
.leader-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 0 20px;
    position: relative;
    line-height: 1.5;
}

.leader-quote::before,
.leader-quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent-orange);
    opacity: 0.2;
    position: absolute;
}

.leader-quote::before {
    left: 0;
    top: -10px;
}

.leader-quote::after {
    right: 0;
    bottom: -20px;
}

/* Expertise Badges */
.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.leader-expertise span {
    background: #f1f5f9;
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Signature Look */
.leader-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: var(--primary-blue);
    opacity: 0.8;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Update Card Inner Flow */
.leader-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-bio {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 15px;
}

/* Main Leadership Section (About page) */
.leadership-section {
    padding: 70px 0;
    background: #f8fafc;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a2e5c;
}

.section-subtitle {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.leaders-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.leader-card {
    padding: 25px 25px 35px;
    text-align: center;
}

.leader-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 4px solid #eaeaea;
    margin-bottom: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.leader-name {
    margin-top: 18px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
}

.leader-role {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.leader-bio {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* --- HOMEPAGE LEADERSHIP PREVIEW --- */
.home-leader-preview {
    padding: 60px 0;
    text-align: center;
    background: #f8fafc;
    border-top: 1px solid #eee;
}

.home-leader-preview h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-weight: 700;
}

.home-leader-preview .leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto 35px;
}

.home-leader-preview .leader-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
    text-align: center;
}

.home-leader-preview .leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 44, 74, 0.1);
}

.home-leader-preview .leader-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin-bottom: 15px;
    border: 4px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.home-leader-preview h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.home-leader-preview p {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 0;
}

.btn-view-leadership {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(15, 44, 74, 0.2);
}

.btn-view-leadership:hover {
    background: var(--secondary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 44, 74, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .leaders-wrapper,
    .home-leader-preview .leaders-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Small Screen Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .premium-card {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* ================================
   ENTERPRISE VISUAL ENHANCEMENTS
================================ */

/* Universal Card Depth & Focus Control */
.card,
.premium-category-card,
.product-card,
.trust-badge,
.leader-card,
.product-item {
    background: var(--bg-white);
    border: 1px solid rgba(15, 44, 74, 0.08);
    transition:
        transform var(--trans-normal),
        box-shadow var(--trans-normal),
        border-color var(--trans-normal);
}

.card:hover,
.premium-category-card:hover,
.product-card:hover,
.product-item:hover {
    transform: translateY(-6px);
    border-color: rgba(44, 90, 160, 0.35);
    box-shadow:
        0 18px 40px rgba(15, 44, 74, 0.18),
        0 2px 6px rgba(15, 44, 74, 0.08);
}

/* Product Images → Catalog-Grade Finish */
.product-card img,
.product-item img,
.card-image {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.product-card:hover img,
.product-item:hover img,
.premium-category-card:hover .card-image {
    transform: scale(1.08);
    filter: contrast(1.05) saturate(1.05);
}

/* Header Enterprise Stabilization */
.main-header.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Mobile UX → Premium Touch Feedback */
@media (max-width: 768px) {

    .btn,
    .button,
    .cta-btn,
    .product-card,
    .product-item,
    .premium-category-card {
        -webkit-tap-highlight-color: transparent;
    }

    .btn:active,
    .button:active,
    .cta-btn:active {
        transform: scale(0.96);
    }

    /* Improve touch targets */
    .product-card,
    .product-item {
        min-height: 44px;
    }
}