/* ============================================
   LOUVLUX - Smart Shading Solutions
   Custom Stylesheet
   ============================================ */


/* ============================================
   1. ROOT VARIABLES & BASE STYLES
   ============================================ */

:root {
    /* Primary - Black */
    --primary-color: #000000;
    --primary-dark: #000000;
    --primary-light: #333333;
    /* Secondary - Black */
    --secondary-color: #000000;
    --secondary-light: #111111;
    /* Accent - Light Gold (main brand accent for backgrounds, badges, highlights) */
    --accent-color: #f6f0eb;
    --accent-light: #f6f0eb;
    --accent-dark: #e8ddd4;
    /* Crimson */
    --crimson: #94455d;
    /* Neutral Colors */
    --dark: #000000;
    --gray-dark: #444444;
    --gray: #777777;
    --gray-light: #cccccc;
    --light: #ffffff;
    --white: #ffffff;
    /* Legacy accent aliases */
    --accent-gold: #f6f0eb;
    --accent-brown: #94455d;
    /* Typography */
    --font-primary: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-sans-alt: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    /* Spacing */
    --section-padding: 80px;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: var(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 200;
    line-height: 1.375;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.4px;
    margin-bottom: 0.75rem;
}

h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.4px;
    margin-bottom: 0.75rem;
}

h5 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

h6 {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}


/* ============================================
   2. TOP BAR
   ============================================ */

.top-bar {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--white);
    height: 36px;
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.top-bar.hide-on-scroll {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}


/* Hide topbar on mobile devices */

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
}

.top-bar .row {
    align-items: center;
}

.top-bar .top-link {
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    font-size: 12px;
    line-height: 1;
    vertical-align: middle;
}

.top-bar .top-link:hover {
    opacity: 1;
    color: #fff;
}

.top-bar .separator {
    margin: 0 12px;
    opacity: 0.3;
    vertical-align: middle;
}

.top-bar .working-hours {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    line-height: 1;
    vertical-align: middle;
}

.top-bar .working-hours i {
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    vertical-align: middle;
}


/* ============================================
   3. MAIN HEADER & NAVIGATION
   ============================================ */

.main-header {
    background-color: var(--white);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.35s ease, box-shadow 0.3s ease, top 0.3s ease, opacity 0.35s ease;
    transform: translateY(0);
}

/* Main header always visible - only top bar hides on scroll */

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Transparent header for inner pages */
.main-header.header-transparent {
    background-color: transparent;
    box-shadow: none;
}
.main-header.header-transparent .nav-link {
    color: #fff !important;
}
.main-header.header-transparent .nav-link:hover {
    color: rgba(255,255,255,0.7) !important;
}
.main-header.header-transparent .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}
.main-header.header-transparent .brand-logo {
    filter: brightness(0) invert(1);
}
/* When scrolled, revert to solid */
.main-header.header-transparent.scrolled {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.main-header.header-transparent.scrolled .nav-link {
    color: var(--dark) !important;
}
.main-header.header-transparent.scrolled .nav-link:hover {
    color: #000 !important;
}
.main-header.header-transparent.scrolled .navbar-toggler-icon {
    filter: none;
}
.main-header.header-transparent.scrolled .brand-logo {
    filter: none;
}

/* Inner page section titles - match homepage style */
.inner-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--dark);
    margin: 0 0 10px;
    text-align: center;
}
.inner-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 15px;
}

.inner-section-label--pill {
    font-size: 15px;
    color: #fff;
    background: #94455d;
    padding: 8px 18px;
    border-radius: 4px;
    margin-bottom: 18px;
}

/* App cards - overlay style (used on inner pages for Projects & Solutions) */
.app-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Solutions cards should be tall (like old product-grid-card), projects stay square */
.products-section .app-card {
    aspect-ratio: auto;
    height: 500px;
}
.products-section .app-card img {
    height: 100%;
    min-height: 500px;
}

/* App cards inside horizontal slider */
.product-grid .app-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 300px;
    height: 500px;
    border-radius: 0;
    display: block;
    text-decoration: none;
}

.product-grid .app-card img {
    min-height: 500px;
}

.app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.app-card:hover img {
    transform: scale(1.07);
}

.app-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.35s ease;
}

.app-card:hover .app-card__overlay {
    background: linear-gradient(transparent 20%, rgba(0,0,0,0.9));
}

.app-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 8px;
}

.app-card__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.app-card:hover .app-card__desc {
    max-height: 100px;
    opacity: 1;
}

@media (max-width: 768px) {
    .app-card {
        aspect-ratio: 1;
    }
    .products-section .app-card {
        height: auto;
        aspect-ratio: 3 / 4;
        min-height: auto;
    }
    .products-section .app-card img {
        min-height: auto;
    }
    .app-card__desc {
        max-height: 100px;
        opacity: 1;
    }
}

/* ---- Commercial Solutions bento layout ---- */
.commercial-bento {
    display: grid;
    gap: 20px;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 310px 310px;
    grid-template-areas:
        "healthcare education   education"
        "healthcare hospitality corporate";
}
.commercial-bento__healthcare  { grid-area: healthcare; }
.commercial-bento__education   { grid-area: education; }
.commercial-bento__hospitality { grid-area: hospitality; }
.commercial-bento__corporate   { grid-area: corporate; }

/* Higher-specificity overrides to beat .products-section .app-card rules */
.products-section .commercial-bento .app-card {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    display: block;
    overflow: hidden;
}
.products-section .commercial-bento .app-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .commercial-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 340px 200px;
        grid-template-areas:
            "healthcare  education"
            "hospitality corporate";
    }
}

@media (max-width: 575px) {
    .commercial-bento {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-template-areas:
            "healthcare"
            "education"
            "hospitality"
            "corporate";
        gap: 16px;
    }
    .products-section .commercial-bento .app-card {
        height: 240px;
    }
}

/* Breadcrumb overlay on hero */
.page-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.45);
}
.page-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    align-items: center;
}
.page-breadcrumb .breadcrumb-item,
.page-breadcrumb .breadcrumb-item a,
.page-breadcrumb .breadcrumb-item.active,
.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
    font-size: 13px;
}
.page-breadcrumb .breadcrumb-item a:hover {
    color: rgba(255,255,255,0.8) !important;
}

/* Hide entire header on scroll down */
.main-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}


/* When topbar is hidden, move main-header to top */

.top-bar.hide-on-scroll~.main-header,
.main-header.topbar-hidden {
    top: 0;
}


/* Mobile: Always position at top since topbar is hidden */

@media (max-width: 991px) {
    .main-header {
        top: 0;
        padding: 0 15px;
    }
}


/* Add body padding to prevent content jump when header is fixed */

body {
    padding-top: 0;
}

body.has-fixed-header {
    padding-top: 127px;
}

/* No body padding when header is transparent (hero goes behind header) */
body.has-transparent-header {
    padding-top: 0 !important;
}

/* Mobile body padding adjustment */

@media (max-width: 991px) {
    body.has-fixed-header {
        padding-top: 70px;
    }
}

@media (max-width: 576px) {
    body.has-fixed-header {
        padding-top: 65px;
    }
}

.navbar {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 91px;
}

