/* Modern Premium CSS styling for ADWHS Solutions */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette (Navy Blue and Black Theme) */
    --color-primary: #000000;
    /* Deep Black */
    --color-accent: #1E40AF;
    /* Navy Blue Accent */
    --color-light-blue: #EFF6FF;
    /* Soft Light Blue Background Accent */
    --color-highlight-1: #1E40AF;
    /* Navy Blue Highlight */
    --color-highlight-2: #0F172A;
    /* Very Dark Blue/Grey Highlight */

    /* Theme Colors (Light Theme) */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --border-color: #E2E8F0;

    /* Layout */
    --max-width: 1280px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Responsive/Fluid Typography (Min px, Viewport scaling, Max px) */
    --fs-hero-title: clamp(24px, 4vw + 12px, 56px);
    --fs-hero-desc: clamp(14px, 0.5vw + 13px, 18px);

    --fs-h2: clamp(22px, 2.5vw + 14px, 40px);
    --fs-h3: clamp(22px, 2vw + 14px, 36px);
    --fs-h4: clamp(18px, 1.5vw + 12px, 24px);

    --fs-subtitle: 14px;

    --fs-card-title-lg: clamp(16px, 1vw + 12px, 22px);
    --fs-card-title-md: clamp(16px, 0.4vw + 14px, 20px);
    --fs-card-title-sm: clamp(15px, 0.3vw + 12px, 18px);

    --fs-body-lg: clamp(13px, 0.5vw + 11px, 16px);
    --fs-body-md: clamp(12.5px, 0.4vw + 11.5px, 15px);
    --fs-body-sm: clamp(12px, 0.1vw + 12px, 13.5px);

    --fs-counter: clamp(28px, 1.5vw + 22px, 40px);
    --fs-btn: clamp(14px, 0.1vw + 14px, 15px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 13px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .logo-img {
        height: 65px;
        width: auto;
    }
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        gap: 20px;
        align-items: center;
    }
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.caret {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
    border-radius: 4px;
    list-style: none;
    min-width: 240px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 200;
}

.dropdown-menu li {
    width: 100%;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: static;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    color: var(--color-accent);
    background-color: var(--bg-secondary);
    padding-left: 28px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 991px) {
    .navbar-collapse,
    .collapsing {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        box-shadow: 0 10px 30px rgba(11, 37, 69, 0.12);
        padding: 10px 24px 20px 24px;
        z-index: 999;
        border-bottom: 2px solid var(--color-accent);
        border-top: 1px solid var(--border-color);
        max-height: 85vh;
        overflow-y: auto;
    }

    .nav-links {
        gap: 16px;
        padding: 16px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 20px !important;
        background-color: transparent !important;
        display: none;
    }

    .dropdown.show .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        display: block !important;
    }
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Custom Banner Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 700px;
    background-color: var(--bg-tertiary);
    overflow: hidden;
}

/* Slide Content */
.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Ken Burns background zoom effect */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

/* Semi-transparent Overlay to ensure text readability */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 37, 69, 0.9) 20%, rgba(11, 37, 69, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.slide-content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    z-index: 3;
    position: relative;
}

.slide-info {
    max-width: 650px;
    color: #FFFFFF;
}

