/* ===================================
   ROOT VARIABLES & CORE DESING
   =================================== */

:root {
    /* Premium Color Palette */
    --primary-color: #f2c41d;
    --primary-dark: #a48259;
    --primary-light: #f8f5e9;
    --secondary-color: #ef7f02;
    --accent-gold: #ffcc00;
    --accent-green: #2a9d8f;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0e1cf;
    --medium-gray: #6c757d;
    --dark-gray: #4d4d4d;
    --black: #1a1a1a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f2c41d 0%, #a48259 100%);
    --gradient-secondary: linear-gradient(135deg, #ef7f02 0%, #c36d0a 100%);
    --gradient-tertiary: linear-gradient(135deg, #f2c41d 0%, #ef7f02 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4a261 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Cormorant Garamond', 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;
    --radius-xl: 30px;
}

* {
    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: linear-gradient(to bottom, rgba(18, 18, 18, 0.92), rgba(10, 10, 10, 0.88));
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(242, 196, 29, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    position: relative;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.02);
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--black);
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(242, 196, 29, 0.25);
    font-weight: 700;
}

/* Luxury Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(242, 196, 29, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    min-width: 320px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(18, 18, 18, 0.98);
    border-left: 1px solid rgba(242, 196, 29, 0.15);
    border-top: 1px solid rgba(242, 196, 29, 0.15);
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.dropdown-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    background: rgba(239, 127, 2, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.dropdown-item-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    transition: color 0.25s ease;
}

.dropdown-item-desc {
    font-size: 0.75rem;
    color: var(--medium-gray);
    line-height: 1.2;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border-color: rgba(242, 196, 29, 0.1);
}

.dropdown-item:hover i {
    background: var(--gradient-primary);
    color: var(--black);
    transform: scale(1.1);
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--primary-color);
}

/* Actions & Call to Action */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--primary-color);
    /* background: var(--gradient-primary); */
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(242, 196, 29, 0.2);
    transition: all 0.3s ease;
}

.nav-cta-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 196, 29, 0.4);
}

.nav-cta-btn:hover i {
    transform: translateX(4px);
}

.nav-cta-mobile {
    display: none;
}

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

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

.menu-toggle span {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

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

/* ===================================
   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-split {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-slide-text-col {
    width: 50%;
    height: 100%;
    background-color: #f4f0e4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    box-sizing: border-box;
    z-index: 2;
}

.hero-text-wrapper {
    max-width: 500px;
    text-align: center;
}

.hero-slide-tagline {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
    opacity: 0;
}

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

.hero-slide-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: var(--font-secondary);
    opacity: 0;
}

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

.hero-slide-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0;
}

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

.hero-slide-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--black);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
    opacity: 0;
}

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

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

.hero-slide-img-col {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

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

/* 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: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--black);
    font-size: 1rem;
    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: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: scale(1.05);
}

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

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

.hero-slider-dot.active {
    background: var(--black);
    border-color: var(--black);
    width: 30px;
    border-radius: 5px;
}

.hero-slider-dot:hover {
    background: rgba(0, 0, 0, 0.4);
    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-subtitle {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    padding: 0 0 10px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    font-family: var(--font-primary);
}

.section-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle.justify-center::after,
.section-subtitle.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.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;
}

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

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

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

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-num {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 500;
    line-height: 1;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 0.5rem 0;
    font-family: var(--font-primary);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

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

}

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

.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-btn-outline {
    background: transparent;
    color: var(--primary-dark);
}

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

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

.about-image-layers {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 520px;
    margin: 0 auto;
}

.about-img-bg-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 85%;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-bg-frame:hover .about-img-bg {
    transform: scale(1.03);
}

.about-img-fg-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: 20px;
    border: 8px solid var(--white);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: transform 0.4s ease;
}

.about-img-fg-frame:hover {
    transform: translateY(-5px);
}

.about-img-fg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual-deco-box {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* Redesigned About Manifesto Grid */
.about-grid-manifesto {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-manifesto-content {
    display: flex;
    flex-direction: column;
}

.about-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-manifesto-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1.75rem;
}

.about-manifesto-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
}

.about-manifesto-desc.secondary-desc {
    color: var(--medium-gray);
}

.about-quote-box {
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.75rem 0;
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.6;
}