@media (max-width: 991px) {
    .navbar {
        padding: 0;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 40px;
    padding: 0;
    margin-right: 40px;
}


/* Mobile adjustments for navbar-brand */

@media (max-width: 991px) {
    .navbar-brand {
        padding: 8px 8px 8px 0;
        min-height: auto;
        margin-right: auto;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        padding: 6px 6px 6px 0;
    }
}

.brand-logo {
    max-width: 160px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    width: auto;
}

.brand-logo:hover {
    filter: brightness(0) saturate(100%) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transform: scale(1.05);
}


/* Mobile logo sizing - keep at good size */

@media (max-width: 991px) {
    .brand-logo {
        max-width: 135px;
        height: 68px;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        max-width: 130px;
        height: 64px;
    }
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    padding: 14px 12px !important;
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

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

.navbar-nav .nav-link::after {
    display: none;
}

.btn-quote {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    margin-left: 20px !important;
}

.btn-quote:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    color: var(--white) !important;
}

.btn-quote:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Nav Get Quote button - compact version for main header */
.btn-quote-nav {
    font-size: 11px;
    padding: 10px 22px;
    margin-left: 15px !important;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20ba5a;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}


/* Smaller variant for top bar */

.btn-quote-top {
    font-size: 11px !important;
    padding: 6px 16px !important;
    margin-left: 0 !important;
    border-radius: 3px !important;
    letter-spacing: 1px !important;
    box-shadow: none !important;
}

.btn-quote-top:hover {
    transform: none !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) !important;
}


/* Downloads text button in navbar */

.nav-download-btn {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    letter-spacing: normal;
    text-transform: none;
    border-bottom: 2px solid transparent !important;
    background: none !important;
    padding: 8px 0 !important;
    margin-left: 5px;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
}

.nav-download-btn:hover {
    color: #000 !important;
    border-bottom-color: var(--accent-color) !important;
    transform: none !important;
    box-shadow: none !important;
}

.nav-download-btn::after {
    display: none !important;
}


/* Navbar email link */

.nav-email-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-left: 1px solid #e8e8e8;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-email-link i {
    color: #000;
    font-size: 14px;
}

.nav-email-link:hover {
    color: #000;
}


/* Navbar Toggler (Mobile Menu) */

.navbar-toggler {
    border: 2px solid var(--secondary-color);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.35s ease;
}

.navbar-toggler:hover {
    background-color: rgba(15, 25, 35, 0.08);
    border-color: var(--dark);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(15, 25, 35, 0.15);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230f1923' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: contain;
    width: 28px;
    height: 28px;
}


/* Mega Menu */

.mega-dropdown {
    position: static !important;
}

.mega-dropdown .dropdown-toggle::after {
    border: none;
}

.mega-menu {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 35px 40px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-top: 0 !important;
    top: 100% !important;
    background-color: var(--white);
    border-top: 1px solid var(--primary-color);
    z-index: 1050;
    pointer-events: auto;
}

.mega-menu-title {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
    letter-spacing: 1px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 10px;
}

.mega-menu-list li a {
    font-size: 13px;
    color: var(--gray-dark);
    transition: all 0.25s ease;
    display: inline-block;
}

.mega-menu-list li a:hover {
    color: #94455d;
    padding-left: 5px;
    font-weight: 500;
}


/* Regular Dropdown */

.dropdown-menu:not(.mega-menu) {
    border: none;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 15px 0;
    margin-top: 0;
    border-top: 1px solid var(--primary-color);
    z-index: 1050;
}

.dropdown-item {
    padding: 10px 25px;
    font-size: 13px;
    color: var(--gray-dark);
    transition: color 0.25s ease, background-color 0.25s ease;
}

.dropdown-item:hover {
    background-color: rgba(148, 69, 93, 0.08);
    color: #94455d;
}

.dropdown-item.active-section {
    color: #94455d;
    font-weight: 600;
}

/* Desktop: open dropdowns on hover */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
    .mega-dropdown:hover > .dropdown-menu {
        display: block;
    }
}


/* ============================================
   4. SIDEBAR NAVIGATION (Breezefree Style)
   ============================================ */

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: rgba(26, 26, 46, 0.95);
    padding: 20px 0;
    border-radius: 0 8px 8px 0;
    display: none;
    /* Will be shown on inner pages */
}


/* Sidebar submenu that appears to the left when a category is clicked */

.sidebar-submenu {
    position: fixed;
    left: 72px;
    /* sits just right of the sidebar */
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 16px;
    border-radius: 8px 0 0 8px;
    min-width: 220px;
    color: var(--white);
    display: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.sidebar-submenu.active {
    display: block;
}

.sidebar-submenu h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
}

.sidebar-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-submenu li {
    margin-bottom: 10px;
}

.sidebar-submenu a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.sidebar-submenu a:hover {
    color: var(--primary-light);
    transform: translateX(6px);
}

.sidebar-nav.active {
    display: block;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin-bottom: 5px;
}

.sidebar-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    color: var(--white);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: var(--transition-normal);
}

.sidebar-item a i {
    font-size: 24px;
    margin-bottom: 8px;
}

.sidebar-item a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.sidebar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: block;
}


/* ============================================
   5. HERO SLIDER
   ============================================ */

.hero-slider {
    position: relative;
}

.hero-slide {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 550px;
    padding: 60px 0;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.05;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 35px;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    border-radius: 4px;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

.hero-buttons .btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
}

.hero-buttons .btn-outline-light {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
}


/* ============================================
   Section: KoolShade (dark bg + specs + video)
   ============================================ */

.koolshade-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.koolshade-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.koolshade-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(4px) brightness(0.4);
    transform: scale(1.06);
}

.koolshade-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 50, 60, 0.55) 100%);
}

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

.koolshade-spec-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-dark);
    padding: 9px 0;
    border-bottom: 1px solid #f2f2f2;
    line-height: 1.5;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    display: none;
}

.features-list li i {
    color: #000;
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.features-list li span {
    flex: 1;
}

.features-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.koolshade-video-panel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.koolshade-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.koolshade-video-panel:hover .koolshade-panel-img {
    transform: scale(1.04);
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: all 0.35s ease;
    pointer-events: none;
}

.koolshade-video-panel:hover .video-play-btn {
    background: rgba(0, 0, 0, 1);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.btn-accent {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   Section: XShield Hero
   ============================================ */

.xshield-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.xshield-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.xshield-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}

.xshield-hero-title {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 25px;
}

.xshield-hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
}

.xshield-hero-media {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.xshield-hero-media img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* XShield Specs */
.xshield-specs-section {
    padding: 80px 0;
    background: var(--light);
}

.xshield-specs-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
}

.xshield-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.xshield-specs-list li {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.xshield-specs-list li:last-child {
    border-bottom: none;
}

.xshield-specs-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #000;
}

.xshield-variant-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    margin-top: 20px;
}

.xshield-specs-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 5px;
}

/* ============================================
   Section: All Products (Sedar style tabs)
   ============================================ */

.all-products-section {
    padding: 80px 0;
    background: var(--white);
}

.all-products-section .section-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.all-products-section .section-subtitle {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-tab {
    background: none;
    border: none;
    padding: 14px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    color: var(--dark);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.product-tab:hover {
    color: #000;
    font-weight: 400;
}

.product-tab.active {
    color: #000;
    font-weight: 500;
    background: #f6f0eb;
    border-radius: 30px;
}

.product-tab.active::before,
.product-tab.active + .product-tab::before {
    display: none;
}

.product-tab + .product-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--gray-light);
}

.product-grid-wrapper {
    position: relative;
}