.slide-badge {
    background: rgba(0, 168, 228, 0.15);
    border: 1px solid rgba(0, 168, 228, 0.4);
    color: var(--color-light-blue);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: var(--fs-body-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.slide-title {
    font-size: var(--fs-hero-title);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.slide-description {
    font-size: var(--fs-hero-desc);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.slide-actions {
    display: flex;
    gap: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

/* Animations for Active Slide Text Content */
.slide.active .slide-badge,
.slide.active .slide-title,
.slide.active .slide-description,
.slide.active .slide-actions {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 4px;
    font-size: var(--fs-btn);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(11, 37, 69, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Custom Geometric Curtain Wipe Overlay */
.slider-curtains {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    display: flex;
}

.curtain-panel {
    flex: 1;
    height: 100%;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Dynamic colors matching the logo */
.curtain-panel:nth-child(1) {
    background-color: var(--color-primary);
    transform-origin: left;
}

.curtain-panel:nth-child(2) {
    background-color: var(--color-accent);
    transform-origin: left;
}

.curtain-panel:nth-child(3) {
    background-color: var(--color-light-blue);
    transform-origin: left;
}

.curtain-panel:nth-child(4) {
    background-color: var(--color-highlight-2);
    transform-origin: left;
}

/* WIPE IN state: panels scale to 1 (left-to-right staggered wipe) */
.slider-container.wipe-in .curtain-panel:nth-child(1) {
    transform: scaleX(1);
    transition-delay: 0s;
}

.slider-container.wipe-in .curtain-panel:nth-child(2) {
    transform: scaleX(1);
    transition-delay: 0.1s;
}

.slider-container.wipe-in .curtain-panel:nth-child(3) {
    transform: scaleX(1);
    transition-delay: 0.2s;
}

.slider-container.wipe-in .curtain-panel:nth-child(4) {
    transform: scaleX(1);
    transition-delay: 0.3s;
}

/* WIPE OUT state: panels scale to 0 (collapsing to right staggered) */
.slider-container.wipe-out .curtain-panel:nth-child(1) {
    transform: scaleX(0);
    transform-origin: right;
    transition-delay: 0s;
}

.slider-container.wipe-out .curtain-panel:nth-child(2) {
    transform: scaleX(0);
    transform-origin: right;
    transition-delay: 0.1s;
}

.slider-container.wipe-out .curtain-panel:nth-child(3) {
    transform: scaleX(0);
    transform-origin: right;
    transition-delay: 0.2s;
}

.slider-container.wipe-out .curtain-panel:nth-child(4) {
    transform: scaleX(0);
    transform-origin: right;
    transition-delay: 0.3s;
}

/* Navigation Controls */
.slider-controls {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 15;
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: #FFFFFF;
    color: var(--color-primary);
    border-color: #FFFFFF;
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: var(--color-accent);
    z-index: 15;
    width: 0;
    transition: width 5s linear;
}

/* Features/Brief Section (For context below the banner) */
.info-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 50px 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 48px 32px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.05);
    border-color: var(--color-accent);
}

.card-num {
    font-size: var(--fs-counter);
    font-weight: 800;
    color: rgba(0, 168, 228, 0.15);
    line-height: 1;
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: var(--fs-card-title-md);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: var(--fs-body-md);
}

/* Footer Section */
footer {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 30px 32px 10px;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 48px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Contact Info styles */
.footer-contact-info {
    margin-top: 16px;
}
.footer-contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.footer-contact-item a:hover {
    color: #FFFFFF;
    padding-left: 3px;
}
.footer-contact-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-size: 14px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.footer-contact-item:hover .footer-contact-icon-wrapper {
    background-color: var(--color-accent);
    transform: scale(1.1);
}
.footer-contact-item:hover .whatsapp-wrapper {
    background-color: #25D366;
}

/* Page Entrance Stagger Reveal */
header {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

body.is-loaded header {
    transform: translateY(0);
    opacity: 1;
}

.slider-container {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-loaded .slider-container {
    opacity: 1;
    transform: scale(1);
}

.info-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-loaded .info-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

body.is-loaded .info-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

body.is-loaded .info-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Modern About Section (Image Left, Content Right) */
.about-section {
    background-color: var(--bg-secondary);
    padding: 50px 32px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-loaded .about-section {
    opacity: 1;
    transform: translateY(0);
}

/* ─── About Section — Card Grid Redesign ──────────────────────────────────── */
.about-cg-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: flex-start;
}

/* ── Image Column / Expertise Visual ── */
.about-cg-image-col {
    position: relative;
}

/* ─── Expertise Visual: "29 Years of Expertise" text-clip ─── */
.expertise-visual {
    background: transparent;
    padding: 0px 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
}

/* no pseudo-element needed without dark background */

/* Corner accent dots */
.expertise-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.6;
}

.expertise-dot--tl {
    top: 20px;
    left: 20px;
}

.expertise-dot--br {
    bottom: 20px;
    right: 20px;
}

/* ── Big clipped number ── */
.expertise-number-wrap {
    position: relative;
    z-index: 2;
    line-height: 1;
}

.expertise-number {
    font-size: clamp(200px, 28vw, 320px);
    font-weight: 900;
    letter-spacing: -16px;
    line-height: 0.88;
    display: block;

    /* Warehouse image clipped inside the number shape */
    background-image: url('/media/banners/hero_banner.png');
    background-size: cover;
    background-position: center 30%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    font-family: 'Poppins', sans-serif;
    user-select: none;
}

/* ── Tagline ── */
.expertise-tagline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 0;
    line-height: 1.1;
}

.expertise-years-of {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
}

.expertise-word {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    /* Fade-out gradient matching the reference */
    background: linear-gradient(to bottom,
            var(--color-accent) 0%,
            rgba(30, 64, 175, 0.55) 50%,
            rgba(30, 64, 175, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── Floating badge at the bottom ── */
.expertise-badge {
    position: relative;
    margin-top: 24px;
    z-index: 4;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.08);
    padding: 10px 20px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: expBadgePulse 3s ease-in-out infinite;
}

@keyframes expBadgePulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.expertise-badge-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #10B981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.expertise-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.expertise-badge-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
}

.expertise-badge-text span {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 576px) {
    .expertise-visual {
        padding: 24px 16px 48px;
        min-height: 380px;
    }

    .expertise-number {
        letter-spacing: -10px;
    }
}


.about-cg-img-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(11, 37, 69, 0.14);
}

.about-cg-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-cg-img-card:hover .about-cg-img {
    transform: scale(1.04);
}

/* Accent strip at bottom of image card */
.about-cg-img-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-light-blue) 100%);
}

/* Floating badges on image card */
.about-cg-badge {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 28px rgba(11, 37, 69, 0.12);
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: acgBadgeFloat 3.5s ease-in-out infinite;
}

.about-cg-badge--tl {
    top: 24px;
    left: 24px;
    animation-delay: 0s;
}

.about-cg-badge--br {
    bottom: 28px;
    right: 24px;
    animation-delay: 1.2s;
}

@keyframes acgBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.acg-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.acg-badge-icon--check {
    background: #10B981;
}

.acg-badge-body {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.acg-badge-body strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

.acg-badge-body span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Content Column ── */
.about-cg-content-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 0;
}

/* Top text block */
.about-cg-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-cg-text .about-subtitle {
    margin-bottom: 12px;
}

.about-cg-text .about-title {
    margin-bottom: 20px;
}

.about-cg-text .about-desc {
    margin-bottom: 28px;
}

/* Shared text styles used inside about-cg-text */
.about-subtitle {
    color: var(--color-accent);
    font-weight: 700;
    font-size: var(--fs-subtitle);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

.about-title {
    font-size: var(--fs-h2);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.about-desc {
    color: var(--text-secondary);
    font-size: var(--fs-body-lg);
    line-height: 1.7;
}


.about-cg-btn {
    align-self: flex-start;
}

/* 4-card Stats Row below the grid */
.about-cg-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
    width: 100%;
}

.about-cg-stat-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--color-accent);
    border-radius: 10px;
    padding: 28px 24px 24px;
    box-shadow: 0 2px 12px rgba(11, 37, 69, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-cg-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.about-cg-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.08);
    border-top-color: var(--color-light-blue);
}

.acg-stat-top {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.acg-stat-num {
    font-size: clamp(28px, 2.5vw + 14px, 40px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -1px;
}

.acg-stat-unit {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.acg-stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.acg-stat-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .about-cg-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-cg-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
    }

    .about-cg-img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .about-cg-stats {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 30px;
    }

    .about-cg-img {
        height: 300px;
    }

    .about-cg-badge--tl {
        top: 12px;
        left: 12px;
    }

    .about-cg-badge--br {
        bottom: 18px;
        right: 12px;
    }
}

/* Responsive columns for old about grid (kept for backward compat) */


/* Responsive adjustments for slider content */
@media (max-width: 992px) {
    .slider-container {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 500px;
    }

    .slide-badge {
        margin-bottom: 12px;
    }

    .slide-title {
        margin-bottom: 12px;
    }

    .slide-description {
        margin-bottom: 24px;
    }

    .slide-actions {
        gap: 12px;
        flex-wrap: wrap;
    }

    .btn {
        padding: 10px 20px;
    }

    .slider-controls {
        bottom: 20px;
        right: 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Premium Skeleton Loader Overlay */
.skeleton-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 9999;
    overflow-y: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.skeleton-container.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Shimmer Animation */
.skeleton {
    background: #E2E8F0;
    background: linear-gradient(90deg, #F1F5F9 25%, #E2E8F0 50%, #F1F5F9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Skeleton Header elements */
.skeleton-header-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.skeleton-logo {
    width: 120px;
    height: 36px;
}

.skeleton-nav-items {
    display: flex;
    gap: 36px;
}

.skeleton-nav-link {
    width: 70px;
    height: 16px;
}

.skeleton-btn {
    width: 120px;
    height: 40px;
}

/* Skeleton Banner elements */
.skeleton-banner {
    background-color: var(--bg-tertiary);
    height: 500px;
    display: flex;
    align-items: center;
    padding: 0 32px;
}

.skeleton-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skeleton-badge {
    width: 180px;
    height: 24px;
}

.skeleton-title {
    width: 60%;
    height: 48px;
}

.skeleton-title-sub {
    width: 40%;
    height: 48px;
}

.skeleton-desc {
    width: 75%;
    height: 20px;
}

.skeleton-desc-sub {
    width: 50%;
    height: 20px;
}

.skeleton-actions {
    display: flex;
    gap: 20px;
}

/* Skeleton About elements */
.skeleton-about {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 40px 32px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.skeleton-about-img {
    width: 100%;
    height: 350px;
    border-radius: 8px;
}

.skeleton-about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skeleton-about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.skeleton-about-card {
    height: 120px;
    border-radius: 6px;
}

/* Services Section */
.services-section {
    background-color: var(--bg-secondary);
    padding: 50px 32px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.services-subtitle {
    font-size: var(--fs-subtitle);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.services-title {
    font-size: var(--fs-h3);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.25;
}

.header-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 20px auto;
    border-radius: 2px;
}

.services-header-desc {
    font-size: var(--fs-body-md);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    /* grid layouts removed to prevent conflict with bootstrap rows */
}

.service-card {
    background-color: var(--color-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
    z-index: 5;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.15);
    border-color: rgba(30, 64, 175, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.service-card:hover .service-card-bg {
    transform: scale(1.08);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.service-card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon-wrapper {
    background-color: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
}

.service-card-icon {
    width: 22px;
    height: 22px;
}

.service-card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-light-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-title {
    font-size: var(--fs-card-title-lg);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
}

.service-card-desc {
    font-size: var(--fs-body-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.service-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-card-link .arrow {
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    color: var(--color-accent);
}

.service-card-link:hover .arrow {
    transform: translateX(5px);
}

/* Skeleton Services elements */
.skeleton-services {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 40px 32px;
}

.skeleton-services-header {
    text-align: center;
    margin-bottom: 40px;
}

.skeleton-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.skeleton-service-card {
    background-color: var(--color-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 36px 32px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Responsive adjustments for Services Section */
@media (max-width: 992px) {

    .skeleton-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {

    .skeleton-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-title {
        font-size: 28px;
    }

    .services-section {
        padding: 60px 20px;
    }
}

/* Commercial CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #153E70 100%);
    position: relative;
    padding: 50px 32px;
    color: #FFFFFF;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 2px;
    display: inline-block;
}

.cta-title {
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
}

.cta-desc {
    font-size: var(--fs-body-lg);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-value-props {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.cta-val-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.cta-val-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(30, 64, 175, 0.2); /* Soft navy blue background */
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Actions Card Box */
.cta-actions-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 30px 60px rgba(11, 37, 69, 0.2);
}

.cta-actions-title {
    font-size: var(--fs-card-title-lg);
    font-weight: 700;
    color: #FFFFFF;
}

.cta-actions-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-actions-buttons .btn {
    text-align: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
}

.btn-secondary-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.btn-secondary-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.cta-contact-direct {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-contact-direct strong {
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

/* Skeleton CTA Section styling */
.skeleton-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #153E70 100%);
    padding: 60px 32px;
    display: grid;
    grid-template-columns: 1.255fr 0.745fr;
    gap: 60px;
    align-items: center;
}

.skeleton-cta-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skeleton-cta-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

/* Responsive adjustments for CTA */
@media (max-width: 992px) {

    .cta-container,
    .skeleton-cta {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-actions-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }

    .cta-section {
        padding: 60px 20px;
    }
}

/* Why Choose Us & Core Values Section */
.values-section {
    background-color: #F8FAFC;
    background-image:
        radial-gradient(rgba(11, 37, 69, 0.04) 1.5px, transparent 1.5px),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    background-size: 24px 24px, 100% 100%;
    padding: 50px 32px;
    border-bottom: 1px solid var(--border-color);
}

.values-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.values-subtitle {
    font-size: var(--fs-subtitle);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.values-title {
    font-size: var(--fs-h3);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.25;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Pane Layout */
.values-left-pane {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pane-desc {
    font-size: var(--fs-body-md);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Right Pane Layout */
.values-right-pane {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Compact 2x2 Counters Grid */
.values-counters-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-counter-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.02);
}

.value-counter-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 24px rgba(30, 64, 175, 0.05);
}

.value-counter-card .counter-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.value-counter-card .counter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.value-counter-card .counter-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Bottom Row: Horizontal Grid of Core Values */
.values-bottom-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.values-bottom-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 20px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.02);
}

.values-bottom-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 24px rgba(30, 64, 175, 0.04);
}

.values-bottom-card .val-card-check {
    width: 28px;
    height: 28px;
    background-color: rgba(30, 64, 175, 0.15); /* Soft navy blue background */
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-smooth);
}

.values-bottom-card:hover .val-card-check {
    background-color: var(--color-accent);
    color: #FFFFFF;
}

.values-bottom-card .val-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.values-bottom-card .val-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

.values-bottom-card .val-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Skeleton Values Section styling */
.skeleton-values {
    background-color: #F8FAFC;
    background-image:
        radial-gradient(rgba(11, 37, 69, 0.04) 1.5px, transparent 1.5px),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    background-size: 24px 24px, 100% 100%;
    padding: 80px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.skeleton-values-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skeleton-values-right {
    display: flex;
    flex-direction: column;
}

.skeleton-values-counters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.skeleton-counter-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
}

/* Skeleton Bottom Row */
.skeleton-values-bottom-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.skeleton-values-bottom-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 20px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .values-grid,
    .skeleton-values-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .values-bottom-row,
    .skeleton-values-bottom-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .cert-ribbon-container,
    .skeleton-ribbon-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .values-title {
        font-size: 28px;
    }

    .values-section {
        padding: 60px 20px;
    }

    .values-counters-grid-compact,
    .skeleton-values-counters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-bottom-row,
    .skeleton-values-bottom-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {

    .cert-ribbon-container,
    .skeleton-ribbon-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cert-ribbon-section,
    .skeleton-ribbon {
        padding: 24px 20px;
    }
}

/* Certifications & Compliance Ribbon */
.cert-ribbon-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
}

.cert-ribbon-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-ribbon-item {
    position: relative;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    z-index: 1;
}

.cert-ribbon-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
    z-index: 2;
}

.cert-ribbon-item:hover::before {
    height: 100%;
}

.cert-ribbon-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(11, 37, 69, 0.1), 0 10px 10px -5px rgba(11, 37, 69, 0.04);
    border-color: rgba(11, 37, 69, 0.15);
}

.cert-step-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(11, 37, 69, 0.05);
    transition: var(--transition-smooth);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    user-select: none;
    z-index: 0;
}

.cert-ribbon-item:hover .cert-step-num {
    color: rgba(30, 64, 175, 0.12);
    transform: scale(1.1);
}

.cert-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: rgba(11, 37, 69, 0.04);
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.cert-ribbon-item:hover .cert-icon-wrapper {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.cert-icon {
    width: 24px;
    height: 24px;
}

.cert-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1;
}

.cert-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.cert-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Skeleton Ribbon Styling */
.skeleton-ribbon {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 32px;
}

.skeleton-ribbon-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.skeleton-ribbon-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Products Section Styles */
.products-section {
    background-color: var(--bg-secondary);
    padding: 50px 32px;
    border-bottom: 1px solid var(--border-color);
}

.products-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.products-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.products-subtitle {
    font-size: var(--fs-subtitle);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.products-title {
    font-size: var(--fs-h3);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.25;
}

.products-header-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 16px;
}

/* Product Filter Buttons */
.prod-filter-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.prod-filter-btn {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.prod-filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.prod-filter-btn.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

/* Products Grid */
.products-grid {
    /* grid layouts removed to prevent conflict with bootstrap rows */
}

.product-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(11, 37, 69, 0.06);
    border-color: var(--border-color);
}

.product-card.hidden {
    display: none !important;
}

.prod-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-tertiary);
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .prod-img {
    transform: scale(1.05);
}

.prod-spec-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.prod-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prod-card-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.prod-card-title {
    font-size: var(--fs-card-title-sm);
    font-weight: 700;
    color: var(--color-primary);
    margin: 8px 0 16px 0;
}

.prod-card-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
    padding: 16px 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.prod-spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-val {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.prod-card-actions {
    display: flex;
    gap: 12px;
}

.prod-card-actions .btn {
    flex-grow: 1;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
}

.btn-prod-quote {
    background-color: var(--color-accent);
    border: 1px solid var(--color-accent);
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.btn-prod-quote:hover {
    background-color: #1E3A8A;
    border-color: #1E3A8A;
}

.btn-prod-sheet {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.btn-prod-sheet:hover {
    border-color: var(--color-primary);
    /* color: var(--color-primary); */
}

/* Skeleton Products Section Styles */
.skeleton-products {
    background-color: var(--bg-secondary);
    padding: 80px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-products-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.skeleton-prod-filter-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.skeleton-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.skeleton-product-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Responsive adjust for products section */
@media (max-width: 992px) {
    /* grid rules removed to prevent conflict with bootstrap rows */
}

@media (max-width: 768px) {
    .products-title {
        font-size: 28px;
    }

    .products-section,
    .skeleton-products {
        padding: 60px 20px;
    }

    /* grid rules removed */
    .prod-filter-row,
    .skeleton-prod-filter-row {
        gap: 10px;
        margin-bottom: 30px;
    }

    .prod-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        flex-grow: 1;
        text-align: center;
    }
}

/* ==========================================================================
   Featured Projects Section (Expanding Accordion)
   ========================================================================== */
.projects-section {
    background-color: #F8F9FA;
    /* Shifted from dark navy to light gray */
    padding: 50px 32px;
    border-bottom: 1px solid rgba(11, 37, 69, 0.05);
}

.projects-container {
    max-width: 1600px;
    /* Expanded for 4-slide viewport */
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: 48px;
}

.projects-subtitle {
    display: block;
    font-size: var(--fs-subtitle);
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.projects-title {
    font-size: var(--fs-h3);
    font-weight: 800;
    color: var(--color-primary);
    /* Dark navy for light background */
    margin-bottom: 16px;
}

.projects-header-desc {
    font-size: var(--fs-body-lg);
    color: #4A5568;
    /* Slate gray for light background */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Glide Slider Layout */
.projects-glide-container {
    position: relative;
    max-width: 1600px;
    /* Expanded for 4-slide viewport */
    margin: 0 auto;
    padding: 0 60px;
    /* Space for arrow buttons */
}

.projects-glide-viewport {
    overflow: hidden;
    width: 100%;
}

.projects-glide-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.projects-glide-slide {
    flex: 0 0 calc((100% - 72px) / 4);
    /* Desktop layout: 4 visible items */
    box-sizing: border-box;
}



.project-slide-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 500px;
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-slide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 37, 69, 0.1) 0%, rgba(9, 30, 54, 0.9) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.project-slide-card:hover {
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-slide-card:hover::before {
    background: linear-gradient(to bottom, rgba(9, 30, 54, 0.3) 0%, rgba(9, 30, 54, 0.95) 100%);
}

.proj-slide-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.proj-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-slide-card:hover .proj-slide-img {
    transform: scale(1.06);
}

/* Location Badge */
.project-location-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-primary);
    border-left: 3px solid var(--color-accent);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-slide-card:hover .project-location-badge {
    opacity: 0;
    visibility: hidden;
}

/* Title Pane (Idle state) */
.proj-slide-title-pane {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.project-slide-card:hover .proj-slide-title-pane {
    transform: translateY(-20px);
    opacity: 0;
}

/* Details Pane (Slides up on Hover) */
.proj-slide-details-pane {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(11, 37, 69, 0.85) 0%, rgba(9, 30, 54, 0.98) 100%);
    padding: 32px 24px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
}

.project-slide-card:hover .proj-slide-details-pane {
    transform: translateY(0);
}

.project-label {
    font-size: 11px;
    font-weight: 700;
    color: #60A5FA; /* Changed from var(--color-accent) for dark background visibility */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.expanded-project-name {
    font-size: var(--fs-card-title-md);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
    line-height: 1.3;
}

.details-project-name {
    font-size: var(--fs-card-title-md);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.expanded-project-system {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.expanded-project-desc {
    font-size: var(--fs-body-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* specs grid */
.expanded-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    margin-bottom: 16px;
}

.expanded-spec-item {
    display: flex;
    flex-direction: column;
}

.expanded-spec-item .spec-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.expanded-spec-item .spec-val {
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 600;
    margin-top: 2px;
    text-align: left;
}

/* client quote */
.expanded-quote {
    border-left: 2px solid var(--color-accent);
    padding-left: 12px;
    margin: 0 0 16px 0;
}

.expanded-quote p {
    font-size: 11px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin-bottom: 2px;
}

.expanded-quote cite {
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    display: block;
}

/* CTA Button inside Slide */
.proj-slide-actions {
    /* margin-top: auto; */
}

.proj-slide-actions .btn-proj-inquiry {
    width: 100%;
    background-color: rgba(96, 165, 250, 0.1);
    border: 1px solid #60A5FA;
    color: #60A5FA;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.proj-slide-actions .btn-proj-inquiry:hover {
    background-color: #60A5FA;
    border-color: #60A5FA;
    color: #0f172a;
}

/* Navigation Arrow Controls */
.glide-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 82, 255, 0.06);
    /* Contrast color for light theme */
    border: 1px solid rgba(0, 82, 255, 0.12);
    color: var(--color-primary);
    /* Dark color for light theme */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    padding: 0;
}

.glide-nav-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

.glide-nav-btn svg {
    width: 20px;
    height: 20px;
}

.glide-nav-btn.prev-btn {
    left: 0;
}

.glide-nav-btn.next-btn {
    right: 0;
}

/* Pagination Dots */
.projects-glide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.glide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(11, 37, 69, 0.2);
    /* Contrast color for light theme */
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.glide-dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 5px;
}

/* Skeleton Preloader Styles */
.skeleton-projects-glide {
    display: flex;
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.skeleton-glide-card {
    transition: var(--transition-smooth);
}

/* ==========================================================================
   B2B Pallet Position Estimator Section
   ========================================================================== */
.estimator-section {
    background: linear-gradient(135deg, #0B2545 0%, #1A365D 100%);
    padding: 50px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.estimator-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.estimator-info {
    flex: 1;
}

.estimator-bar-title {
    font-size: var(--fs-card-title-lg);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
    margin-top: 0;
}

.estimator-bar-desc {
    font-size: var(--fs-body-lg);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.estimator-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.estimator-counter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;
    border: 1px solid rgba(11, 37, 69, 0.15);
    border-radius: 4px;
    background-color: #F8F9FA;
    overflow: hidden;
    height: 44px;
}

.counter-btn {
    width: 44px;
    height: 100%;
    border: none;
    background-color: rgba(0, 82, 255, 0.03);
    font-size: 20px;
    color: var(--color-primary);
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.counter-btn:hover {
    background-color: rgba(0, 82, 255, 0.08);
}

.counter-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.counter-val {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
}

.counter-unit {
    font-size: 9px;
    font-weight: 700;
    color: rgba(0, 82, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.estimator-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.estimator-actions .btn {
    height: 44px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-body-md);
    font-weight: 700;
    border-radius: 4px;
    box-sizing: border-box;
    text-decoration: none;
    white-space: nowrap;
}

.estimator-cta-btn {
    background-color: var(--color-accent);
    color: #FFFFFF;
    border: none;
    transition: all 0.3s ease;
}

.estimator-cta-btn:hover {
    background-color: #3B82F6;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.estimator-contact-btn {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.estimator-contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

.skeleton-estimator {
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, #0B2545 0%, #1A365D 100%);
    padding: 40px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: var(--max-width);
    margin: 40px auto 0 auto;
    box-sizing: border-box;
}

.skeleton-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ==========================================================================
   B2B Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: #F8F9FA;
    padding: 50px 32px;
    border-top: 1px solid rgba(0, 82, 255, 0.05);
    border-bottom: 1px solid rgba(0, 82, 255, 0.05);
}

.testimonials-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-subtitle {
    display: block;
    font-size: var(--fs-subtitle);
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonials-title {
    font-size: var(--fs-h4);
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
}

.testimonials-slider-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 16px;
    box-sizing: border-box;
}

.testimonials-track {
    width: 100%;
    overflow: hidden;
}

.testimonials-slides {
    display: flex;
    gap: 32px;
    width: 100%;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 64px) / 3);
    box-sizing: border-box;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(11, 37, 69, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 5px;
}

.testimonial-card {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid rgba(11, 37, 69, 0.06);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow: 0 12px 30px rgba(11, 37, 69, 0.06);
}

.testimonial-quote-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    color: rgba(11, 37, 69, 0.05);
    width: 40px;
    height: 40px;
    pointer-events: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    color: rgba(30, 64, 175, 0.1);
    transform: scale(1.1);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: var(--fs-body-sm);
    color: #4A5568;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    border-top: 1px solid rgba(0, 82, 255, 0.06);
    padding-top: 16px;
}

/* ==========================================================================
   FAQ Section Styles — Commercial Redesign
   ========================================================================== */

/* --- Hero Section --- */
.faq-hero {
    background: linear-gradient(rgba(11, 37, 69, 0.88), rgba(11, 37, 69, 0.96)),
        url('/media/banners/hero_banner.png') no-repeat center center/cover;
    padding: 50px 24px;
    text-align: center;
    color: #FFFFFF;
}

.faq-hero .slide-badge {
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 16px;
}

.faq-hero .slide-title {
    transform: none !important;
    opacity: 1 !important;
    font-size: clamp(28px, 4vw + 12px, 52px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-hero .slide-title span {
    background: linear-gradient(135deg, var(--color-accent), #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-hero .slide-description {
    transform: none !important;
    opacity: 1 !important;
    max-width: 750px;
    margin: 0 auto 24px auto;
    font-size: clamp(14px, 0.5vw + 13px, 17px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.faq-search-wrapper {
    position: relative;
    max-width: 520px;
    margin: 0 auto 24px;
}

.faq-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.faq-search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border-radius: 60px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.faq-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.faq-search-input:focus {
    border-color: rgba(30, 64, 175, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}



/* --- Stats Bar --- */
.faq-stats-bar {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    padding: 0 24px;
}

.faq-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 0;
}

.faq-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 48px;
}

.faq-stat-number {
    font-size: clamp(28px, 2vw + 16px, 40px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.faq-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.faq-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* --- Category Tabs --- */
.faq-tabs-bar {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 20px rgba(11, 37, 69, 0.06);
}

.faq-tabs-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
}

.faq-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 60px;
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.faq-tab svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.faq-tab:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(30, 64, 175, 0.04);
}

.faq-tab:hover svg {
    opacity: 1;
}

.faq-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.2);
}

.faq-tab.active svg {
    opacity: 1;
}

/* --- Main FAQ Section --- */
.faq-section {
    background-color: var(--bg-secondary);
    padding: 50px 24px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}

/* --- Sidebar --- */
.faq-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-sidebar-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.04);
}

.faq-sidebar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(30, 64, 175, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.faq-sidebar-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 12px;
    line-height: 1.3;
}

.faq-sidebar-card>p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.faq-sidebar-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-sidebar-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.faq-sidebar-feature svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

/* --- Sidebar CTA --- */
.faq-sidebar-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0F3460 100%);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-sidebar-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(30, 64, 175, 0.12) 0%, transparent 60%);
}

.faq-sidebar-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin: 0 auto 16px;
    position: relative;
}

.faq-sidebar-cta h4 {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px;
    position: relative;
}

.faq-sidebar-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 0 16px;
    position: relative;
}

.faq-cta-phone {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    margin-bottom: 16px;
    position: relative;
    transition: color 0.2s;
}

.faq-cta-phone:hover {
    color: #3B82F6;
}

.faq-cta-btn {
    display: inline-block;
    padding: 11px 28px;
    background: #FFFFFF;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.faq-cta-btn:hover {
    background: var(--color-accent);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

/* --- Accordion Area --- */
.faq-accordions {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.faq-category-group {
    display: block;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.faq-category-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: 2px 10px;
    border-radius: 20px;
}

/* --- FAQ Item (Accordion Card) --- */
.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(11, 37, 69, 0.03);
}

.faq-item:hover {
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.06);
    transform: translateY(-1px);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 6px 24px rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 22px 24px;
    text-align: left;
    font-size: var(--fs-body-lg);
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
    gap: 16px;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--color-accent);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
}

.faq-item.active .faq-question::before {
    height: 60%;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    background: rgba(30, 64, 175, 0.1);
    color: var(--color-accent);
    transform: rotate(180deg);
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 22px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* --- No Results --- */
.faq-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    background: #FFFFFF;
    border: 1px dashed var(--border-color);
    border-radius: 16px;
}

.faq-no-results svg {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.faq-no-results h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px;
}

.faq-no-results p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 0 20px;
}

.faq-no-results-btn {
    padding: 10px 24px;
    border-radius: 60px;
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-no-results-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* --- CTA Banner --- */
.faq-cta-banner {
    position: relative;
    padding: 80px 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A192F 0%, #0B2545 40%, #172A45 100%);
}

.faq-cta-banner-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 60%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 168, 232, 0.05) 0%, transparent 50%);
}

.faq-cta-banner-inner {
    position: relative;
    z-index: 2;
}

.faq-cta-banner-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.faq-cta-banner-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.12);
    border: 1px solid rgba(30, 64, 175, 0.25);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.faq-cta-banner-title {
    font-size: clamp(24px, 3vw + 12px, 40px);
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 16px;
    line-height: 1.2;
}

.faq-cta-banner-title span {
    background: linear-gradient(135deg, var(--color-accent), #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-cta-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 28px;
}

.faq-cta-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-cta-banner-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--color-accent);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.faq-cta-banner-btn-primary:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.3);
}

.faq-cta-banner-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.faq-cta-banner-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* --- Enquiry Section --- */
.faq-enquiry {
    padding: 60px 24px 80px;
    background: var(--bg-secondary);
}

.faq-enquiry-header {
    text-align: center;
    margin-bottom: 44px;
}

.faq-enquiry-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.faq-enquiry-title {
    font-size: clamp(22px, 2vw + 14px, 34px);
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 12px;
}

.faq-enquiry-divider {
    width: 50px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.faq-enquiry-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}

.faq-enquiry-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.faq-enquiry-form {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(11, 37, 69, 0.05);
}

.faq-enquiry-form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

.faq-enquiry-form-header svg {
    color: var(--color-accent);
}

.faq-enquiry-form-body {
    padding: 28px 32px 32px;
}

.faq-enquiry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.faq-enquiry-field {
    margin-bottom: 16px;
}

.faq-enquiry-row .faq-enquiry-field {
    margin-bottom: 0;
}

.faq-enquiry-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.faq-enquiry-field label .req {
    color: var(--color-accent);
}

.faq-enquiry-field input,
.faq-enquiry-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background: #FFFFFF;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.faq-enquiry-field input:focus,
.faq-enquiry-field textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.08);
}

.faq-enquiry-field input::placeholder,
.faq-enquiry-field textarea::placeholder {
    color: var(--text-muted);
    font-size: 13px;
}

.faq-enquiry-field input.error,
.faq-enquiry-field textarea.error,
.faq-enquiry-field.has-error input,
.faq-enquiry-field.has-error textarea {
    border-color: #DC2626;
}

.faq-enquiry-field .err-msg {
    display: none;
    font-size: 12px;
    color: #DC2626;
    margin-top: 4px;
    font-weight: 500;
}

.faq-enquiry-field.has-error .err-msg {
    display: block;
}

.faq-enquiry-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--color-accent);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 4px;
}

.faq-enquiry-submit:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
}

.faq-enquiry-submit svg {
    transition: transform 0.2s;
}

.faq-enquiry-submit:hover svg {
    transform: translateX(4px);
}

/* --- Success Toast --- */
.faq-enquiry-success {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.faq-enquiry-success.show {
    opacity: 1;
    pointer-events: all;
}

.faq-enquiry-success-card {
    text-align: center;
    padding: 40px;
    max-width: 400px;
}

.faq-enquiry-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16A34A;
    margin: 0 auto 20px;
}

.faq-enquiry-success-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 12px;
}

