/* ===================================
   ROOT VARIABLES & CORE DESIGN
   =================================== */

:root {
    /* Premium Color Palette (Inspired by SMEBizz) */
    --primary-color: #55a5d6;
    --primary-dark: #0f84cd;
    --primary-light: #edf1f4;
    --secondary-color: #201c1d;
    --accent-gold: #ffcc00;
    --accent-green: #2a9d8f;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #55a5d6 0%, #0f84cd 100%);
    --gradient-gold: linear-gradient(135deg, #ffcc00 0%, #FDB931 100%);
    --gradient-secondary: linear-gradient(135deg, #085a8c 0%, #052d46 100%);
    --gradient-tertiary: linear-gradient(135deg, #0f84cd 0%, #ffcc00 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(11, 61, 102, 0.9) 0%, rgba(5, 44, 74, 0.8) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 61, 102, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 61, 102, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 61, 102, 0.15);
    --shadow-xl: 0 16px 48px rgba(11, 61, 102, 0.2);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

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

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

/* NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(85, 165, 214, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.logo i {
    color: var(--accent-gold);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-img {
    height: 60px;
    object-fit: contain;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.logo:hover i {
    transform: rotate(15deg) scale(1.1);
    transition: var(--transition-normal);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(85, 165, 214, 0.3);
}

.nav-link.active::before {
    display: none;
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 0.2rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 0.75rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(85, 165, 214, 0.1);
}

@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(85, 165, 214, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(85, 165, 214, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(85, 165, 214, 0.1);
    border-color: rgba(85, 165, 214, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* HERO SLIDER SECTION */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    transition: opacity 1s ease-in-out;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

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

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    font-family: var(--font-secondary);
}

.hero-slide.active .hero-slide-title {
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.hero-slide.active .hero-slide-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s forwards;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.4s ease;
    opacity: 0;
}

.hero-slide.active .hero-slide-btn {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-slide-btn:hover {
    background: var(--white);
    color: var(--black);
}

.hero-slide-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.hero-slide-btn:hover span.arrow {
    transform: translateX(5px);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(85, 165, 214, 0.4);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(85, 165, 214, 0.5);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* SECTIONS & CONTAINER */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
}

.section-header.text-center {
    align-items: center;
    text-align: center;
}

.section-header.text-left {
    align-items: flex-start;
    text-align: left;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.6rem 1.25rem;
    border: 2px dashed var(--accent-gold);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle img {
    height: 24px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
}

.text-center .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
    align-self: flex-start;
}

.about-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.about-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.about-btn:hover span.arrow {
    transform: translateX(5px);
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.03);
}

/* PRODUCTS SHOWCASE SECTION */

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.showcase-card:hover .showcase-bg {
    transform: scale(1.08);
}

.showcase-bg.bg-plywood {
    background-image: url('assets/products/plywood.jpg');
}

.showcase-bg.bg-laminates {
    background-image: url('assets/products/laminate.jpg');
}

.showcase-bg.bg-highlighters {
    background-image: url('assets/products/DECORATIVE-Highlighter.jpg');
}

.showcase-bg.bg-hardware {
    background-image: url('assets/products/hardware.webp');
}

.showcase-bg.bg-kitchen {
    background-image: url('assets/products/Modular-kitchen.jpg');
}

.showcase-bg.bg-wallpaper {
    background-image: url('assets/products/wallpaper.jpg');
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.showcase-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.showcase-content h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.showcase-btn-yellow {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.showcase-card:hover .showcase-btn {
    background: var(--white);
    color: var(--black);
    transform: translateX(5px);
}

.showcase-card:hover .showcase-btn-yellow {
    background: var(--accent-gold);
    color: var(--black);
}

/* SECTION DARK */
.section-dark {
    background: #05080b;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-subtitle {
    border-color: var(--accent-gold);
}

/* FUN FACTS SECTION */
.funfacts-section {
    padding: 120px 0;
}

.funfacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 5rem;
    align-items: center;
}

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

.fact-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.fact-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 8px 15px rgba(15, 132, 205, 0.2);
}

.fact-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.fact-number-wrap .plus {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-left: 4px;
}

.fact-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Funfacts */
@media (max-width: 1024px) {
    .funfacts-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .funfacts-wrapper .section-header {
        text-align: center;
        align-items: center;
    }

    .funfacts-grid {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .funfacts-grid {
        grid-template-columns: 1fr;
    }

    .fact-number-wrap {
        font-size: 2.8rem;
        justify-content: center;
    }
}

/* WHY CHOOSE US SECTION */
.mb-4rem {
    margin-bottom: 4rem;
}

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

.why-us-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(11, 61, 102, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(11, 61, 102, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 61, 102, 0.12);
    border-color: var(--primary-color);
}

.why-icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.why-icon-box i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.why-us-card:hover .why-icon-box {
    background: var(--gradient-primary);
    transform: rotateY(180deg);
}

.why-us-card:hover .why-icon-box i {
    color: var(--white);
    transform: rotateY(180deg);
}

.why-us-card h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1.2rem;
    font-family: var(--font-primary);
    font-weight: 700;
}

.why-us-card p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* WHY US RESPONSIVE */
@media (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-card {
        padding: 2.5rem 1.5rem;
    }
}

/* MOVING TEXT SECTION */
.moving-text-section {
    padding: 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.moving-text-wrapper {
    padding: 0;
    margin: 0;
}

.tm-marquee-parent {
    overflow: hidden;
    width: 100%;
    padding: 25px 0;
}

.tm-marquee-repeater {
    position: relative;
    --tm-marquee-animation-duration: 40s;
    --gap: 0px;
    display: flex;
    user-select: none;
    gap: var(--gap);
}

.tm-marquee-repeater .tm-marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--tm-marquee-animation-duration) linear infinite;
}

.tm-marquee-repeater .text {
    position: relative;
    color: var(--white);
    font-size: 24px;
    line-height: 1.3;
    padding: 0 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font-primary);
    gap: 15px;
}

.tm-marquee-repeater .text i {
    font-size: 20px;
    color: var(--white);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* TESTIMONIALS SECTION */
.testimonials-wrapper .section-header {
    margin-bottom: 0.5rem;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.star-rating i {
    font-size: 18px;
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.85;
}

.testimonial-author {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px 0;
}

.author-position {
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* RESPONSIVE TESTIMONIALS */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .slider-controls {
        gap: 15px;
    }
}

/* CTA SECTION */
.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #0a192f 0%, #0d253f 100%);
    padding: 80px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.12) 0%, rgba(255, 204, 0, 0) 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.cta-badge {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    min-width: 250px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.cta-btn span.arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover span.arrow {
    transform: translateX(5px);
}

.cta-btn.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 1024px) {
    .cta-wrapper {
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-content {
        text-align: center;
        max-width: 100%;
    }

    .cta-action {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .cta-wrapper {
        padding: 45px 25px;
        border-radius: 25px;
    }

    .cta-btn {
        width: 100%;
        min-width: unset;
    }
}

/* FOOTER */
.footer-new {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 1;
    animation: slideInUp 0.8s ease-out;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(85, 165, 214, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

/* Company Section */
.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    height: 90px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(85, 165, 214, 0.3);
}

.footer-tagline {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.footer-social h5 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.social-icon i {
    color: #FFFFFF;
    transition: all 0.3s ease;
    font-size: 20px;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

/* Contact Section */
.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact .contact-list li a {
    word-break: break-word;
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact .contact-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: var(--accent-gold);
}

.footer-contact .contact-list li a:hover::after {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 40px;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-copyright p span {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.85;
}

.footer-credit a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-credit a:hover {
    color: var(--white);
}

/* BRANDS MARQUEE SECTION */
.brands-marquee-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    background-color: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: brands-scroll 60s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.logo-item {
    margin: 0 15px;
    padding: 20px 45px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 130px;
    width: auto;
}

.logo-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.logo-item img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
}

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

@keyframes brands-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* RESPONSIVE MARQUEE */
@media (max-width: 768px) {
    .brands-marquee-section {
        padding: 60px 0;
    }

    .logo-item {
        padding: 0 25px;
    }

    .logo-item img {
        height: 45px;
        max-width: 130px;
    }
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsApp 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.whatsapp-float i {
    text-decoration: none;
    color: white;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* SCROLL TO TOP BUTTON */
.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253, 185, 49, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--gradient-gold);
    box-shadow: 0 6px 20px rgba(253, 185, 49, 0.4);
}

.scroll-top i {
    color: white;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        order: -1;
    }

    .about-page-wrapper .about-visual {
        order: 0;
    }

    .footer-company {
        padding-bottom: 40px;
    }

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

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

@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }

    .hero-slide-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-slide-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .hero-slide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-slider-nav {
        display: none;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tm-marquee-repeater .text {
        font-size: 18px;
        padding: 0 20px;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
        text-align: center;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 82px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        justify-content: flex-start;
        border-radius: var(--radius-md);
    }

    .nav-link.active {
        color: var(--white);
        background: var(--gradient-primary);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        border: none;
        min-width: 100%;
    }

    .nav-item.dropdown.mobile-open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0 0.5rem 1.5rem;
    }

    .nav-item.dropdown .nav-link i {
        padding: 10px;
        /* Make it easier to tap */
    }

    .nav-item.dropdown.mobile-open .nav-link i {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        color: var(--medium-gray);
    }

    .dropdown-menu li a:hover {
        padding-left: 1.25rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .menu-toggle.active span {
        background: var(--white);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .footer-main {
        border-radius: 40px 40px 0 0;
        padding: 60px 0 0;
    }

    .footer-company {
        padding-bottom: 35px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        border-radius: 30px 30px 0 0;
        padding: 50px 0 0;
    }

    .footer-company {
        padding-bottom: 30px;
        align-items: flex-start;
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 20px;
    }

    .products-showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        height: 380px;
        padding: 1.8rem;
    }

    .showcase-content h3 {
        font-size: 1.8rem;
    }

    .footer-separator {
        margin: 40px 0 25px 0;
    }

    .footer-copyright {
        justify-content: center;
        text-align: center;
    }

    .footer-logo h3 {
        font-size: 24px;
    }

    .footer-desc {
        font-size: 14px;
    }
}

/* ===================================
   ABOUT PAGE SECTIONS
   =================================== */

.about-page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.about-page-wrapper .about-main-image {
    height: 100%;
    min-height: 100%;
}

.about-page-wrapper .section-header {
    margin-bottom: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

.about-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin: 1.5rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(10px);
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-feature-item h4 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-primary);
}

.about-page-wrapper .about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* box-shadow: var(--shadow-xl); */
}

.about-visual:hover .about-main-image {
    transform: scale(1.05);
}

/* Trust Points Strip (Below About Image) */
.trust-strip-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

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

.trust-icon {
    font-size: 2.5rem;
    color: var(--black);
    opacity: 0.8;
}

.trust-text h4 {
    font-size: 1.15rem;
    margin: 0 0 5px;
    font-family: var(--font-primary);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 400;
}

.trust-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--medium-gray);
    font-family: var(--font-primary);
    line-height: 1;
}

@media (max-width: 1024px) {
    .trust-strip-wrapper {
        flex-wrap: wrap;
        gap: 2rem;
        border: none;
        padding: 2rem 1rem;
    }

    .trust-item {
        border-right: none;
        min-width: 240px;
        justify-content: flex-start;
        padding-left: 10%;
    }
}

@media (max-width: 768px) {
    .trust-item {
        min-width: 100%;
        padding-left: 5%;
    }
}

/* Mission & Vision (Exact Vinayak Style) */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 0 auto;
}

.mv-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    line-height: 1;
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
}