.product-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-scroll-btn:hover,
.product-scroll-btn:focus-visible {
    background: #94455d;
    color: #fff;
    border-color: #94455d;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 14px rgba(148, 69, 93, 0.35);
    outline: none;
}

.product-scroll-prev {
    left: -22px;
}

.product-scroll-next {
    right: -22px;
}

.product-grid-wrapper.no-scroll .product-scroll-btn {
    display: none;
}

.product-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}

.product-grid::-webkit-scrollbar {
    display: none;
}

.product-grid-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    text-decoration: none;
    display: block;
    height: 100%;
    flex: 0 0 calc(33.333% - 11px);
    min-width: 300px;
}

.product-grid-card img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-grid-card:hover img {
    transform: scale(1.05);
}

.product-grid-card .card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ============================================
   Section: Instagram Highlights
   ============================================ */

.instagram-section {
    background: var(--white);
}

.instagram-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.instagram-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.instagram-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--gray-light);
    padding: 2px;
}

.instagram-info {
    text-align: left;
}

.instagram-info strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}

.instagram-info span {
    font-size: 13px;
    color: var(--gray);
}

.instagram-follow-btn {
    font-size: 13px;
    border-radius: 6px;
    padding: 8px 20px;
    background: #0095f6;
    color: var(--white);
    border: none;
}

.instagram-follow-btn:hover {
    background: #0081d6;
    color: var(--white);
}

/* Features Bar */
.features-bar {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.features-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.feature-item {
    padding: 30px 25px;
    border-right: 1px solid #e0e0e0;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    font-size: 48px;
    color: var(--gray-light);
    margin-bottom: 25px;
    display: block;
}

.feature-item h6 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .features-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-item {
        padding: 20px 15px;
    }
    .feature-item:nth-child(2) {
        border-right: none;
    }
    .feature-item h6 {
        font-size: 16px;
    }
    .feature-item i {
        font-size: 36px;
        margin-bottom: 15px;
    }
}

.instagram-grid-wrapper {
    position: relative;
    overflow: hidden;
}

.instagram-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.instagram-grid::-webkit-scrollbar {
    display: none;
}

.instagram-item {
    overflow: hidden;
    border-radius: 0;
    flex-shrink: 0;
    width: calc(25% - 14px);
}

.instagram-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.instagram-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.instagram-scroll-btn:hover {
    background: rgba(0,0,0,0.8);
}

.instagram-scroll-prev {
    left: 10px;
}

.instagram-scroll-next {
    right: 10px;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   Section: Latest Projects (Polished Interiors style)
   ============================================ */

.latest-projects-section {
    padding: 80px 0;
    background: var(--light);
}

.projects-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--dark);
    margin: 0 0 10px;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.project-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.project-card-body {
    padding: 25px;
}

.project-location {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000;
    display: block;
    margin-bottom: 8px;
}

.project-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #000;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   Section: Bottom CTA (Shaded Interiors style)
   ============================================ */

.bottom-cta-section {
    padding: 80px 0;
    background: var(--white);
}

.bottom-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
}

.bottom-cta-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
}

.bottom-cta-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 20px;
}

.bottom-cta-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.bottom-cta-buttons .btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bottom-cta-buttons .btn:hover {
    background: var(--primary-light);
    color: var(--white);
}

.bottom-cta-content p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

.koolshade-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}


/* Full background image */

.koolshade-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.koolshade-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(4px) brightness(0.4);
    transform: scale(1.06);
}

.koolshade-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 50, 60, 0.55) 100%);
}


/* Container above the background */

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


/* LEFT: Spec box with white background */

.koolshade-spec-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-dark);
    padding: 9px 0;
    border-bottom: 1px solid #f2f2f2;
    line-height: 1.5;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    display: none;
}

.features-list li i {
    color: #000;
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.features-list li span {
    flex: 1;
}

.features-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline;
}


/* RIGHT: Video panel */

.koolshade-video-panel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.koolshade-panel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.koolshade-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.koolshade-video-panel:hover .koolshade-panel-video,
.koolshade-video-panel:hover .koolshade-panel-img {
    transform: scale(1.04);
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}


/* Centered play button */

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.koolshade-video-panel:hover .video-play-btn {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}


/* Responsive */

@media (max-width: 1199px) {
    .koolshade-section {
        padding: 70px 0;
    }
    .koolshade-spec-box {
        padding: 32px 28px;
    }
    .features-list li {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .koolshade-section {
        padding: 55px 0;
    }
    .koolshade-spec-box {
        padding: 28px 24px;
    }
    .features-list li {
        font-size: 14px;
        line-height: 1.9;
    }
    .koolshade-video-panel {
        aspect-ratio: 16 / 9;
    }
    .hero-image-placeholder {
        display: none !important;
    }
    .hero-slide .col-lg-6:last-child {
        display: none !important;
    }
    .hero-slide .row {
        justify-content: center;
    }
    .hero-slide .col-lg-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .koolshade-section {
        padding: 45px 0;
    }
    .koolshade-spec-box {
        padding: 25px 20px;
    }
    .features-list li {
        font-size: 13px;
    }
    .koolshade-video-panel {
        aspect-ratio: 4 / 3;
        margin-top: 10px;
    }
}

.hero-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.placeholder-box {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    position: relative;
}

@media (max-width: 991px) {
    .placeholder-box {
        display: none !important;
    }
}

.placeholder-box i,
.placeholder-box span {
    display: none;
}


/* Carousel Controls */

.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 25px;
}

.carousel-control-next {
    right: 25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #000;
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
}

.carousel-indicators {
    bottom: 30px;
    gap: 8px;
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    padding: 0;
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    width: 28px;
    border-radius: 7px;
    transform: scale(1);
}


/* ============================================
   6. BUSINESS DESCRIPTION SECTION
   ============================================ */

.business-description {
    background-color: var(--white);
    padding: 50px 0 40px;
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 600;
    color: var(--secondary-color);
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.3;
    white-space: nowrap;
}

.section-subheadline {
    font-family: var(--font-primary);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-tagline {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}


/* ============================================
   7. KOOLSHADE SECTION
   ============================================ */

.koolshade-section {
    background-color: var(--light);
}

.video-container {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.play-button:hover {
    transform: scale(1.1);
    background-color: var(--accent-light);
}

.play-button i {
    font-size: 32px;
    margin-left: 5px;
}

.koolshade-content {
    background-color: var(--white);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--dark);
    margin: 0 0 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-description {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.feature-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}


/* ============================================
   8. INDOOR SHADES SECTION
   ============================================ */

.indoor-shades-section {
    padding: 80px 0;
}


/* ============================================
   INDOOR SHADES - Reference Style Cards
   ============================================ */

.indoor-shades-section {
    padding: 80px 0;
    background: #f9f7f4;
    position: relative;
}

.indoor-shades-section .container {
    position: relative;
    padding-left: 90px;
    padding-right: 90px;
}

@media (max-width: 1400px) {
    .indoor-shades-section .container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1200px) {
    .indoor-shades-section .container {
        padding-left: 70px;
        padding-right: 70px;
    }
}

@media (max-width: 992px) {
    .indoor-shades-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    .indoor-shades-section .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 576px) {
    .indoor-shades-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* Indoor Shade Cards - Full image overlay style (ref: sedarglobal.com) */

.shade-card {
    display: block;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    height: 420px;
    width: 100%;
    background: #111;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.shade-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

.shade-card__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shade-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
    transition: background 0.4s ease;
}

.shade-card:hover .shade-card__img-wrap::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.28) 60%, transparent 100%);
}