.faq-enquiry-success-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 24px;
}

.faq-enquiry-success-btn {
    padding: 12px 36px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.faq-enquiry-success-btn:hover {
    background: #0F3460;
    transform: translateY(-2px);
}

/* ==========================================================================
   Contact Us Section Styles
   ========================================================================== */
/* ==========================================================================
   Contact Section Styles — Redesigned
   ========================================================================== */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 50px 32px;
    overflow: hidden;
}

.contact-bg-shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px auto;
}

.contact-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    background: rgba(30, 64, 175, 0.08);
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.contact-title {
    font-size: var(--fs-h3);
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 14px;
    line-height: 1.2;
}

.contact-desc {
    font-size: var(--fs-body-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Left: Info Card --- */
.contact-info-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(11, 37, 69, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.branch-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    padding: 4px;
}

.branch-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 8px 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

.branch-tab:hover {
    color: var(--color-primary);
}

.branch-tab.active {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(11, 37, 69, 0.08);
}

.branch-info-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 10px;
    transition: background 0.2s;
}

.info-item:hover {
    background: var(--bg-secondary);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(30, 64, 175, 0.03));
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.info-item:hover .info-icon {
    background: var(--color-accent);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.contact-icon-svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    transition: all 0.25s ease;
}

.info-item:hover .contact-icon-svg {
    color: #fff;
    transform: scale(1.1);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-text strong {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 700;
}

.info-text span,
.info-text a {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-grow: 1;
    min-height: 200px;
    margin-top: auto;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 200px;
}

/* --- Right: Form Card --- */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(11, 37, 69, 0.04);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

.form-header svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.form-body {
    padding: 24px 28px 28px;
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label .req {
    color: var(--color-highlight-1);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    font-size: 13.5px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    color: var(--text-primary);
    transition: all 0.25s ease;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.err-msg {
    display: none;
    color: var(--color-highlight-1);
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--color-highlight-1);
    background: rgba(217, 56, 30, 0.02);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 28px;
    margin-top: 8px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.25);
}

.contact-submit-btn:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35);
}