/* Redesigned Visual Collage */
.about-collage-visual {
    position: relative;
}

.collage-container {
    position: relative;
    height: 480px;
    width: 100%;
}

.collage-deco-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 85%;
    height: 85%;
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
}

.collage-img-main-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.collage-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collage-img-main-frame:hover .collage-img-main {
    transform: scale(1.05);
}

.collage-img-sub-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 45%;
    border-radius: 16px;
    overflow: hidden;
    z-index: 3;
    border: 6px solid var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.collage-img-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Rotating Stamp Badge overlay */
.collage-floating-badge {
    position: absolute;
    bottom: 25px;
    left: -25px;
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(242, 196, 29, 0.4);
    z-index: 5;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collage-floating-badge:hover {
    transform: scale(1.1);
}

.badge-ring-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: spin-clockwise 20s linear infinite;
}

@keyframes spin-clockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-center-icon i {
    font-size: 2rem;
    color: var(--black);
}

/* Trust Cards Grid */
.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.trust-card-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.01);
}

.trust-card-item:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 196, 29, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.trust-card-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

/* Redesigned Mission & Vision Section */
.mv-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-split-card {
    padding: 1.5rem 3rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card-dark {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.mv-split-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.mv-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mv-card-num {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.card-gold .mv-card-num {
    color: var(--black);
    opacity: 0.15;
}

.card-dark .mv-card-num {
    color: var(--white);
    opacity: 0.08;
}

.mv-card-icon-box {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
}

.card-gold .mv-card-icon-box i {
    color: var(--black);
}

.card-dark .mv-card-icon-box i {
    color: var(--primary-color);
}

.mv-card-body h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-gold .mv-card-body h3 {
    color: var(--black);
}

.card-dark .mv-card-body h3 {
    color: var(--white);
}

.mv-card-body p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.card-gold .mv-card-body p {
    color: rgba(0, 0, 0, 0.85);
}

.card-dark .mv-card-body p {
    color: rgba(255, 255, 255, 0.7);
}

/* Values & Goals section */
.values-roadmap-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: stretch;
    margin-top: 4rem;
}

.values-pillars-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-pillar-item {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 2rem;
    transition: transform 0.3s ease;
}

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

.value-pillar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pillar-number {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    min-width: 40px;
}

.pillar-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.pillar-content p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.roadmap-card-col {
    display: flex;
}

.roadmap-slate-card {
    background: linear-gradient(135deg, #161616 0%, #080808 100%);
    border: 1px solid rgba(242, 196, 29, 0.1);
    border-radius: 24px;
    padding: 4rem 3.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.roadmap-glow-accent {
    position: absolute;
    top: -30%;
    right: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(242, 196, 29, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.roadmap-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--white);
}

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

.roadmap-points-list li {
    position: relative;
    padding-left: 2.2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.roadmap-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.95rem;
    width: 24px;
    height: 24px;
    background: rgba(242, 196, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Overrides for About Us Sections */
@media (max-width: 991px) {
    .about-grid-manifesto {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

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

    .values-roadmap-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

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

    .mv-split-card {
        padding: 1.5rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .trust-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .collage-container {
        height: 320px;
    }

    .collage-floating-badge {
        width: 75px;
        height: 75px;
        left: -15px;
        bottom: 15px;
    }

    .badge-ring-glow {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
    }

    .badge-center-icon i {
        font-size: 1.5rem;
    }
}

/* 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(242, 196, 29, 0.3);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    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;
}

/* Achievements & Certifications Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card-new {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.achievement-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.achievement-image-wrapper {
    height: 380px;
    background: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.achievement-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.achievement-card-new:hover .achievement-img {
    transform: scale(1.05);
}

.achievement-card-new.gallery-item img {
    height: 100% !important;
    width: auto !important;
    max-height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

.achievement-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.achievement-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
}

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

/* Plant Photo Gallery Section */
.plant-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.plant-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 280px;
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.plant-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

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

.plant-card:hover .plant-img {
    transform: scale(1.08);
}

/* Hover Zoom Overlay */
.plant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 196, 29, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plant-card:hover .plant-overlay {
    opacity: 1;
}

.plant-zoom-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.plant-card:hover .plant-zoom-icon {
    transform: scale(1);
}

/* B2B Clients Section */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.client-logo-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.25rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.client-logo-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.client-info {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.75rem;
}

.client-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    font-family: var(--font-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.client-logo-card:hover .client-name {
    color: var(--primary-color);
}

/* ===================================
   PRODUCTS SHOWCASE SECTION
   =================================== */
.products-showcase .container {
    max-width: 100%;
}

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

.product-item-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    height: 500px;
    position: relative;
}

.product-vertical-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #a48259;
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 2rem;
}

.showcase-card {
    flex: 1;
    height: 100%;
    position: relative;
    border-radius: 250px 250px 0 0;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(164, 130, 89, 0.15);
}

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

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

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 3;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    pointer-events: none;
    width: 80%;
}

.showcase-card:hover .showcase-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.showcase-explore-btn {
    font-family: var(--font-secondary);
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1.5px solid var(--white);
    padding-bottom: 6px;
    display: inline-block;
}

/* ===================================
   INDUSTRIES SERVED SECTION
   =================================== */

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

.industry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(242, 196, 29, 0.08);
    border-color: rgba(242, 196, 29, 0.15);
}

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

.industry-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: all var(--transition-normal);
}

.industry-card:hover .industry-icon-wrapper {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(242, 196, 29, 0.25);
}

.industry-card h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 700;
}

.industry-card p {
    font-size: 0.975rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

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

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

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

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

.why-card {
    background: transparent;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: var(--white);
    border-color: transparent;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
}

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

.why-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

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

/* ===================================
   FUNFACT SECTION
   =================================== */

.funfact-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.funfact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.funfact-section .section-title-wrapper {
    margin-bottom: 1.5rem;
}

.funfact-section .section-title-wrapper .subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.funfact-section .section-title-wrapper .section-title-main {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.funfact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.funfact-points-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.funfact-point-item {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(242, 196, 29, 0.1);
    transition: all 0.4s ease;
}

.funfact-point-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(8px);
}

.funfact-point-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.funfact-point-num {
    /* font-family: var(--font-secondary); */
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    min-width: 90px;
    display: inline-flex;
    align-items: flex-start;
}

.funfact-point-plus {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-left: 2px;
}

.funfact-point-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.funfact-point-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0 114px;
    /* Align description text under title after number width + gap */
}

@media (max-width: 640px) {
    .funfact-point-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .funfact-point-desc {
        margin-left: 0;
    }
}


/* ===================================
   MOVING TEXT SECTION
   =================================== */

.moving-text-section {
    padding: 0;
    background: var(--gradient-primary);
    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 {
    position: relative;
}

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

.testimonial-track {
    overflow: visible;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
    background: var(--white);
    border-radius: 24px;
    padding: 4.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03), 0 0 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: relative;
}

.testimonial-visual-col {
    position: relative;
    padding-right: 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.quote-graphic-wrapper {
    position: absolute;
    top: -50px;
    left: -20px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
}

.quote-graphic-wrapper i {
    font-size: 150px;
    color: var(--black);
}

.star-rating-box {
    position: relative;
    z-index: 1;
}

.star-rating-box .star-rating {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 0.75rem;
}

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

.rating-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.testimonial-content-col {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.7;
    color: var(--black);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    border-top: none;
    padding-top: 0;
}

.author-name {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Redesigned Controls */
.testimonials-slider .slider-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.testimonials-slider .slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--black);
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.testimonials-slider .slider-btn:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

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

.testimonials-slider .slider-dots .dot {
    width: 16px;
    height: 3px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-slider .slider-dots .dot.active {
    background: var(--primary-color);
    width: 32px;
    height: 3px;
}

.testimonials-slider .slider-dots .dot:hover {
    background: var(--primary-color);
}

/* Responsiveness overrides */
@media (max-width: 991px) {
    .testimonial-grid-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem;
    }

    .testimonial-visual-col {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding-bottom: 1.5rem;
    }
}

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

.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #161616 0%, #080808 100%);
    padding: 90px 60px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(242, 196, 29, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* Luxury mesh background glow effect */
.cta-mesh-overlay {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(242, 196, 29, 0.08) 0%, rgba(239, 127, 2, 0.03) 30%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(242, 196, 29, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(242, 196, 29, 0.05);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f0e1cf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.cta-btn-primary {
    background: var(--primary-color);
    color: var(--black);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(242, 196, 29, 0.3);
}

.cta-btn-primary:hover {
    background: var(--white);
    border-color: var(--primary-color);
    /* color: var(--primary-color); */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.cta-btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.cta-btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.cta-btn span.arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

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

/* Responsiveness */
@media (max-width: 768px) {
    .cta-wrapper {
        padding: 60px 30px;
    }

    .cta-actions-row {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
}

/* FOOTER */
.footer-new {
    background: #0d0d0d;
    border-top: 1px solid rgba(242, 196, 29, 0.15);
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
    z-index: 1;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 196, 29, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-new::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 127, 2, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-main {
    position: relative;
    z-index: 1;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 1.8fr 1.8fr 1.8fr 2.5fr;
    gap: 40px;
    padding: 80px 0 50px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: inline-block;
}

.footer-logo-img {
    height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 196, 29, 0.3);
}

.footer-nav-col h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-nav-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-nav-col ul li {
    position: relative;
}

.footer-nav-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact-info li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

color: var(--secondary-color);
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}

.footer-credits .made-by a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Footer Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

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

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

/* --- CONTACT PAGE CSS --- */
.page-hero {
    min-height: 350px;
    background: #f4f0e4;
    background-image: repeating-linear-gradient(90deg, #f4f0e4, #f4f0e4 38px, #e3dfd3 38px, #e3dfd3 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
    border-bottom: 1px solid rgba(242, 196, 29, 0.15);
}

/* Glowing soft accent highlight */
.page-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 196, 29, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

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

.page-hero-title {
    color: var(--black);
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    text-shadow: none;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.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.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    border-color: rgba(239, 127, 2, 0.3);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

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

.breadcrumb-current {
    color: var(--secondary-color);
    font-weight: 700;
}

.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: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: block;
    text-decoration: none;
    color: inherit;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 196, 29, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1);
}

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

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

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


.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);
}

.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(242, 196, 29, 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;
}

.form-actions {
    margin-top: 1rem;
}

.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(242, 196, 29, 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(242, 196, 29, 0.4);
    /* background: var(--black); */
    color: var(--white);
}

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

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

.btn-submit.loading .btn-loader {
    display: inline-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(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.error-message-box {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.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;
}

/* --- UTILITY & CUSTOM CLASSES --- */
.mt-15 {
    margin-top: 15px;
}

.align-start {
    align-self: flex-start;
}

.justify-center {
    justify-content: center;
}

.mx-auto {
    margin: 0 auto;
}

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

.mb-3rem {
    margin-bottom: 3rem;
}

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

.rounded-15 {
    border-radius: 15px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.no-border {
    border: 0;
}

.contact-desc-text {
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: var(--medium-gray);
}

.contact-map-desc {
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: var(--dark-gray);
}

.bg-banner-1 {
    background-image: url('new-assets/banner/banner1.webp');
}

.bg-banner-2 {
    background-image: url('new-assets/banner/banner2.webp');
}



.feature-list-ul {
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
}

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

.shadow-md {
    box-shadow: var(--shadow-md);
}

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.product-chip {
    padding: 14px 14px;
    background-color: #f4fde6;
    /* slight tint of primary */
    color: var(--dark-gray);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.mt-15 {
    margin-top: 15px;
}

/* PREMIUM PRODUCT IMAGE SHOWCASE */
.product-image-showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.product-image-showcase img.product-showcase-img {
    width: 100%;
    /* height: 600px; */
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-image-showcase:hover img.product-showcase-img {
    transform: scale(1.05);
}

.product-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
}

.product-thumb-img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.product-thumb-img:hover {
    border-color: rgba(242, 196, 29, 0.4);
    transform: translateY(-2px);
}

.product-thumb-img.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.about-intro-highlight {
    margin-top: 15px;
    margin-bottom: -5px;
    font-weight: 600;
    color: var(--black);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* Map Container */
.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-container iframe {
    display: block;
    border: none;
}

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

/* ===================================
   FEATURE STRIP (TRUST BAR)
   =================================== */
.feature-strip {
    background-color: #d6e8f6;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-strip-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.feature-item-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
}

.feature-strip-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--dark-gray);
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item-col:hover .feature-strip-icon {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.feature-strip-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

.feature-strip-desc {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
    max-width: 250px;
}


/* 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(5px);
}

.lightbox.active {
    display: flex;
}

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

.lightbox-counter {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

.lightbox-close {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

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

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

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

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

.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: 20px;
    z-index: 10001;
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

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

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

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    max-width: 90%;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: #444 #111;
}

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

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: #111;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

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

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

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

/* TANK INSTALLATION SECTION */

.tank-installation-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.tank-installation-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.installation-grids {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.installation-block {
    background: var(--off-white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.installation-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.block-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.block-title i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.installation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.installation-list li {
    font-size: 0.95rem;
    color: var(--dark-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.4;
}

.installation-list li i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 2px;
}

.installation-list.secondary-list li i {
    color: var(--primary-color);
}

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

.tank-installation-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.tank-installation-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tank-installation-image-wrapper:hover .tank-installation-image {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.floating-badge i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.floating-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
}

.tank-installation-image-wrapper:hover .floating-badge {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .about-visual {
        order: -1;
    }

    .tank-installation-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tank-installation-visual {
        order: -1;
    }

    .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%;
    }

    .mv-grid {
        gap: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .objectives-wrapper {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 2.5rem;
    }

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

    .plant-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .cta-wrapper {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 60px 0 40px;
    }

    .footer-brand-col {
        grid-column: span 3;
        margin-bottom: 20px;
        text-align: left;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }

    .footer-socials {
        justify-content: flex-start;
    }
}

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


    .installation-grids {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tank-installation-image {
        height: auto;
    }

    .feature-strip-grid {
        flex-wrap: wrap;
        gap: 2.5rem 1rem;
    }

    .feature-item-col {
        flex: 1 1 40%;
    }

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

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

    .objectives-cards-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plant-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .page-hero {
        min-height: 400px;
        padding: 160px 0px 90px;
        background-attachment: scroll;
    }

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

    .product-item-wrapper {
        height: 380px;
    }

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

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

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

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

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

    .hero-slider {
        height: 85vh;
        min-height: 550px;
    }

    .hero-slide-split {
        flex-direction: column;
        height: 100%;
    }

    .hero-slide-text-col {
        width: 100%;
        height: 55%;
        padding: 5rem 1.5rem 2.5rem 1.5rem;
    }

    .hero-slide-img-col {
        width: 100%;
        height: 45%;
    }

    .hero-slide-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .hero-slide-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.05rem);
        margin-bottom: 1.5rem;
    }

    .hero-slide-btn {
        padding: 10px 30px;
        font-size: 0.8rem;
    }

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

    .hero-slider-prev,
    .hero-slider-next {
        display: none;
    }

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

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

    .showcase-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .about-features {
        gap: 1.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .funfact-section {
        padding: 60px 0;
    }

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

    .funfact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .tm-marquee-parent {
        padding: 15px 0;
    }

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

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

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

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

    .logo {
        font-size: 1.3rem;
    }

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

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


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

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



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

    .nav-link {
        width: 100%;
        padding: 0.85rem 1.25rem;
        justify-content: space-between;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.02);
    }

    .nav-link.active {
        color: var(--black);
        background: var(--primary-color);
        box-shadow: none;
    }

    /* Mobile Dropdown styles */
    .nav-menu .dropdown-menu,
    .nav-menu .dropdown:hover .dropdown-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        min-width: 0 !important;
        background: rgba(255, 255, 255, 0.03) !important;
        box-shadow: none !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: var(--radius-md) !important;
        padding: 0 !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
    }

    .nav-menu .dropdown-menu::before {
        display: none !important;
    }

    .nav-menu .dropdown.active .dropdown-menu,
    .nav-menu .dropdown.active:hover .dropdown-menu {
        max-height: 500px !important;
    }

    .nav-menu .dropdown-item {
        padding: 0.75rem 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .nav-menu .dropdown-item-desc {
        display: none !important;
        /* Hide descriptions on mobile to keep layout clean */
    }

    .nav-menu .dropdown-item i {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Mobile CTA Styles */
    .nav-cta-desktop {
        display: none !important;
    }

    .nav-cta-mobile {
        display: flex !important;
        justify-content: center !important;
        margin-top: 1rem !important;
        padding-top: 1.5rem !important;
        width: 100% !important;
    }

    .nav-cta-mobile .nav-cta-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
    }

    .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-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0 30px;
    }

    .footer-brand-col {
        grid-column: span 1;
        text-align: left;
        align-items: flex-start;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-contact-info li {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 15px;
    }

    .product-slide img {
        height: 400px;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .about-image-layers {
        height: 380px;
        max-width: 320px;
    }

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

    .product-item-wrapper {
        height: 350px;
    }

    .industries-section {
        padding: 60px 0;
    }

    .industry-card {
        padding: 2.25rem 1.75rem;
    }

    .client-logo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-thumbs-grid {
        gap: 0.5rem;
    }

    .product-thumb-img {
        height: 55px;
    }

    .footer-grid {
        padding: 40px 0 20px;
        gap: 25px;
    }

    .footer-desc {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 20px 0;
    }
}

/* ===================================
   404 ERROR PAGE
   =================================== */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0;
    opacity: 0.15;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-family: var(--font-primary);
}

.error-content {
    position: relative;
    z-index: 1;
}

.error-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

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

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.container-narrow {
    max-width: 800px;
}

.mt-3rem {
    margin-top: 3rem;
}

.cta-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.error-actions .cta-btn.cta-btn-outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        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-secondary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 127, 2, 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-primary);
    box-shadow: 0 6px 20px rgba(242, 196, 29, 0.4);
}

.scroll-top i {
    color: white;
}

/* ===================================
   FACILITIES SHOWCASE SECTION
   =================================== */
.facilities-showcase {
    position: relative;
    background-image: url('new-assets/home-aboutus2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 100px 0;
}

.facilities-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 18, 16, 0.93) 0%, rgba(10, 10, 10, 0.97) 100%);
    z-index: 1;
}

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

.moving-text-container {
    width: 100%;
    background-color: var(--black);
    padding: 1.25rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    border-top: 1px solid rgba(164, 130, 89, 0.15);
    border-bottom: 1px solid rgba(164, 130, 89, 0.15);
    user-select: none;
}

.moving-text-track {
    display: flex;
    white-space: nowrap;
    animation: moveText 30s linear infinite;
    gap: 3rem;
}

.moving-text-track span {
    font-size: 1.05rem;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 3rem;
}

.moving-text-track span::after {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

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

.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.facility-card-new {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.facility-card-new:hover {
    background: rgba(255, 255, 255, 0.02);
}

.facility-card-new:last-child {
    border-right: none;
}

.facility-icon-new {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.facility-card-new:hover .facility-icon-new {
    transform: scale(1.1);
}

.facility-card-new h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--font-primary);
}

.facility-card-new p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive Overrides for Facilities */
@media (max-width: 1024px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-card-new:nth-child(even) {
        border-right: none;
    }

    .facility-card-new {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-card-new {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .facility-card-new:nth-child(even) {
        border-right: none;
    }

    .facility-card-new:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .moving-text-track span {
        font-size: 0.95rem;
    }

    .facilities-showcase {
        padding: 60px 0;
    }
}

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

    .facility-card-new {
        border-right: none;
    }

    .facility-card-new:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .facility-card-new:nth-last-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    background-color: var(--white);
}

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

.service-card {
    position: relative;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(164, 130, 89, 0.15);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 2;
}

.service-content {
    position: relative;
    z-index: 3;
    padding: 2rem 1.5rem;
    color: var(--white);
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-primary);
    color: var(--white);
}

.service-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--white);
}

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

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

    .service-card {
        height: 320px;
    }
}

/* ============================================
   PRODUCT PAGE — PREMIUM EDITORIAL SECTIONS
   ============================================ */

.prod-section {
    padding: 7rem 0;
    background: #ffffff;
    position: relative;
}

.prod-section--warm {
    background: #faf9f7;
}

.prod-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Image-right: flip column order on desktop */
.prod-layout--img-right .prod-image-col {
    order: 2;
}

.prod-layout--img-right .prod-content-col {
    order: 1;
}

/* ----- Image Column ----- */
.prod-image-col {
    position: relative;
}

.prod-img-frame {
    position: relative;
}

/* Giant ghost number behind image */
.prod-bg-num {
    position: absolute;
    /* font-family: var(--font-secondary); */
    font-size: 8rem;
    font-weight: 900;
    color: var(--black);
    opacity: 0.035;
    line-height: 1;
    top: -6.5rem;
    left: -2.5rem;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.05em;
}

/* Gold offset border behind image */
.prod-img-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
}

.prod-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 2;
    pointer-events: none;
}

.prod-img-wrapper::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 1.5px solid rgba(242, 196, 29, 0.28);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.prod-img-frame:hover .prod-img-wrapper::after {
    border-color: rgba(242, 196, 29, 0.55);
}

.prod-img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 520px;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.prod-img-wrapper:hover .prod-img {
    transform: scale(1.04);
}

/* Gradient bottom overlay inside image */
.prod-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.38) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Floating category badge */
.prod-floating-badge {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.prod-floating-badge i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* ----- Content Column ----- */
.prod-content-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prod-content-col .section-subtitle {
    margin-bottom: 0.6rem;
}

.prod-content-col .section-title {
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.prod-desc {
    color: var(--medium-gray);
    font-size: 1.05rem;
    line-height: 1.78;
    margin-bottom: 2rem;
}

/* Feature list */
.prod-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid rgba(242, 196, 29, 0.22);
    padding-left: 1.5rem;
}

.prod-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.97rem;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease;
}

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

.prod-feature-list li:hover {
    color: var(--black);
}

.prod-feature-list li i {
    color: var(--primary-color);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Spec chips */
.prod-spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.prod-spec-chip {
    padding: 0.45rem 1.1rem;
    background: rgba(242, 196, 29, 0.07);
    border: 1px solid rgba(242, 196, 29, 0.28);
    color: var(--primary-dark);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.prod-spec-chip:hover {
    background: rgba(242, 196, 29, 0.16);
    border-color: rgba(242, 196, 29, 0.5);
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
    .prod-layout {
        gap: 4rem;
    }

    .prod-img {
        height: 440px;
    }
}

@media (max-width: 991px) {
    .prod-section {
        padding: 5rem 0;
    }

    /* Stack single column on tablet/mobile */
    .prod-layout,
    .prod-layout--img-right {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Image always on top in stacked view */
    .prod-layout .prod-image-col,
    .prod-layout--img-right .prod-image-col {
        order: -1;
    }

    .prod-layout .prod-content-col,
    .prod-layout--img-right .prod-content-col {
        order: 1;
    }

    .prod-img {
        height: 380px;
    }

    .prod-bg-num {
        font-size: 5rem;
        top: -3.7rem;
        left: -1rem;
    }
}

@media (max-width: 600px) {
    .prod-section {
        padding: 4rem 0;
    }

    .prod-img {
        height: 270px;
    }

    .prod-feature-list {
        padding-left: 1rem;
    }

    .prod-spec-chips {
        gap: 0.45rem;
    }

    .prod-spec-chip {
        font-size: 0.75rem;
        padding: 0.38rem 0.85rem;
    }
}

/* ============================================
   PRODUCT GALLERY SLIDER
   ============================================ */

.prod-gallery-slider {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.prod-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.prod-gallery-title {
    font-size: 1.8rem;
    font-family: var(--font-secondary);
    color: var(--black);
    position: relative;
    padding-left: 1rem;
}

.prod-gallery-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
}

.prod-gallery-controls {
    display: flex;
    gap: 0.5rem;
}

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

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

.prod-gallery-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.prod-gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1.5rem;
    /* Space for scrollbar */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.prod-gallery-track::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.prod-gallery-track {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.prod-gallery-item {
    flex: 0 0 calc(33.333% - 1rem);
    /* Show 3 items per view on desktop */
    min-width: calc(33.333% - 1rem);
    aspect-ratio: 1 / 1;
    height: auto;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

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

/* Responsive Gallery */
@media (max-width: 991px) {
    .prod-gallery-item {
        flex: 0 0 calc(50% - 0.75rem);
        /* 2 items on tablet */
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 600px) {
    .prod-gallery-item {
        flex: 0 0 calc(75% - 1.5rem);
        /* 1.2 items on mobile to show more exists */
        min-width: calc(75% - 1.5rem);
    }

    .prod-gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}