.shade-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.shade-card:hover .shade-card__img-wrap img {
    transform: scale(1.08);
}

.shade-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 26px 26px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.shade-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    flex: 1;
}

.shade-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    margin-left: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.shade-card:hover .shade-card__arrow {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateX(4px);
}


/* Keep old product-card for any other usage */

.product-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    display: block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    text-decoration: none;
}

.product-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.08) rotate(1deg);
}

.product-info {
    padding: 25px;
}

.product-info h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.product-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.product-card:hover .product-info h5 {
    color: #000;
}

.product-link {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-link i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.product-link:hover i {
    margin-left: 10px;
}


/* ============================================
   9. OUTDOOR SHADES SECTION
   ============================================ */


/* ============================================
   OUTDOOR SHADES SECTION
   ============================================ */

.outdoor-shades-section {
    padding: 90px 0;
    background: #f4f6f8;
    position: relative;
}

.outdoor-shades-section .container {
    position: relative;
    padding-left: 90px;
    padding-right: 90px;
}

@media (max-width: 1400px) {
    .outdoor-shades-section .container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1200px) {
    .outdoor-shades-section .container {
        padding-left: 70px;
        padding-right: 70px;
    }
}

@media (max-width: 992px) {
    .outdoor-shades-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    .outdoor-shades-section .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 576px) {
    .outdoor-shades-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* Category Navigation */

.category-nav-wrapper {
    margin-bottom: 45px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 5px 0;
}

.category-nav-wrapper::-webkit-scrollbar {
    display: none;
}

.category-nav {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.category-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: var(--gray-dark);
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    outline: none;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.category-btn:hover::before {
    width: 200px;
    height: 200px;
}

.category-btn:focus {
    outline: none;
}

.category-btn:hover {
    border-color: #000;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 6px 20px rgba(15, 25, 35, 0.25);
    transform: translateY(-2px);
}

.category-btn.active:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* Outdoor Product Cards - Full image overlay style */

.outdoor-shades-swiper {
    position: relative;
    padding: 0;
    overflow: visible;
    margin-bottom: 50px;
}

.outdoor-shades-swiper .swiper-wrapper {
    padding-bottom: 10px;
}

.outdoor-shades-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.outdoor-product-card {
    display: block;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    height: 500px;
    width: 100%;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    background: #111;
}

.outdoor-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

.outdoor-product-card__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.outdoor-product-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
    transition: background 0.4s ease;
}

.outdoor-product-card:hover .outdoor-product-card__img-wrap::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
}

.outdoor-product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.outdoor-product-card:hover .outdoor-product-card__img-wrap img {
    transform: scale(1.08);
}

.outdoor-product-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.outdoor-product-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 26px;
    z-index: 2;
    background: transparent;
}

.outdoor-product-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.outdoor-product-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonPulse {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.26);
    }
}


/* Outdoor Swiper Navigation */

.outdoor-shades-swiper .swiper-button-next,
.outdoor-shades-swiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 20;
    cursor: pointer;
    margin-top: 0;
    border: none;
    opacity: 1;
    animation: buttonPulse 3s ease-in-out infinite;
}

.outdoor-shades-swiper .swiper-button-next:hover,
.outdoor-shades-swiper .swiper-button-prev:hover {
    background: var(--secondary-color) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    transform: translateY(-50%) scale(1.1);
    animation: none;
}

.outdoor-shades-swiper .swiper-button-next:hover::after,
.outdoor-shades-swiper .swiper-button-prev:hover::after {
    color: #fff !important;
}

.outdoor-shades-swiper .swiper-button-next {
    right: -82px;
}

.outdoor-shades-swiper .swiper-button-prev {
    left: -82px;
}

.outdoor-shades-swiper .swiper-button-next:after,
.outdoor-shades-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
}


/* Responsive */

@media (max-width: 1400px) {
    .outdoor-shades-swiper .swiper-button-next {
        right: -74px;
    }
    .outdoor-shades-swiper .swiper-button-prev {
        left: -74px;
    }
}

@media (max-width: 1200px) {
    .outdoor-shades-swiper .swiper-button-next {
        right: -64px;
    }
    .outdoor-shades-swiper .swiper-button-prev {
        left: -64px;
    }
    .outdoor-shades-swiper .swiper-button-next,
    .outdoor-shades-swiper .swiper-button-prev {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 992px) {
    .outdoor-shades-swiper .swiper-button-next {
        right: -54px;
    }
    .outdoor-shades-swiper .swiper-button-prev {
        left: -54px;
    }
    .outdoor-shades-swiper .swiper-button-next,
    .outdoor-shades-swiper .swiper-button-prev {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 768px) {
    .outdoor-shades-section {
        padding: 70px 0;
    }
    .category-nav {
        justify-content: flex-start;
    }
    .outdoor-shades-swiper .swiper-button-next {
        right: -44px;
    }
    .outdoor-shades-swiper .swiper-button-prev {
        left: -44px;
    }
    .outdoor-shades-swiper .swiper-button-next,
    .outdoor-shades-swiper .swiper-button-prev {
        width: 42px;
        height: 42px;
    }
    .outdoor-shades-swiper .swiper-button-next:after,
    .outdoor-shades-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .outdoor-shades-section {
        padding: 55px 0;
    }
    .category-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .outdoor-shades-swiper .swiper-button-next {
        right: 8px;
    }
    .outdoor-shades-swiper .swiper-button-prev {
        left: 8px;
    }
    .outdoor-shades-swiper .swiper-button-next,
    .outdoor-shades-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.92) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    .outdoor-shades-swiper .swiper-button-next:after,
    .outdoor-shades-swiper .swiper-button-prev:after {
        font-size: 15px;
    }
    .outdoor-product-card {
        height: 320px;
    }
    .outdoor-product-card__title {
        font-size: 18px;
    }
}


/* Legacy styles for old outdoor cards (if needed elsewhere) */

.outdoor-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    width: 100%;
}

.outdoor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}


/* Card size variants */

.outdoor-card--large {
    height: 500px;
}

.outdoor-card--medium {
    height: 240px;
}

.outdoor-card--small {
    height: 220px;
}


/* Image fills card */

.outdoor-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.outdoor-card:hover .outdoor-card__img {
    transform: scale(1.08);
}


/* Gradient overlay at bottom */

.outdoor-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.4s ease;
}

.outdoor-card:hover .outdoor-card__overlay {
    background: linear-gradient(to top, rgba(13, 115, 119, 0.88) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}


/* Tag badge */

.outdoor-card__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
}


/* Title */

.outdoor-card__title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.3;
}

.outdoor-card--small .outdoor-card__title {
    font-size: 16px;
    margin-bottom: 6px;
}


/* Description */

.outdoor-card__desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 300;
    max-width: 420px;
}


/* Button */

.outdoor-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    width: fit-content;
}

.outdoor-card__btn:hover {
    color: #fff;
    border-bottom-color: #fff;
    gap: 10px;
}

.outdoor-card__btn--sm {
    font-size: 12px;
}


/* Small overlay adjustments */

.outdoor-card--small .outdoor-card__overlay {
    padding: 18px;
}


/* Responsive */