.contact-submit-btn svg {
    transition: transform 0.2s;
}

.contact-submit-btn:hover svg {
    transform: translateX(4px);
}

.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 12px;
    padding: 32px;
    box-sizing: border-box;
}

.form-success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-card {
    text-align: center;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(0, 168, 228, 0.1);
    border: 2px solid var(--color-light-blue);
    color: var(--color-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.success-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.success-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Responsive Adjustments for Slider & Estimator
   ========================================================================== */
@media (max-width: 1200px) {
    .projects-glide-slide {
        flex: 0 0 calc((100% - 48px) / 3);
        /* 3 visible items on desktop/large screens */
    }

    .skeleton-projects-glide .skeleton-glide-card:last-child {
        display: none;
        /* Hide 4th card on large screen loader */
    }
}

@media (max-width: 992px) {
    .projects-glide-container {
        padding: 0 50px;
    }

    .projects-glide-slide {
        flex: 0 0 calc((100% - 24px) / 2);
        /* 2 visible items on tablet */
    }

    .project-slide-card {
        height: 500px;
    }

    .skeleton-projects-glide .skeleton-glide-card:nth-child(3),
    .skeleton-projects-glide .skeleton-glide-card:nth-child(4) {
        display: none;
        /* Hide 3rd and 4th cards on tablet loader */
    }

    /* Estimator Tablet query */
    .estimator-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .estimator-info {
        max-width: 100%;
    }

    .estimator-controls {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 16px;
    }

    .estimator-counter-wrapper {
        width: 100%;
        max-width: 280px;
    }

    .estimator-actions {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .estimator-actions .btn {
        flex: 1;
        max-width: 180px;
    }

    .skeleton-estimator {
        flex-direction: column !important;
        text-align: center;
        gap: 24px !important;
    }

    .skeleton-estimator>div:first-child {
        max-width: 100% !important;
    }

    .skeleton-estimator>div:last-child {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Testimonials Tablet query */
    .testimonials-slider-container {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .testimonials-slides {
        gap: 24px;
    }

    .testimonial-slide {
        flex: 0 0 calc((100% - 24px) / 2) !important;
    }

    /* FAQ Section Tablet Adjustments */
    .faq-hero {
        min-height: 360px;
        padding: 80px 24px 60px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .faq-sidebar {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .faq-section {
        padding: 48px 24px 64px;
    }

    .faq-stats-inner {
        flex-wrap: wrap;
        gap: 16px 0;
    }

    .faq-stat-item {
        padding: 0 32px;
    }

    .faq-stat-divider:last-child {
        display: none;
    }

    .faq-enquiry-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-enquiry-row .faq-enquiry-field {
        margin-bottom: 16px;
    }

    /* Contact Section Tablet Adjustments */
    .contact-section {
        padding: 50px 24px;
    }

    .map-wrapper {
        min-height: 260px;
    }
}

@media (max-width: 768px) {

    .projects-section,
    .skeleton-projects-showcase {
        padding: 60px 20px;
    }

    .projects-glide-container {
        padding: 0;
        /* Let mobile card swipe touch container borders */
    }

    .projects-glide-slide {
        flex: 0 0 100%;
        /* 1 visible item on mobile */
    }

    .project-slide-card {
        height: 500px;
    }

    .glide-nav-btn {
        display: none !important;
        /* Hide arrows on mobile, rely on dots & swipe */
    }

    .skeleton-projects-glide {
        gap: 0;
    }

    .skeleton-projects-glide .skeleton-glide-card:nth-child(2),
    .skeleton-projects-glide .skeleton-glide-card:nth-child(3),
    .skeleton-projects-glide .skeleton-glide-card:nth-child(4) {
        display: none;
        /* Hide 2nd, 3rd, and 4th cards on mobile loader */
    }

    .skeleton-glide-card {
        margin-right: 0 !important;
        width: 100% !important;
        flex: none !important;
        height: 500px !important;
    }

    /* Estimator Mobile query */
    .estimator-section {
        padding: 40px 20px;
    }

    .estimator-controls {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .estimator-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 12px;
    }

    .estimator-actions .btn {
        width: auto;
        max-width: none;
        padding: 0 20px;
    }

    .skeleton-estimator>div:last-child {
        gap: 12px;
    }

    /* Testimonials Mobile query */
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonials-slides {
        gap: 0px;
    }

    .testimonial-slide {
        flex: 0 0 100% !important;
    }

    /* FAQ Section Mobile Adjustments */
    .faq-hero {
        min-height: 300px;
        padding: 70px 20px 50px;
    }

    .faq-hero-title {
        font-size: clamp(24px, 6vw, 34px);
    }

    .faq-hero-desc {
        font-size: 14px;
    }

    .faq-search-input {
        padding: 14px 18px 14px 46px;
        font-size: 14px;
    }

    .faq-stats-inner {
        flex-wrap: wrap;
        gap: 12px 0;
        padding: 20px 0;
    }

    .faq-stat-item {
        padding: 0 16px;
        flex: 1 1 auto;
        min-width: 80px;
    }

    .faq-stat-divider:nth-child(4) {
        display: none;
    }

    .faq-stat-number {
        font-size: clamp(22px, 6vw, 30px);
    }

    .faq-stat-label {
        font-size: 11px;
    }

    .faq-tabs-inner {
        padding: 12px 16px;
        gap: 6px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .faq-tabs-inner::-webkit-scrollbar {
        display: none;
    }

    .faq-tab {
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .faq-tab svg {
        width: 16px;
        height: 16px;
    }

    .faq-section {
        padding: 40px 16px 56px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq-sidebar {
        position: static;
        max-width: 100%;
    }

    .faq-sidebar-card {
        padding: 24px 20px;
    }

    .faq-sidebar-card h3 {
        font-size: 18px;
    }

    .faq-sidebar-cta {
        padding: 24px 20px;
    }

    .faq-category-header {
        font-size: 14px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .faq-icon svg {
        width: 16px;
        height: 16px;
    }

    .faq-answer p {
        padding: 0 18px 18px 18px;
        font-size: 13px;
    }

    .faq-cta-banner {
        padding: 60px 20px;
    }

    .faq-cta-banner-actions {
        flex-direction: column;
    }

    .faq-enquiry {
        padding: 40px 16px 60px;
    }

    .faq-enquiry-form-header {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-enquiry-form-body {
        padding: 20px 20px 24px;
    }

    .faq-enquiry-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-enquiry-row .faq-enquiry-field {
        margin-bottom: 16px;
    }

    .faq-enquiry-submit {
        width: 100%;
        justify-content: center;
    }

    /* Contact Section Mobile Adjustments */
    .contact-section {
        padding: 40px 16px;
    }

    .contact-header {
        margin-bottom: 32px;
    }

    .contact-title {
        font-size: calc(var(--fs-h3) - 2px);
    }

    .branch-tabs {
        gap: 4px;
        margin-bottom: 18px;
    }

    .branch-tab {
        padding: 6px 8px;
        font-size: 11px;
    }

    .form-body {
        padding: 18px 18px 22px;
    }

    .form-header {
        padding: 14px 18px;
        font-size: 14px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .map-wrapper {
        min-height: 220px;
    }
}

/* ==========================================================================
   About Page Custom Layouts
   ========================================================================== */
.about-hero {
    background: linear-gradient(rgba(11, 37, 69, 0.85), rgba(11, 37, 69, 0.95)),
        url('/media/banners/hero_banner.png') no-repeat center center/cover;
    padding: 50px 24px;
    text-align: center;
    color: #FFFFFF;
}

.about-hero .slide-badge {
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 16px;
}

.about-hero .slide-title {
    transform: none !important;
    opacity: 1 !important;
    font-size: var(--fs-hero-title);
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-hero .slide-description {
    transform: none !important;
    opacity: 1 !important;
    max-width: 750px;
    margin: 0 auto 24px auto;
    font-size: var(--fs-hero-desc);
}

.breadcrumb-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 24px auto 0 auto;
    transition: var(--transition-smooth);
}

.breadcrumb-container a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.breadcrumb-container a:hover {
    color: var(--color-accent);
}

.about-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.timeline-row {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content-card {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.02);
}

.timeline-row:nth-child(even) .timeline-content-card {
    border-left: 4px solid var(--color-primary);
}

.timeline-row:nth-child(odd) .timeline-content-card {
    border-right: 4px solid var(--color-accent);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
}

.timeline-row:nth-child(even) .timeline-dot {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(11, 37, 69, 0.15);
}

.timeline-row:nth-child(odd) .timeline-dot {
    background-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.15);
}

@media (max-width: 768px) {
    .about-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   Partners Section Custom Layouts & Marquee Scrolling
   ========================================================================== */
.partners-section {
    padding: 80px 24px;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 150px, black calc(100% - 150px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 150px, black calc(100% - 150px), transparent);
}

.partners-track {
    display: flex;
    gap: 40px;
    width: max-content;
    padding-right: 40px;
    /* Must match the gap size */
    animation: marquee-scroll 45s linear infinite;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

.partner-logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-primary);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.02);
    user-select: none;
    transition: var(--transition-smooth);
    min-width: 180px;
    height: 76px;
}

.partner-logo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.06);
    border-color: rgba(11, 37, 69, 0.1);
}

.partner-logo-img {
    max-height: 48px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.partner-logo-card:hover .partner-logo-img {
    opacity: 1;
}

.partner-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.08);
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-accent);
    padding: 6px 12px;
}

.partner-brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-left: 8px;
    transition: var(--transition-smooth);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 16px;
    }

    .partners-marquee {
        mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
    }

    .partners-track {
        gap: 24px;
        padding-right: 24px;
        animation-duration: 32s;
    }

    .partner-logo-card {
        padding: 8px 16px;
        min-width: 140px;
        height: 60px;
    }

    .partner-logo-img {
        max-height: 36px;
        max-width: 110px;
    }

    .partner-brand-text {
        font-size: 13px;
    }
}

/* ==========================================================================
   Horizontal Timeline Section (About Page)
   ========================================================================== */

.horizontal-timeline-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.horizontal-timeline-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.horizontal-timeline-container {
    position: relative;
    display: flex;
    width: 1200px;
    margin: 0 auto;
    height: 480px;
    align-items: center;
    padding: 0 40px;
}

.horizontal-timeline-line {
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    height: 2px;
    background-color: var(--border-color);
    transform: translateY(-50%);
    z-index: 1;
}

.horizontal-timeline-item {
    position: relative;
    flex: 0 0 280px;
    height: 100%;
    z-index: 2;
    margin: 0 10px;
}

/* Reusing .timeline-row reveal properties; we only need to define horizontal positions */
.horizontal-timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid var(--bg-primary);
    z-index: 3;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.horizontal-timeline-item:nth-child(even) .horizontal-timeline-dot {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(11, 37, 69, 0.15);
}

.horizontal-timeline-item:nth-child(odd) .horizontal-timeline-dot {
    background-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.15);
}

.horizontal-timeline-item:hover .horizontal-timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
}

.timeline-card-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease;
}

.timeline-card-wrapper.card-top {
    bottom: calc(50% + 30px);
}

.timeline-card-wrapper.card-bottom {
    top: calc(50% + 30px);
}

/* Connectors from cards to the horizontal line */
.timeline-card-wrapper.card-top::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background-color: var(--border-color);
    transition: background-color 0.3s ease;
}

.timeline-card-wrapper.card-bottom::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background-color: var(--border-color);
    transition: background-color 0.3s ease;
}