.mv-desc {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .mv-grid {
        gap: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Objectives & Values (Exact Vinayak Style) */
.objectives-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.objectives-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.objective-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.objective-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.objective-card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.objective-card:hover .objective-card-icon {
    background: var(--primary-color);
    color: var(--white);
}

.objective-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    font-family: var(--font-primary);
}

.objective-card-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.objectives-content-block {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objectives-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.objectives-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.objectives-points-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.objectives-points-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .objectives-wrapper {
        gap: 3rem;
    }
}

/* How it Works Section (Dark) */
.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-item {
    position: relative;
    padding: 3rem 2rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(15, 132, 205, 0.3);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--white) !important;
    font-family: var(--font-primary);
}

.process-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 2.5rem;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 640px) {
    .objectives-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Philosophy (Redesigned 2-Col Grid) */
.phi-wrapper-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.phi-content-v3 {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phi-header-v3 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.phi-title-v2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
}

.phi-subtitle-v2 {
    font-size: 1.15rem;
    color: var(--medium-gray);
    line-height: 1.6;
    font-weight: 500;
}

.phi-text-wrap-v3 p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
}

.phi-features-v3 {
    display: grid;
    grid-template-columns: 1fr;
}

.phi-f-card-v3 {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.phi-f-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.phi-f-card-v3 span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.phi-visual-v3 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 500px;
}