@media (max-width: 1199px) {
    .outdoor-card--large {
        height: 460px;
    }
    .outdoor-card--medium {
        height: 220px;
    }
    .outdoor-card--small {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .outdoor-shades-section {
        padding: 70px 0;
    }
    .outdoor-card--large {
        height: 380px;
    }
    .outdoor-card--medium {
        height: 200px;
    }
    .outdoor-card--small {
        height: 180px;
    }
    .outdoor-card__title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .outdoor-shades-section {
        padding: 55px 0;
    }
    .outdoor-card--large {
        height: 320px;
    }
    .outdoor-card--medium {
        height: 200px;
    }
    .outdoor-card--small {
        height: 160px;
    }
    .outdoor-card__title {
        font-size: 16px;
    }
    .outdoor-card__desc {
        font-size: 13px;
    }
    .outdoor-card__overlay {
        padding: 20px;
    }
}


/* ============================================
   10. WHY CHOOSE SECTION
   ============================================ */


/* ============================================
   WHY CHOOSE SECTION - Full-width split layout
   ============================================ */


/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-choose-section {
    overflow: hidden;
}

.why-choose-inner {
    display: flex;
    min-height: 520px;
}


/* ---- LEFT: 2x2 image grid ---- */

.collage-side {
    flex: 0 0 52%;
    display: flex;
    overflow: hidden;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
    gap: 4px;
}

.collage-cell {
    position: relative;
    overflow: hidden;
    background: #e8e8e8;
}

.collage-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.collage-cell:hover .collage-img {
    transform: scale(1.08);
}


/* ---- RIGHT: White info panel ---- */

.info-panel {
    flex: 0 0 48%;
    background: #fff;
    display: flex;
    align-items: stretch;
    border-left: 1px solid #e8e8e8;
}

.info-panel__inner {
    padding: 50px 55px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-panel__title {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}


/* Solid gold nav buttons */

.info-panel__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 22px;
    background: var(--primary-color);
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.info-pill {
    display: inline-block;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.25s ease;
    white-space: nowrap;
}

.info-pill:last-child {
    border-right: none;
}

.info-pill:hover {
    background: var(--primary-light);
    color: #fff;
}

.info-panel__text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-dark);
    margin-bottom: 12px;
    font-weight: 400;
}


/* CTA button */

.info-panel__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-top: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.info-panel__cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    gap: 12px;
}


/* Responsive */

@media (max-width: 1199px) {
    .info-panel__title {
        font-size: 26px;
    }
    .info-panel__inner {
        padding: 40px 40px;
    }
}

@media (max-width: 991px) {
    .why-choose-inner {
        flex-direction: column;
    }
    .collage-side {
        flex: none;
        height: 400px;
    }
    .collage-grid {
        height: 400px;
    }
    .info-panel {
        flex: none;
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }
    .info-panel__inner {
        padding: 40px 35px;
    }
    .info-panel__title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .collage-side {
        height: 320px;
    }
    .collage-grid {
        height: 320px;
    }
    .info-panel__inner {
        padding: 30px 22px;
    }
    .info-panel__title {
        font-size: 20px;
    }
    .info-panel__nav {
        width: 100%;
    }
    .info-pill {
        padding: 10px 16px;
        font-size: 13px;
    }
    .info-panel__text {
        font-size: 14px;
    }
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-box h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}


/* ============================================
   11. CTA SECTION
   ============================================ */


/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.35);
    display: none;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: #fff;
}

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


/* LEFT: Content */

.cta-content {
    color: #000;
    padding-right: 20px;
}

.cta-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 40px;
    font-weight: 300;
}


/* Trust items */

.cta-trust {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta-trust-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
}

.cta-trust-item strong {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-trust-item span {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 300;
}


/* RIGHT: Form card */

.cta-form-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.cta-form-header {
    background: #fff;
    padding: 28px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-form-header h4 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
}

.cta-form-header p {
    color: rgba(0, 0, 0, 0.55);
    font-size: 13px;
    margin: 0;
    font-weight: 400;
}

.cta-form {
    padding: 30px 35px 35px;
}


/* Input fields with icons */

.cta-field {
    position: relative;
}

.cta-field>i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}

.cta-field-textarea-icon {
    top: 14px !important;
    transform: none !important;
}

.cta-field .form-control,
.cta-field .form-select {
    padding-left: 38px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    height: 46px;
    color: #333;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: #fafafa;
}

.cta-field textarea.form-control {
    height: auto;
    padding-top: 12px;
    resize: none;
}

.cta-field .form-control:focus,
.cta-field .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
    background: #fff;
    outline: none;
}

.cta-field .form-control::placeholder {
    color: #aaa;
    font-weight: 300;
}


/* Submit button */

.cta-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}

.cta-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    gap: 14px;
}


/* Responsive */

@media (max-width: 1199px) {
    .cta-title {
        font-size: 36px;
    }
    .cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .cta-section {
        padding: 65px 0;
    }
    .cta-content {
        padding-right: 0;
        margin-bottom: 10px;
    }
    .cta-title {
        font-size: 30px;
    }
    .cta-desc {
        margin-bottom: 30px;
    }
    .cta-form-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 55px 0;
    }
    .cta-title {
        font-size: 26px;
    }
    .cta-form-header {
        padding: 22px 25px;
    }
    .cta-form {
        padding: 25px;
    }
}


/* ============================================
   12. PARTNERS SECTION
   ============================================ */

.partners-section {
    padding: 60px 0 50px;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-height: 100px;
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}


/* ============================================
   13. FOOTER
   ============================================ */

.main-footer {
    background: #fff;
    color: #000;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-top {
    padding: 70px 0;
}

.footer-brand-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-widget p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-widget h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #000;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #94455d;
    border-radius: 2px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

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

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

.footer-links li a {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.55);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.25s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #000;
    padding-left: 4px;
}

.footer-links li a:hover::before {
    width: 12px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    gap: 12px;
}

.footer-contact li i {
    color: #000;
    font-size: 15px;
    margin-top: 2px;
    min-width: 16px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px 0;
    font-size: 13px;
}

.footer-bottom p {
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
}

.footer-bottom a {
    color: rgba(0, 0, 0, 0.45);
    margin: 0 6px;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #000;
}


/* ============================================
   14. WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* ============================================
   15. SOCIAL SIDEBAR
   ============================================ */

.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
    width: 55px;
    color: var(--white);
}


/* ============================================
   16. BUTTONS
   ============================================ */

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-dark {
    border-color: var(--dark);
    color: var(--dark);
}

.btn-outline-dark:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background-color: var(--light);
}