.horizontal-timeline-item:hover .timeline-card-wrapper.card-top::after,
.horizontal-timeline-item:hover .timeline-card-wrapper.card-bottom::after {
    background-color: var(--color-accent);
}

.horizontal-timeline-item:nth-child(even):hover .timeline-card-wrapper.card-top::after,
.horizontal-timeline-item:nth-child(even):hover .timeline-card-wrapper.card-bottom::after {
    background-color: var(--color-primary);
}

/* Custom premium styles for the content card */
.timeline-card-wrapper .timeline-content-card {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.horizontal-timeline-item:hover .timeline-content-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.08);
}

.horizontal-timeline-item:nth-child(odd) .timeline-content-card {
    border-top: 4px solid var(--color-accent);
}

.horizontal-timeline-item:nth-child(even) .timeline-content-card {
    border-top: 4px solid var(--color-primary);
}

/* ==========================================================================
   Products Page Custom Layouts & Hero Banner
   ========================================================================== */
.products-hero {
    background: linear-gradient(rgba(11, 37, 69, 0.85), rgba(11, 37, 69, 0.95)),
        url('/media/banners/hero_banner.png') no-repeat center center/cover;
    padding: 50px 24px;
    text-align: center;
    color: #FFFFFF;
}

.products-hero .slide-badge {
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 16px;
}