.phi-img-main-v3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.phi-visual-v3:hover .phi-img-main-v3 {
    transform: scale(1.08);
}

@media (max-width: 1100px) {
    .phi-wrapper-v3 {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .phi-wrapper-v3 {
        grid-template-columns: 1fr;
    }

    .phi-visual-v3 {
        min-height: 400px;
        order: -1;
    }

    .phi-content-v3 {
        text-align: left;
    }

    .phi-f-card-v3 {
        justify-content: flex-start;
    }
}

@media (max-width: 1024px) {
    .objectives-wrapper {
        grid-template-columns: 1fr;
    }

    .about-page-wrapper,
    .philosophy-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .about-page-wrapper,
    .mv-grid,
    .philosophy-wrapper,
    .objectives-cards-grid {
        grid-template-columns: 1fr;
    }

    .about-page-wrapper .about-main-image {
        height: 100%;
        min-height: 100%;
    }

    .about-main-image {
        min-height: 350px;
    }

    .phi-title {
        font-size: 2.25rem;
    }

    .mv-card {
        padding: 2rem;
    }
}

/* ===================================
   PAGE HERO SECTION
   =================================== */
.page-hero {
    position: relative;
    overflow: hidden;
    background-image: url('assets/banner/banner2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 8, 11, 0.85) 0%, rgba(5, 8, 11, 0.70) 50%, rgba(5, 8, 11, 0.9) 100%),
        radial-gradient(circle at 20% 30%, rgba(85, 165, 214, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(85, 165, 214, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(85, 165, 214, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(85, 165, 214, 0.1);
    transform: translateY(-2px);
    border-color: rgba(85, 165, 214, 0.4);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
    .page-hero {
        min-height: 400px;
        padding: 160px 0px 90px;
        background-attachment: scroll;
    }

    .page-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.75rem;
    }

    .breadcrumb-nav {
        padding: 0.875rem 1.75rem;
        gap: 0.75rem;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.9rem;
    }
}

/* ===================================
   CONTACT PAGE SECTION
   =================================== */
.contact-page-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(85, 165, 214, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(85, 165, 214, 0.3);
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Social Media Section */
.contact-social-section {
    margin-bottom: 5rem;
}

.contact-social-wrapper {
    background: linear-gradient(135deg, rgba(85, 165, 214, 0.05) 0%, rgba(5, 8, 11, 0.05) 100%);
    padding: 3.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(85, 165, 214, 0.1);
}

.contact-social-wrapper h3 {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-social-wrapper p {
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    min-width: 120px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-social-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-social-icon span {
    font-weight: 600;
    color: var(--black);
}

.contact-social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(85, 165, 214, 0.15);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(85, 165, 214, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(85, 165, 214, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(85, 165, 214, 0.4);
    background: var(--black);
    color: var(--white);
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #16a34a;
}

.error-message-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.form-message-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-actions {
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
}

/* ===================================
   GALLERY & LIGHTBOX STYLES (Smebizz Style)
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2.2rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10001;
}

.lightbox-counter {
    color: var(--white);
    font-size: 16px;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

.lightbox-close {
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: calc(100% - 120px);
    padding: 60px 20px 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    user-select: none;
    padding: 30px;
    z-index: 10000;
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-thumbnails-container {
    height: 110px;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.lightbox-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    max-width: 90%;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.lightbox-thumb {
    height: 70px;
    width: 90px;
    min-width: 90px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 10px;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .lightbox-header {
        padding: 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px;
        font-size: 30px;
    }
}

/* ===================================
   PRODUCT DETAIL PAGES STYLES
   =================================== */

.product-overview {
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.product-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px;
}

.product-card-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Interior Application Section */
.interior-apps {
    padding: 100px 0;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.app-card {
    height: 350px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.app-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 25px 25px;
    color: var(--white);
}

.app-card-overlay h3,
.app-card-overlay p {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 2rem;
}

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

/* Brand Section */
.product-brands {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

.brands-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.brand-logo-img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.brand-logo-img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}




/* ===================================
   PRODUCT SLIDER STYLES (Rightwood Legacy)
   =================================== */

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

.feature-list-ul {
    list-style: none;
    padding-left: 0;
}

.feature-list-icon {
    color: var(--primary-color);
    margin-right: 12px;
}

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-chip {
    padding: 8px 18px;
    background-color: var(--primary-light);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(85, 165, 214, 0.1);
}

.product-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.product-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.product-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.product-slide img {
    width: 100%;
    /* height: 600px; */
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-slide:hover img {
    transform: scale(1.03);
}

.product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}

.product-slider-nav .prod-btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-slider-nav .prod-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.product-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.prod-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.prod-dot.active {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.2);
}

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


/* ===================================
   BRAND CARDS GRID
   =================================== */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (min-width: 992px) {
    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

.brand-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.brand-card-logo {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.brand-card-logo img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.brand-card:hover .brand-card-logo img {
    transform: scale(1.1);
}

.brand-enquiry-btn {
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid var(--primary-color);
    width: 80%;
}

.brand-enquiry-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}


/* ===================================
   VERTICAL PRODUCT CARDS (Screenshot Style)
   =================================== */
.product-grid-vertical {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .product-grid-vertical {
        gap: 1.5rem;
    }
}

.product-card-vertical {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 400px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-vertical:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-v-image {
    flex: 1;
    overflow: hidden;
}

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

.product-card-vertical:hover .product-v-image img {
    transform: scale(1.08);
}

.product-v-content {
    width: 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.product-v-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: auto 0;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.product-v-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.product-card-vertical:hover .product-v-arrow {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(-45deg);
}

@media (max-width: 480px) {
    .product-card-vertical {
        height: 350px;
    }

    .product-v-content {
        width: 60px;
    }

    .product-v-title {
        font-size: 1.2rem;
    }
}

/* PRODUCT LANDING PAGE (products.html) */
.product-landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.product-landing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-landing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-landing-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-landing-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-landing-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.product-landing-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-landing-btn {
    padding: 12px 25px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-landing-card:hover .product-landing-btn {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(85, 165, 214, 0.3);
}

.landing-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
    text-align: center;
}