/* ============================================
   17. RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1199px) {
    .navbar {
        padding: 10px 0;
    }
    .navbar-brand {
        margin-right: 20px;
    }
    .navbar-nav .nav-link {
        font-size: 12px;
        padding: 10px 12px !important;
    }
    .btn-quote {
        padding: 12px 22px;
        font-size: 11px;
        margin-left: 15px !important;
    }
    .hero-title {
        font-size: 56px;
    }
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .top-bar .row>div {
        text-align: center !important;
        padding: 5px 0;
    }
    .navbar {
        padding: 8px 0;
    }
    .navbar-brand {
        margin-right: 15px;
    }
    .navbar-collapse {
        background: var(--white);
        padding: 0;
        margin-top: 8px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        border-radius: 0;
        max-height: 85vh;
        overflow-y: auto;
        border-top: 2px solid #000;
    }
    .navbar-nav {
        gap: 0;
    }
    /* Parent nav items: bold, full-width, border-bottom */
    .navbar-nav .nav-link {
        padding: 16px 20px !important;
        font-size: 16px;
        font-weight: 600;
        color: #000;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        letter-spacing: 0;
    }
    /* Hide the desktop underline effect on mobile */
    .navbar-nav .nav-link::after {
        display: none !important;
    }
    /* Dropdown toggle: arrow on the RIGHT side */
    .navbar-nav .dropdown-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .navbar-nav .dropdown-toggle::after {
        display: block !important;
        content: '' !important;
        position: static !important;
        width: 10px !important;
        height: 10px !important;
        background: none !important;
        border: none !important;
        border-right: 2px solid #000 !important;
        border-bottom: 2px solid #000 !important;
        border-top: none !important;
        border-left: none !important;
        transform: rotate(45deg) !important;
        transition: transform 0.3s ease !important;
        margin-left: auto;
        margin-right: 0;
        flex-shrink: 0;
    }
    /* Rotate arrow UP when expanded */
    .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(-135deg) !important;
    }
    /* Make ALL dropdowns stack inline on mobile */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        box-shadow: none !important;
        border: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #fafafa;
    }
    /* Sub-items: lighter weight, gray, indented */
    .navbar-nav .dropdown-item {
        padding: 14px 20px 14px 32px !important;
        font-size: 15px;
        font-weight: 400;
        color: rgba(0,0,0,0.55);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: color 0.2s ease;
    }
    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:active {
        background: rgba(0,0,0,0.03);
        color: #000;
    }
    /* Mega-menu on mobile */
    .mega-menu {
        position: static !important;
        box-shadow: none !important;
        padding: 8px 0 !important;
        border-top: none !important;
        margin-top: 0 !important;
        background: #fafafa !important;
    }
    .mega-menu .mega-menu-title {
        font-size: 11px;
        margin: 0 0 8px 0;
        padding: 12px 20px 8px 20px;
        border-bottom: none;
    }
    .mega-menu .mega-menu-list {
        padding: 0;
    }
    .mega-menu .mega-menu-list li {
        margin-bottom: 0;
    }
    .mega-menu .mega-menu-list li a {
        font-size: 15px;
        display: block;
        padding: 12px 20px 12px 32px;
        color: rgba(0,0,0,0.55);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .mega-menu .mega-menu-list li a:hover {
        padding-left: 32px;
        color: #000;
    }
    /* Remove mega-dropdown static positioning override for mobile */
    .mega-dropdown {
        position: relative !important;
    }
    .btn-quote {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 15px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-buttons {
        gap: 12px;
    }
    .hero-buttons .btn {
        padding: 14px 32px;
        font-size: 13px;
    }
    /* Inner page hero responsive */
    .page-hero {
        min-height: auto !important;
    }
    .page-hero__content {
        padding-top: 40px !important;
        padding-bottom: 0 !important;
    }
    .page-hero__title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    .page-hero__desc {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 24px !important;
    }
    .page-hero__btns {
        flex-direction: column;
        gap: 12px !important;
    }
    .page-hero__btns .btn-hero-primary,
    .page-hero__btns .btn-hero-outline {
        font-size: 12px !important;
        padding: 12px 24px !important;
        width: fit-content !important;
        display: inline-flex !important;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
        height: 60px;
        opacity: 0.7;
    }
    .hero-slide {
        padding: 100px 0;
    }
    .video-container {
        min-height: 350px;
    }
    .koolshade-content {
        padding: 40px !important;
    }
    .cta-section h2 {
        font-size: 30px;
    }
    .social-sidebar {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    .navbar {
        padding: 6px 0;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0;
        padding: 14px 28px;
        font-size: 12px;
    }
    .hero-buttons .btn.ms-3 {
        margin-left: 0 !important;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        opacity: 0.6;
    }
    .carousel-control-prev {
        left: 15px;
    }
    .carousel-control-next {
        right: 15px;
    }
    .carousel-indicators {
        bottom: 20px;
    }
    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    .carousel-indicators button.active {
        width: 20px;
    }
    .btn-quote {
        margin-left: 0 !important;
    }
    .section-tagline {
        font-size: 24px;
    }
    .section-title {
        font-size: 30px;
    }
    .product-image {
        height: 200px;
    }
    .footer-top {
        padding: 50px 0;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 22px;
    }
    .hero-title {
        font-size: 28px;
    }
    .placeholder-box {
        height: 250px;
    }
    .cta-form-container {
        padding: 25px;
    }
}


/* ============================================
   18. UTILITY CLASSES
   ============================================ */

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

.bg-primary {
    background-color: var(--primary-color) !important;
}

.py-section {
    padding: var(--section-padding) 0;
}


/* ============================================
   IMAGE OPTIMIZATION & PROFESSIONAL STYLING
   ============================================ */


/* All Images - Professional Handling */

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Product Card Images - Professional Enhancement */

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 0;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
    filter: brightness(1) contrast(1);
}

.product-card:hover .product-image img {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.1) contrast(1.05);
}


/* Image Collage - legacy block removed (replaced by .collage-side system) */


/* Hero Slider Images */

.hero-image-placeholder {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* Partner Logo Section */

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
    border-color: rgba(13, 115, 119, 0.1);
}

.partner-logo img {
    max-width: 85%;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.35s ease, filter 0.3s ease;
    filter: grayscale(0%) brightness(1);
}

.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1.1);
}


/* Responsive Image Adjustments */

@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 180px;
    }
    .partner-logo {
        padding: 15px;
        min-height: 100px;
    }
}


/* Scrollbar Styling */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* Swiper custom navigation styles for indoor shades slider */

.indoor-shades-swiper {
    position: relative;
    padding: 0;
    overflow: visible;
}

.indoor-shades-swiper .swiper-wrapper {
    padding-bottom: 10px;
}

.indoor-shades-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.indoor-shades-swiper .swiper-button-next,
.indoor-shades-swiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 20;
    cursor: pointer;
    margin-top: 0;
    border: none;
    opacity: 1;
}

.indoor-shades-swiper .swiper-button-next:hover,
.indoor-shades-swiper .swiper-button-prev:hover {
    background: var(--secondary-color) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    transform: translateY(-50%) scale(1.1);
}

.indoor-shades-swiper .swiper-button-next:hover::after,
.indoor-shades-swiper .swiper-button-prev:hover::after {
    color: #fff !important;
}

.indoor-shades-swiper .swiper-button-next {
    right: -82px;
}

.indoor-shades-swiper .swiper-button-prev {
    left: -82px;
}

.indoor-shades-swiper .swiper-button-next:after,
.indoor-shades-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
}

@media (max-width: 1200px) {
    .indoor-shades-swiper .swiper-button-next {
        right: -64px;
    }
    .indoor-shades-swiper .swiper-button-prev {
        left: -64px;
    }
}