.products-hero .slide-title {
    transform: none !important;
    opacity: 1 !important;
    font-size: var(--fs-hero-title);
    line-height: 1.2;
    margin-bottom: 16px;
}

.products-hero .slide-description {
    transform: none !important;
    opacity: 1 !important;
    max-width: 750px;
    margin: 0 auto 24px auto;
    font-size: var(--fs-hero-desc);
}

.products-grid .col-lg-4.hidden {
    display: none !important;
}

/* Product Search box and inputs styling */
.prod-search-box {
    position: relative;
    width: 320px;
    max-width: 100%;
}

.prod-search-input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    background-color: #FFFFFF;
    outline: none;
}

.prod-search-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

/* Services Page Hero styles */
.services-hero {
    background: linear-gradient(rgba(11, 37, 69, 0.9), rgba(11, 37, 69, 0.98)), url('/media/banners/hero_banner.png') no-repeat center center/cover;
    padding: 80px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.services-hero .container-xl {
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-hero .slide-badge {
    transform: none !important;
    opacity: 1 !important;
    display: inline-block;
    color: var(--color-accent);
    font-size: var(--fs-subtitle);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.services-hero .slide-title {
    transform: none !important;
    opacity: 1 !important;
    font-size: var(--fs-hero-title);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 16px;
}

.services-hero .slide-description {
    transform: none !important;
    opacity: 1 !important;
    font-size: var(--fs-hero-desc);
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
}

/* ==========================================================================
   Contact Page Custom Layouts
   ========================================================================== */
.contact-hero {
    background: linear-gradient(rgba(11, 37, 69, 0.85), rgba(11, 37, 69, 0.95)),
        url('/media/banners/hero_banner.png') no-repeat center center/cover;
    padding: 50px 24px;
    text-align: center;
    color: #FFFFFF;
}

.contact-hero .slide-badge {
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 16px;
}

.contact-hero .slide-title {
    transform: none !important;
    opacity: 1 !important;
    font-size: var(--fs-hero-title);
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-hero .slide-description {
    transform: none !important;
    opacity: 1 !important;
    max-width: 750px;
    margin: 0 auto 24px auto;
    font-size: var(--fs-hero-desc);
}

.contact-stats-bar {
    background: var(--color-primary);
    padding: 28px 24px;
}

.contact-stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.contact-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1.1;
}

.contact-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Full-width map section */
.contact-map-section {
    padding: 0;
}

.contact-map-section-header {
    background: var(--bg-secondary);
    padding: 50px 24px;
    text-align: center;
}

.contact-map-container {
    width: 100%;
    height: 420px;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Support info cards */
.contact-support-section {
    padding: 60px 24px 70px;
    background: var(--bg-primary);
}

.contact-support-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.03);
    transition: all 0.3s ease;
}

.contact-support-card:hover {
    box-shadow: 0 8px 30px rgba(11, 37, 69, 0.06);
    border-color: rgba(30, 64, 175, 0.2);
}

.contact-support-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(30, 64, 175, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.contact-support-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.contact-support-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-support-note {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

@media (max-width: 992px) {
    .contact-stats-inner {
        gap: 24px;
    }

    .contact-stat-num {
        font-size: 24px;
    }

    .contact-stat-divider {
        display: none;
    }

    .contact-map-container {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .contact-stats-bar {
        padding: 20px 16px;
    }

    .contact-stats-inner {
        gap: 16px;
    }

    .contact-stat-item {
        flex: 1 0 calc(50% - 16px);
        min-width: 120px;
    }

    .contact-map-container {
        height: 260px;
    }

    .contact-support-section {
        padding: 40px 16px 50px;
    }
}

/* ==========================================================================
   Working Process Section - Premium Curved Connectors & Light Theme
   ========================================================================== */
.process-section {
    background-color: var(--bg-primary);
    padding: 50px 32px;
    position: relative;
    overflow: hidden;
}

.process-subtitle {
    display: block;
    font-size: var(--fs-subtitle);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--color-accent);
    text-align: left;
    margin-bottom: 10px;
}

.process-title {
    font-size: var(--fs-h2);
    font-weight: 800;
    color: var(--color-primary);
    text-align: left;
    margin-top: 10px;
}

.process-title-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 15px 0 0;
    border-radius: 2px;
}

.process-row {
    margin-top: 60px;
    position: relative;
}

.process-col {
    position: relative;
}

.process-card-step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    position: relative;
    z-index: 2;
}

.process-circle-wrap {
    position: relative;
    margin-bottom: 28px;
    z-index: 3;
}

.process-icon-container {
    width: 100px;
    height: 100px;
    background-color: #FFFFFF;
    border: 2px dashed rgba(11, 37, 69, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.04);
    transition: var(--transition-smooth);
}

.process-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-number {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    z-index: 4;
}

/* Hover effects */
.process-col:hover .process-icon-container {
    border-color: var(--color-accent);
    border-style: solid;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.15);
    transform: scale(1.05);
}

.process-col:hover .process-icon {
    transform: rotate(15deg) scale(1.05);
    color: var(--color-accent);
}

.process-col:hover .process-step-number {
    background-color: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.process-col:hover .process-card-title {
    color: var(--color-accent);
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 250px;
}

.process-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.process-card-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Connecting lines for desktop (min-width: 992px) */
@media (min-width: 992px) {
    .process-col::after {
        content: '';
        position: absolute;
        top: 50px; /* Aligned with circle center */
        left: calc(50% + 50px + 6px); /* Starts after circle + small spacing */
        width: calc(100% - 100px - 12px); /* Spans to the next circle */
        height: 36px;
        transform: translateY(-50%);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
        z-index: 1;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    /* Step 1 -> 2: Dipping Curve */
    .process-col:nth-child(1)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,10 Q 50,38 100,10' stroke='%230052FF' stroke-opacity='0.18' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    .process-col:nth-child(1):hover::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,10 Q 50,38 100,10' stroke='%2300E5FF' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    /* Step 2 -> 3: Arching Curve */
    .process-col:nth-child(2)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,30 Q 50,2 100,30' stroke='%230052FF' stroke-opacity='0.18' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    .process-col:nth-child(2):hover::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,30 Q 50,2 100,30' stroke='%2300E5FF' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    /* Step 3 -> 4: Dipping Curve */
    .process-col:nth-child(3)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,10 Q 50,38 100,10' stroke='%230052FF' stroke-opacity='0.18' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    .process-col:nth-child(3):hover::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,10 Q 50,38 100,10' stroke='%2300E5FF' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    /* Step 4: Hide connector */
    .process-col:nth-child(4)::after {
        display: none;
    }
}

/* Connecting lines for tablet (768px - 991px) in 2x2 layout */
@media (min-width: 768px) and (max-width: 991px) {
    .process-col::after {
        content: '';
        position: absolute;
        top: 50px;
        left: calc(50% + 50px + 6px);
        width: calc(100% - 100px - 12px);
        height: 36px;
        transform: translateY(-50%);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
        z-index: 1;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    /* Row 1 horizontal: Step 1 -> 2 (Dipping Curve) */
    .process-col:nth-child(1)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,10 Q 50,38 100,10' stroke='%230052FF' stroke-opacity='0.18' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    .process-col:nth-child(1):hover::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,10 Q 50,38 100,10' stroke='%2300E5FF' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    /* Row 2 horizontal: Step 3 -> 4 (Arching Curve) */
    .process-col:nth-child(3)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,30 Q 50,2 100,30' stroke='%230052FF' stroke-opacity='0.18' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    .process-col:nth-child(3):hover::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none'%3E%3Cpath d='M 0,30 Q 50,2 100,30' stroke='%2300E5FF' stroke-width='2' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    .process-col:nth-child(2)::after,
    .process-col:nth-child(4)::after {
        display: none;
    }
}

/* Mobile responsive fixes */
@media (max-width: 767px) {
    .process-section {
        padding: 60px 16px;
    }
    .process-col::after {
        display: none;
    }
    .process-card-step-wrapper {
        padding: 5px;
    }
    .process-circle-wrap {
        margin-bottom: 18px;
    }
}

/* ==========================================================================
   Blueprint Engineering Widget Styling
   ========================================================================== */
.about-blueprint-widget {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    z-index: 10;
}

.blueprint-canvas {
    background-color: #051329; /* Very deep blueprint navy */
    border: 1px solid rgba(0, 168, 232, 0.15);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(5, 19, 41, 0.25);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.blueprint-canvas:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(5, 19, 41, 0.4);
    border-color: rgba(0, 168, 232, 0.3);
}

.blueprint-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Pulsing point animation on CAD points */
.blueprint-pulse {
    animation: blueprintPulseAnimation 2s infinite ease-in-out;
    transform-origin: center;
}

@keyframes blueprintPulseAnimation {
    0% {
        r: 3px;
        fill-opacity: 1;
        stroke: var(--color-accent);
        stroke-width: 0px;
    }
    50% {
        r: 6px;
        fill-opacity: 0.8;
        stroke: var(--color-accent);
        stroke-width: 4px;
    }
    100% {
        r: 3px;
        fill-opacity: 1;
        stroke: var(--color-accent);
        stroke-width: 0px;
    }
}

/* Floating Specifications Cards */
.blueprint-spec-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 5;
    transition: var(--transition-smooth);
}

.blueprint-spec-card--top {
    top: 36px;
    left: -28px;
    width: 180px;
}

.blueprint-spec-card--bottom {
    bottom: 36px;
    right: -28px;
    width: 210px;
}

.blueprint-canvas:hover .blueprint-spec-card--top {
    transform: translate(-5px, -3px);
}

.blueprint-canvas:hover .blueprint-spec-card--bottom {
    transform: translate(5px, 3px);
}

.blueprint-spec-card .spec-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.blueprint-spec-card .spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.blueprint-spec-card .spec-row:last-child {
    margin-bottom: 0;
}

.blueprint-spec-card .spec-name {
    font-weight: 400;
}

.blueprint-spec-card .spec-val {
    font-weight: 700;
    color: #FFFFFF;
}

/* Compliance stamp badge styling */
.stamp-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stamp-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10B981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.stamp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.stamp-text strong {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.stamp-text span {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.6);
}

/* Experience Badge */
.blueprint-exp-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(30, 64, 175, 0.35);
    z-index: 6;
    transition: var(--transition-smooth);
    border: 3px solid #051329;
}

.blueprint-exp-badge .exp-num {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.blueprint-exp-badge .exp-lbl {
    font-size: 7.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 60px;
    line-height: 1.1;
    margin-top: 1px;
}

.blueprint-canvas:hover .blueprint-exp-badge {
    transform: scale(1.1) rotate(10deg);
}

@media (max-width: 992px) {
    .blueprint-spec-card--top {
        left: -12px;
    }
    .blueprint-spec-card--bottom {
        right: -12px;
    }
}

@media (max-width: 576px) {
    .blueprint-spec-card {
        padding: 10px 14px;
    }
    .blueprint-spec-card--top {
        top: 20px;
        left: -8px;
        width: 150px;
    }
    .blueprint-spec-card--bottom {
        bottom: 20px;
        right: -8px;
        width: 180px;
    }
    .blueprint-exp-badge {
        top: -16px;
        right: -16px;
        width: 72px;
        height: 72px;
    }
    .blueprint-exp-badge .exp-num {
        font-size: 22px;
    }
    .blueprint-exp-badge .exp-lbl {
        font-size: 7px;
    }
}

/* ==========================================================================
   3D Layered Card Stack Widget (Fresh Modern Look)
   ========================================================================== */
.about-layer-stack {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 520px;
    margin: 0 auto;
    z-index: 10;
}

.stack-card {
    position: absolute;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 12px 40px rgba(11, 37, 69, 0.08);
}

/* Card 1: Bottom Photo Layer */
.stack-card--photo {
    width: 90%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.stack-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.stack-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.4) 0%, transparent 60%);
}

/* Card 2: Top Info Badge Layer */
.stack-card--info {
    width: 68%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 28px;
    bottom: 40px;
    right: -20px;
    z-index: 3;
    box-shadow: 0 24px 50px rgba(11, 37, 69, 0.15);
}

/* Hover Interactive Transforms (Fanning out, sliding, floating) */
.about-layer-stack:hover .stack-card--photo {
    transform: translate(-5px, 5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.12);
}

.about-layer-stack:hover .stack-card--photo .stack-img {
    transform: scale(1.04);
}

.about-layer-stack:hover .stack-card--info {
    transform: translate(10px, 10px);
    background: #FFFFFF;
    box-shadow: 0 30px 60px rgba(11, 37, 69, 0.2);
}

/* Inner contents styling */
/* Google Review card inside the 3D stack */
.google-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.google-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.google-text-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.google-platform-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary);
}

.google-review-label {
    font-size: 10.5px;
    color: var(--text-muted);
}

.google-rating-score {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.google-review-divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 12px;
}

.google-review-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.google-stars {
    display: flex;
    gap: 4px;
    color: #3B82F6; /* Golden Amber color */
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.google-review-count {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Responsiveness */
@media (max-width: 992px) {
    .about-layer-stack {
        height: 380px;
        max-width: 380px;
    }
    .stack-card--photo {
        height: 250px;
    }
    .stack-card--cad {
        height: 200px;
    }
    .stack-card--info {
        padding: 16px;
    }
    .google-rating-score {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .about-layer-stack {
        height: 320px;
        max-width: 320px;
        margin-top: 10px;
    }
    .stack-card--photo {
        width: 85%;
        height: 220px;
        bottom: 10px;
        left: 10px;
    }
    .stack-card--cad {
        width: 80%;
        height: 170px;
        top: 20px;
        right: 10px;
    }
    .stack-card--info {
        width: 65%;
        padding: 14px;
        bottom: -5px;
        right: -5px;
    }
    .google-rating-score {
        font-size: 22px;
    }
    .google-review-count {
        font-size: 10px;
    }
}

/* Navigation Hover Dropdown for Desktop Screen Widths */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
/* Extracted from service-detail.html */

    /* Hero Section Improvements */
    .services-hero {
        position: relative;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        padding: 120px 24px 80px 24px;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
        overflow: hidden;
    }
    
    .services-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(11, 37, 69, 0.95) 0%, rgba(11, 37, 69, 0.85) 50%, rgba(30, 64, 175, 0.15) 100%);
        z-index: 1;
    }

    .services-hero .container-xl {
        position: relative;
        z-index: 2;
    }

    .services-hero .slide-badge {
        display: inline-block;
        background-color: rgba(30, 64, 175, 0.15);
        color: var(--color-accent);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 6px 16px;
        border-radius: 50px;
        margin-bottom: 20px;
        border: 1px solid rgba(30, 64, 175, 0.25);
    }

    .services-hero .slide-title {
        font-size: 2.75rem;
        font-weight: 900;
        color: #FFFFFF;
        line-height: 1.2;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    /* Main Grid Layout */
    .service-main-section {
        padding: 80px 0;
        background-color: var(--bg-primary);
    }

    /* Rich Text Content Area styling */
    .text-rich {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.8;
    }

    .text-rich p {
        margin-bottom: 24px;
    }

    .text-rich p:last-child {
        margin-bottom: 0;
    }

    .text-rich h3 {
        font-size: 22px;
        font-weight: 800;
        color: var(--color-primary);
        margin-top: 40px;
        margin-bottom: 16px;
        letter-spacing: -0.3px;
    }

    .text-rich h4 {
        font-size: 18px;
        font-weight: 700;
        color: var(--color-primary);
        margin-top: 32px;
        margin-bottom: 12px;
    }

    .text-rich ul, .text-rich ol {
        margin-bottom: 30px;
        padding-left: 20px;
    }

    .text-rich li {
        margin-bottom: 10px;
        position: relative;
    }

    .text-rich strong {
        color: var(--color-primary);
        font-weight: 700;
    }

    /* Sticky Sidebar Styles */
    .sidebar-sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .sidebar-card {
        background-color: var(--bg-primary);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 32px;
        box-shadow: 0 10px 30px rgba(11, 37, 69, 0.03);
        transition: all 0.3s ease;
    }

    .sidebar-card:hover {
        box-shadow: 0 15px 40px rgba(11, 37, 69, 0.06);
    }

    .sidebar-card-title {
        font-size: 18px;
        font-weight: 800;
        color: var(--color-primary);
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Tech Specs List */
    .spec-table {
        width: 100%;
        margin-bottom: 0;
    }

    .spec-row {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px dashed var(--border-color);
        font-size: 14px;
    }

    .spec-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .spec-label {
        color: var(--text-secondary);
        font-weight: 500;
    }

    .spec-value {
        color: var(--color-primary);
        font-weight: 700;
        text-align: right;
    }

    /* Related Services */
    .related-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .related-link-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background-color: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--color-primary);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .related-link-item:hover {
        background-color: var(--color-primary);
        color: #FFFFFF;
        border-color: var(--color-primary);
        transform: translateX(4px);
    }

    .related-link-item svg {
        transition: transform 0.25s ease;
    }

    .related-link-item:hover svg {
        transform: translateX(4px);
        stroke: #FFFFFF;
    }

    /* Sidebar CTA Banner */
    .sidebar-cta-card {
        background: linear-gradient(135deg, var(--color-primary) 0%, #153965 100%);
        border-radius: 12px;
        padding: 35px 30px;
        color: #FFFFFF;
        position: relative;
        overflow: hidden;
        border: none;
    }

    .sidebar-cta-card::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(30, 64, 175, 0.15) 0%, rgba(30, 64, 175, 0) 70%);
        border-radius: 50%;
    }

    .sidebar-cta-title {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .sidebar-cta-desc {
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .btn-sidebar-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color-accent);
        color: #FFFFFF !important;
        font-weight: 700;
        font-size: 14px;
        padding: 12px 24px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
        width: 100%;
        border: none;
    }

    .btn-sidebar-cta:hover {
        background-color: #1E3A8A;
        box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
        transform: translateY(-2px);
    }

    /* Advantages Section */
    .service-features-section {
        padding: 85px 0;
        background-color: var(--bg-secondary);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .feature-card {
        background: #ffffff;
        padding: 40px 32px;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        overflow: hidden;
        z-index: 1;
        box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(30,64,175,0.05) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(11, 37, 69, 0.08);
        border-color: rgba(30,64,175,0.1);
    }
    
    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card-number {
        font-size: 11px;
        font-weight: 800;
        color: #ffffff;
        background: var(--color-primary);
        padding: 6px 14px !important;
        border-radius: 20px !important;
        display: inline-block !important;
        margin-bottom: 24px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .feature-card:hover .feature-card-number {
        background: var(--color-accent);
        box-shadow: 0 6px 15px rgba(30,64,175,0.25);
    }

    .feature-card-title {
        font-size: 19px;
        font-weight: 800;
        color: var(--color-primary);
        margin-bottom: 16px;
        letter-spacing: -0.3px;
        transition: color 0.3s ease;
    }
    
    .feature-card:hover .feature-card-title {
        color: var(--color-accent);
    }

    .feature-card-text {
        font-size: 14.5px;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    .feature-card-text p {
        margin-bottom: 0;
    }

    /* Workflow Cards */
    .service-process-section {
        padding: 85px 0;
        background-color: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
    }

    .process-card {
        background: var(--bg-secondary);
        padding: 36px 30px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
    }

    .process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(11, 37, 69, 0.08);
        border-color: var(--color-accent);
        background-color: var(--bg-primary);
    }

    .process-num-badge {
        position: absolute;
        top: -14px;
        left: 30px;
        background: var(--color-primary);
        color: #FFFFFF;
        font-weight: 800;
        font-size: 11px;
        padding: 6px 14px;
        border-radius: 30px;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 10px rgba(11, 37, 69, 0.15);
        transition: all 0.3s ease;
    }

    .process-card:hover .process-num-badge {
        background: var(--color-accent);
        box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
    }

    .process-icon-wrapper {
        margin-bottom: 24px;
        color: var(--color-primary);
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(11, 37, 69, 0.04);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .process-card:hover .process-icon-wrapper {
        color: var(--color-accent);
        background: rgba(30, 64, 175, 0.08);
    }

    .process-step-icon {
        width: 24px;
        height: 24px;
    }

    .process-step-title {
        font-size: 17px;
        font-weight: 800;
        color: var(--color-primary);
        margin-bottom: 12px;
    }

    .process-step-text {
        font-size: 13.5px;
        color: var(--text-secondary);
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* FAQ accordion styling */
    .faq-item {
        background-color: var(--bg-primary);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 12px;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(30, 64, 175, 0.2);
        box-shadow: 0 6px 15px rgba(11, 37, 69, 0.03);
    }

    .faq-item.active {
        border-color: var(--color-accent);
        box-shadow: 0 6px 20px rgba(11, 37, 69, 0.05);
    }

    .faq-question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        padding: 20px 24px;
        text-align: left;
        font-size: 15px;
        font-weight: 700;
        color: var(--color-primary);
        cursor: pointer;
        transition: all 0.25s ease;
        gap: 16px;
    }

    .faq-question:hover {
        color: var(--color-accent);
    }

    .faq-question-text {
        flex: 1;
    }

    .faq-icon {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--bg-secondary);
        color: var(--text-secondary);
        transition: all 0.3s ease;
    }

    .faq-item.active .faq-question {
        color: var(--color-accent);
    }

    .faq-item.active .faq-icon {
        background: rgba(30, 64, 175, 0.1);
        color: var(--color-accent);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-answer p {
        padding: 0 24px 20px 24px;
        margin-bottom: 0;
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* Form Container */
    .contact-form-pane {
        background: var(--bg-primary);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(11, 37, 69, 0.03);
    }

    .form-heading {
        font-size: 22px;
        font-weight: 850;
        color: var(--color-primary);
        margin-bottom: 24px;
        letter-spacing: -0.5px;
    }

    .form-group label {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--color-primary);
        margin-bottom: 8px;
    }

    .form-group input, .form-group textarea {
        width: 100%;
        background-color: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 6px;
        padding: 12px 16px;
        font-size: 14px;
        color: var(--text-primary);
        transition: all 0.25s ease;
    }

    .form-group input:focus, .form-group textarea:focus {
        background-color: var(--bg-primary);
        border-color: var(--color-accent);
        outline: none;
        box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
    }

    .btn-submit {
        background-color: var(--color-primary);
        color: #FFFFFF !important;
        font-weight: 700;
        font-size: 15px;
        padding: 14px 28px;
        border-radius: 6px;
        border: none;
        width: 100%;
        margin-top: 10px;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        background-color: var(--color-accent);
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
        transform: translateY(-1px);
    }

    .has-error input, .has-error textarea {
        border-color: #dc3545 !important;
    }

    .err-msg {
        display: none;
        color: #dc3545;
        font-size: 12px;
        font-weight: 500;
        margin-top: 6px;
    }

/* ==========================================================================
   About Page Profile Redesign (Fix Layout Overlaps & Add Floating Badges)
   ========================================================================== */
.about-profile-section {
    background-color: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.about-image-container {
    position: relative;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container.about-image-container--flush {
    padding: 30px;
}

.about-image-decor {
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-light-blue) 100%);
    opacity: 0.1;
    border-radius: 16px;
    z-index: 1;
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.08);
}

.section-bg-tertiary {
    background-color: var(--bg-tertiary);
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Floating Badges on About Page */
.about-img-experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: acgBadgeFloat 3s ease-in-out infinite;
}

.about-img-trust-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.1);
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: acgBadgeFloat 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.experience-years {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.experience-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.experience-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.badge-icon--accent {
    background-color: var(--color-accent);
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.badge-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.badge-text span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Page Content Pane & Metrics */
.about-content-pane {
    padding-left: 20px;
}

.about-content-pane .about-subtitle {
    margin-bottom: 12px;
}

.about-content-pane .about-title {
    margin-bottom: 20px;
}

.about-content-pane .about-desc {
    margin-bottom: 20px;
}

.counter-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--color-primary);
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.counter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.counter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.08);
}

.counter-card .counter-num {
    font-size: clamp(28px, 2.5vw + 14px, 42px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.counter-card .counter-num--accent {
    color: var(--color-accent);
}

.counter-card .counter-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.counter-card .counter-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsiveness for About Page Profile */
@media (max-width: 992px) {
    .about-content-pane {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-image-container {
        padding: 20px;
    }
    
    .about-img-experience-badge {
        left: -10px;
        bottom: 20px;
    }
    
    .about-img-trust-badge {
        right: -10px;
        top: 20px;
    }
}

@media (max-width: 768px) {
    .about-img-experience-badge,
    .about-img-trust-badge {
        position: static;
        margin-top: 15px;
        animation: none;
        width: 100%;
        box-shadow: 0 4px 10px rgba(11, 37, 69, 0.05);
    }
    
    .about-image-container {
        padding: 0;
    }
    
    .about-image-decor {
        display: none;
    }
    
    .about-img {
        height: 320px;
    }
}

/* ==========================================================================
   Minimalist Core Values Grid (Reduces Clutter)
   ========================================================================== */
.values-minimal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
    margin-top: 48px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.value-minimal-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-minimal-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    background: rgba(30, 64, 175, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-minimal-content {
    flex: 1;
}

.value-minimal-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.value-minimal-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .values-minimal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Floating Action Buttons */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-2px);
    color: #FFFFFF;
}

/* WhatsApp specific style */
.btn-float-whatsapp {
    background-color: #25D366;
}
.btn-float-whatsapp:hover {
    background-color: #128C7E;
}

/* Phone specific style */
.btn-float-phone {
    background-color: var(--color-accent); /* Orange */
}
.btn-float-phone:hover {
    background-color: #1E3A8A;
}

/* Back to Top specific style */
.btn-back-to-top {
    background-color: var(--color-primary); /* Deep navy */
    opacity: 0;
    visibility: hidden;
}
.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.btn-back-to-top:hover {
    background-color: #081c34;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-cta-container {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    .floating-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Footer Attribution Link Hover */
.footer-attribution-link:hover {
    color: var(--color-accent) !important;
    border-bottom-color: var(--color-accent) !important;
}

/* ==========================================================================
   Service Detail Hero Banner Redesign
   ========================================================================== */

/* Layout & Overrides */
.services-hero {
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 150px 24px 110px 24px !important;
}

.services-hero .container-xl {
    width: 100%;
}

@media (max-width: 991.98px) {
    .services-hero {
        min-height: auto;
        padding: 120px 24px 80px 24px !important;
    }
}

.services-hero .slide-description {
    font-size: clamp(14px, 0.5vw + 14px, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 30px !important;
    max-width: 680px;
    text-align: left;
}

/* Subtle, low-profile breadcrumbs */
.banner-breadcrumbs .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.banner-breadcrumbs .breadcrumb-item {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
}

.banner-breadcrumbs .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.banner-breadcrumbs .breadcrumb-item a:hover {
    color: var(--color-accent);
}

.banner-breadcrumbs .breadcrumb-item a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.banner-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
    content: "/";
    padding-right: 8px;
}

.banner-breadcrumbs .breadcrumb-item.active {
    color: #FFFFFF;
    font-weight: 600;
}

/* Custom Banner Buttons */
.btn-banner-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
    border: 2px solid var(--color-accent);
    cursor: pointer;
}

.btn-banner-primary:hover {
    background-color: #1E3A8A;
    border-color: #1E3A8A;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
    transform: translateY(-2px);
}

.btn-banner-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.btn-banner-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Glassmorphic Features Showcase Card */
.banner-features-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.banner-features-glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.glass-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.glass-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.glass-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.glass-feature-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(30, 64, 175, 0.15);
    border: 1px solid rgba(30, 64, 175, 0.25);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.glass-feature-item:hover .glass-feature-icon-box {
    background: var(--color-accent);
    color: #FFFFFF;
    transform: scale(1.05);
}

.glass-feature-icon-box svg {
    width: 18px;
    height: 18px;
}

.glass-feature-text-box h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 3px 0 !important;
}

.glass-feature-text-box p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 !important;
    line-height: 1.4;
}