@media (max-width: 992px) {
    .indoor-shades-swiper .swiper-button-next {
        right: -54px;
    }
    .indoor-shades-swiper .swiper-button-prev {
        left: -54px;
    }
    .indoor-shades-swiper .swiper-button-next,
    .indoor-shades-swiper .swiper-button-prev {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .indoor-shades-swiper .swiper-button-next {
        right: -44px;
    }
    .indoor-shades-swiper .swiper-button-prev {
        left: -44px;
    }
    .indoor-shades-swiper .swiper-button-next,
    .indoor-shades-swiper .swiper-button-prev {
        width: 42px;
        height: 42px;
    }
    .indoor-shades-swiper .swiper-button-next:after,
    .indoor-shades-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .indoor-shades-swiper .swiper-button-next {
        right: 8px;
    }
    .indoor-shades-swiper .swiper-button-prev {
        left: 8px;
    }
    .indoor-shades-swiper .swiper-button-next,
    .indoor-shades-swiper .swiper-button-prev {
        width: 38px;
        height: 38px;
    }
    .indoor-shades-swiper .swiper-button-next:after,
    .indoor-shades-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
}

.indoor-shades-swiper .swiper-pagination {
    bottom: -30px !important;
    text-align: center;
    position: relative;
    left: 0;
    right: 0;
}

.indoor-shades-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    opacity: 0.5;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.indoor-shades-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
    transform: scale(1.2);
}


/* ============================================
   INNER PAGES — GLOBAL SHARED RULES
   Shared by: koolshade.html, xshield.html, automation.html
   (and any future inner product page)
   ============================================ */

/* --- Consistent 60px vertical spacing utility — apply individually per section --- */
.section-pad {
    padding: 60px 0;
}

/* --- Background color utilities --- */
.bg-white { background: #ffffff; }
.bg-gold  { background: #f6f0eb; }

/* --- Alternating sub-section row colors ---
   Apply .rows-alt on the section (gives info-rows 30px top/bottom padding).
   Pair with .rows-alt--white-first or .rows-alt--gold-first to choose which color
   the first info-row uses. The alternation runs over .info-row children only, so it
   works regardless of whether the section has a preceding .section-title-row.
   Consecutive rows get a 30px section-colored gap between them so color changes
   don't collide edge-to-edge. Row background extends edge-to-edge via 50vw
   pseudo-elements (body has overflow-x:hidden). */
.rows-alt .info-row {
    position: relative;
    padding: 60px 0;
    margin: 0;
    background: var(--row-bg);
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    gap: 60px;
    flex-wrap: nowrap;
    align-items: stretch !important;
}
.rows-alt .info-row + .info-row {
    margin-top: 0;
}
.rows-alt .info-row::before,
.rows-alt .info-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50vw;
    background: var(--row-bg);
    pointer-events: none;
}
.rows-alt .info-row::before { right: 100%; }
.rows-alt .info-row::after  { left: 100%; }
.rows-alt--white-first .info-row:nth-child(odd of .info-row)  { --row-bg: #ffffff; }
.rows-alt--white-first .info-row:nth-child(even of .info-row) { --row-bg: #f6f0eb; }
.rows-alt--gold-first  .info-row:nth-child(odd of .info-row)  { --row-bg: #f6f0eb; }
.rows-alt--gold-first  .info-row:nth-child(even of .info-row) { --row-bg: #ffffff; }

/* --- Strict brand-color alternation (gold ↔ white) --- */
.all-products-section       { background: #f6f0eb; }
.products-section           { background: #f6f0eb; }
.overview-section           { background: #ffffff; }
/* Per-section background override — apply explicitly when alternating
   commercial/info-detail blocks need a cream section between two whites. */
.section-bg-gold            { background: #f6f0eb !important; }
.section-bg-white           { background: #ffffff !important; }

/* Commercial category section heading — matches inner-section-title
   (KoolShade Solutions style) for site-wide consistency. */
.commercial-cat-heading {
    text-align: center;
    padding: 50px 0 20px;
}
.commercial-cat-heading h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--dark);
    margin: 0;
}
.applications-section,
.projects-section           { background: #f6f0eb; }
.info-detail-section        { background: #ffffff; }
.product-detail-section     { background: #f6f0eb; }
.specs-section              { background: #ffffff; }
.how-section                { background: #f6f0eb !important; }
.resources-section          { background: #ffffff; }
.faq-section                { background: #f6f0eb; }
.inner-cta                  { background: #f6f0eb; }
.clients-section            { background: #ffffff; }
.looking-else-section       { background: #ffffff; }
.back-home-section          { background: #ffffff; }

/* --- Multi-row detail sections (Information / Products) --- */
/* Title-to-row1 gap = row1 padding-top (60px) alone, so title-row margin is zero.
   Matches the title-to-content rhythm used by other inner sections. */
.info-detail-section .section-title-row,
.product-detail-section .section-title-row {
    margin-bottom: 0 !important;
}
.info-detail-section.section-pad {
    padding: 0;
}
.clients-section.section-pad {
    padding-top: 0;
}
.info-row {
    margin-bottom: 48px;
}
.info-row:last-child {
    margin-bottom: 0;
}
.info-row-reverse {
    flex-direction: row-reverse;
    /* left: 60px; */
}
/* Equal-flex cols so the 60px gap between image and text fits without overflow. */
.rows-alt .info-row > [class*="col-"] {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
/* Image col gets more width — image dominates the row visually.
   Make image col a flex column so .info-row-img can stretch (flex:1) to fill
   col height set by row's align-items:stretch — no leftover whitespace below image. */
.rows-alt .info-row > [class*="col-"]:has(.info-row-img) {
    flex: 1.2 1 0;
    display: flex;
    flex-direction: column;
}
.rows-alt .info-row > [class*="col-"] > .info-row-img {
    flex: 1 1 auto;
}
@media (max-width: 991px) {
    .rows-alt .info-row {
        padding: 30px 0;
        gap: 30px;
        flex-direction: column;
    }
    .rows-alt .info-row.info-row-reverse {
        flex-direction: column-reverse;
    }
    .rows-alt .info-row > [class*="col-"] {
        flex: 0 0 auto;
        width: 100%;
    }
    .rows-alt .info-row > [class*="col-"]:has(.info-row-img) {
        flex: 0 0 auto;
        width: 100%;
    }
    .rows-alt .info-row > [class*="col-"]:not(:has(.info-row-img)) {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* Fixed image height — consistent size across every row regardless of text length.
   align-items-center on the row vertically centers the shorter column. */
.info-row-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 460px;
    background: #f0ece7;
}
.info-row-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
@media (max-width: 991px) {
    .info-row-img {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
.info-row:hover .info-row-img img {
    transform: scale(1.04);
}
.info-row-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin: 14px 0 20px;
    letter-spacing: -0.5px;
}
.info-row-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.72);
    margin-bottom: 24px;
}
.info-detail-section .feature-check-list,
.product-detail-section .feature-check-list {
    margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .info-row-title {
        font-size: 26px;
    }
}
@media (max-width: 991px) {
    .info-row {
        margin-bottom: 56px;
    }
    .info-row-reverse {
        flex-direction: column-reverse;
    }
    .info-row-title {
        font-size: 26px;
    }
    .info-row-text {
        font-size: 15px;
    }
}
@media (max-width: 576px) {
    .info-row-title {
        font-size: 23px;
    }
}

/* --- "Looking for something else?" section --- */
.looking-else-section {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.looking-else-title {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin: 0 0 10px;
    text-align: center;
}
.looking-else-swiper {
    position: relative;
    padding: 10px 4px 20px;
}
.looking-else-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}
.looking-else-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    color: var(--dark);
}
.looking-else-card__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0ece7;
}
.looking-else-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.looking-else-card:hover .looking-else-card__img {
    transform: scale(1.06);
}
.looking-else-card__body {
    padding: 22px 22px 26px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.looking-else-swiper .swiper-wrapper { align-items: stretch; }
.looking-else-swiper .swiper-slide { height: auto; display: flex; }
.looking-else-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px;
    letter-spacing: 0.3px;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.looking-else-card__desc {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.68);
    margin: 0 0 18px;
    min-height: 6em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.looking-else-card__btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    background: #000;
    padding: 11px 24px;
    text-transform: uppercase;
    transition: background 0.3s ease;
    margin-top: auto;
}
.looking-else-card:hover .looking-else-card__btn {
    background: #94455d;
}
.looking-else-wrap { position: relative; }
.looking-else-swiper { position: static; }
.looking-else-nav { position: static; display: contents; }
.looking-else-prev,
.looking-else-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.looking-else-prev { left: -24px; }
.looking-else-next { right: -24px; }
.looking-else-prev:hover,
.looking-else-next:hover {
    background: #94455d;
    border-color: #94455d;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 14px rgba(148, 69, 93, 0.35);
}
.looking-else-prev.swiper-button-disabled,
.looking-else-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* --- "Back to Home" button --- */
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}
.btn-back-home:hover {
    background: #fff;
    color: #000;
}
.btn-back-home i {
    font-size: 16px;
}

/* --- Mobile responsive --- */
@media (max-width: 768px) {
    .products-section,
    .overview-section,
    .applications-section,
    .projects-section,
    .specs-section,
    .how-section,
    .resources-section,
    .faq-section,
    .inner-cta,
    .looking-else-section,
    .back-home-section {
        padding: 60px 0;
    }
    .looking-else-title {
        font-size: 26px;
    }
    .looking-else-nav {
        position: static;
        justify-content: center;
        margin-top: 18px;
    }
    .btn-back-home {
        padding: 14px 36px;
        font-size: 12px;
    }
}

/* === CATEGORY SIDEBAR (inner pages) — Sticky panel + collapse === */
/* Hide global social sidebar on pages that use the category sidebar */
body:has(.cat-sidebar) .social-sidebar { display: none !important; }

.cat-sidebar {
    position: fixed;
    left: 12px;
    right: auto;
    top: 130px;
    width: 215px;
    max-height: calc(100vh - 160px);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    z-index: 990;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}
.cat-sidebar.is-right {
    left: auto;
    right: 12px;
    transform: translateX(30px);
}
.cat-sidebar.is-visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.cat-sidebar.is-collapsed {
    opacity: 0;
    transform: translateX(-110%);
    pointer-events: none;
}
.cat-sidebar.is-right.is-collapsed {
    transform: translateX(110%);
}
.cat-sidebar__head {
    padding: 12px 14px 12px 18px;
    background: #f6f0eb;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.cat-sidebar__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}
.cat-sidebar__actions {
    display: flex;
    align-items: center;
    gap: 4px;
}
.cat-sidebar__btn {
    background: none;
    border: none;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}
.cat-sidebar__btn:hover { background: rgba(0,0,0,0.08); color: #94455d; }
.cat-sidebar__close { font-size: 16px; }
.cat-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 6px 0 8px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
}
.cat-sidebar__list::-webkit-scrollbar { width: 4px; }
.cat-sidebar__list::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
.cat-sidebar__list a {
    display: block;
    padding: 9px 16px 9px 13px;
    color: #444;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    line-height: 1.4;
}
.cat-sidebar__list a:hover {
    background: #f6f0eb;
    color: #000;
}
.cat-sidebar__list a.is-active {
    background: #f6f0eb;
    color: #000;
    border-left-color: #94455d;
    font-weight: 700;
}

/* Reopen handle (only visible when sidebar is collapsed) */
.cat-sidebar-handle {
    position: fixed;
    left: 0;
    right: auto;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    z-index: 992;
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 10px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform 0.4s ease, background 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    margin-top: 140px;
    opacity: 0;
    pointer-events: none;
}
.cat-sidebar-handle.is-right {
    left: auto;
    right: 0;
    border-radius: 10px 0 0 10px;
    transform: translateY(-50%) translateX(100%);
}
.cat-sidebar-handle.is-visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.cat-sidebar-handle:hover { background: #94455d; }
.cat-sidebar-handle .bi {
    writing-mode: horizontal-tb;
    font-size: 13px;
}

@media (max-width: 1399px) {
    .cat-sidebar { width: 200px; left: 8px; }
}
@media (max-width: 1199px) {
    .cat-sidebar { width: 190px; }
    .cat-sidebar__list a { font-size: 12px; padding: 8px 14px 8px 12px; }
}
@media (max-width: 991px) {
    /* Below desktop, sidebar starts collapsed; handle is the entry point */
    .cat-sidebar {
        top: 100px;
        left: 8px;
        width: 230px;
        max-height: calc(100vh - 130px);
    }
}
@media (max-width: 575px) {
    .cat-sidebar { width: 220px; }
    .cat-sidebar-handle { font-size: 10px; padding: 12px 8px; }
}

/* === HOW IT WORKS — MODERN BELT (overrides per-page inline styles) === */
.how-section .row.g-4 {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    justify-content: center !important;
    align-items: stretch !important;
    margin: 0 !important;
    position: relative !important;
}
.how-section .row.g-4::before {
    display: none !important;
    content: none !important;
}
.how-section .row.g-4 > [class*="col-"] {
    flex: 1 1 0 !important;
    max-width: none !important;
    width: auto !important;
    padding: 0 12px !important;
    position: relative !important;
    z-index: 1 !important;
}
.how-section .step-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 18px 22px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.10) !important;
    border-radius: 14px !important;
    height: 100% !important;
    text-align: left !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: visible !important;
}
.how-section .step-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08) !important;
    border-color: #94455d !important;
}
.how-section .step-card::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 100% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 2px !important;
    background: repeating-linear-gradient(90deg, rgba(0,0,0,0.30) 0, rgba(0,0,0,0.30) 5px, transparent 5px, transparent 10px) !important;
    z-index: 0 !important;
    pointer-events: none !important;
}
.how-section .row.g-4 > [class*="col-"]:last-child .step-card::after {
    display: none !important;
}
.how-section .step-num {
    width: 44px !important;
    height: 44px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    background: #000 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease !important;
}
.how-section .step-card:hover .step-num {
    background: #94455d !important;
}
.how-section .step-card__icon {
    display: none !important;
}
.how-section .step-card__title {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    color: #000 !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
}
.how-section .step-card__text {
    display: none !important;
}
@media (max-width: 1199px) {
    .how-section .step-card {
        padding: 16px 18px !important;
        gap: 12px !important;
    }
    .how-section .step-card__title {
        font-size: 13px !important;
    }
    .how-section .step-num {
        width: 40px !important;
        height: 40px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }
    .how-section .row.g-4 > [class*="col-"] {
        padding: 0 8px !important;
    }
    .how-section .step-card::after {
        width: 16px !important;
    }
}
@media (max-width: 991px) {
    .how-section .row.g-4 {
        flex-wrap: wrap !important;
        row-gap: 14px !important;
    }
    .how-section .row.g-4 > [class*="col-"] {
        flex: 1 1 calc(50% - 16px) !important;
        padding: 0 8px !important;
    }
    .how-section .step-card::after {
        display: none !important;
    }
}
@media (max-width: 575px) {
    .how-section .row.g-4 > [class*="col-"] {
        flex: 1 1 100% !important;
        padding: 0 !important;
    }
    .how-section .step-card {
        padding: 16px 20px !important;
    }
}
