/* 
================================================================
D'FOURTEEN - PREMIUM B2B CLOTHING BRAND DESIGN SYSTEM
Aesthetics: Apple-inspired, minimalist, luxury, high contrast
================================================================
*/

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* Color Palette - Brand Red, White, and Black */
    --primary-red: #E62C2C;
    --brand-black: #111111;
    --brand-white: #FFFFFF;
    
    --primary-navy: #E62C2C; /* Remapped to Red for B2B brand elements */
    --accent-gold: #E62C2C;  /* Remapped to Red for highlights */
    --accent-gold-hover: #C81E1E;
    --dark-charcoal: #111111;
    --light-charcoal: #2D2D2D;
    --body-text: #515154;
    --light-grey: #F5F5F7;
    --border-color: rgba(0, 0, 0, 0.08);
    --pure-white: #FFFFFF;
    --red-logo: #E62C2C;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Manrope', sans-serif;
    
    /* Effects & Animations */
    --box-shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.03);
    --box-shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.08);
    --box-shadow-premium: 0 20px 50px rgba(10, 25, 49, 0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-blur: saturate(180%) blur(20px);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    background-color: var(--pure-white);
    color: var(--dark-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark-charcoal);
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.bg-light {
    background-color: var(--light-grey);
}

/* --- Section Headers --- */
.section-header {
    max-width: 680px;
    margin: 0 auto 60px auto;
}

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

.section-tag {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 12px;
}

.gold-text {
    color: var(--accent-gold);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--body-text);
    font-weight: 400;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 500;
    border-radius: 30px;
    padding: 14px 28px;
    transition: var(--transition-fast);
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn > * {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: 1;
}

.btn:hover::before {
    left: 150%;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-navy);
    color: var(--pure-white);
}

.btn-primary:hover {
    background-color: var(--dark-charcoal);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--light-grey);
    color: var(--dark-charcoal);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--pure-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 600;
}

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

.btn-outline-white {
    background-color: transparent;
    color: var(--pure-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background-color: var(--pure-white);
    color: var(--primary-navy);
    border-color: var(--pure-white);
    transform: translateY(-2px);
}

/* --- Sticky Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.main-header.scrolled {
    box-shadow: var(--box-shadow-soft);
    background-color: rgba(255, 255, 255, 0.85);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 70px;
}

.brand-logo {
    height: 64px;
    width: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-charcoal);
    opacity: 0.75;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--primary-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-wa-btn {
    background-color: #25D366;
    color: var(--pure-white);
    border-radius: 20px;
}

.nav-wa-btn:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
}

.icon-wa {
    fill: currentColor;
}

/* --- Mobile Menu Toggle --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--dark-charcoal);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Mobile Dropdown Navigation --- */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--pure-white);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--box-shadow-medium);
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideDown 0.3s ease-out forwards;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-grey);
}

.mobile-nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

/* --- 1. Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--primary-navy);
    background-image: url('../assets/images/hero_trousers.png');
    color: var(--pure-white);
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 30%, rgba(17, 17, 17, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(197, 168, 128, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--pure-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Trust Strip */
.trust-strip {
    position: relative;
    z-index: 2;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid var(--border-color-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: auto;
    padding: 24px 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 12px;
}

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

.trust-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg,
.why-icon svg,
.detail-icon svg,
.point-icon svg,
.truck-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-red);
    stroke-width: 1.6px; /* Thin, minimal Apple style */
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.trust-icon svg {
    stroke: var(--pure-white); /* White icons on the dark trust strip */
    width: 18px;
    height: 18px;
}

.why-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-red);
    stroke-width: 1.6px;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-red);
}

.point-icon svg {
    width: 10px;
    height: 10px;
    stroke: var(--pure-white); /* White checkmarks in the red circles */
    stroke-width: 2.5px; /* Thicker for legibility at small size */
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pure-white);
}

.trust-text span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- 2. About D'Fourteen --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--body-text);
    margin-bottom: 24px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-point {
    display: flex;
    gap: 16px;
}

.point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--accent-gold);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-point strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
    color: var(--primary-navy);
}

.about-point p {
    font-size: 0.95rem;
    color: var(--body-text);
}

.about-stats-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-glass-card {
    background-color: var(--light-grey);
    border: 1px solid var(--border-color);
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stats-glass-card:hover {
    transform: translateY(-8px);
    background-color: var(--pure-white);
    box-shadow: var(--box-shadow-medium);
    border-color: var(--accent-gold);
}

.stats-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.stats-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--light-charcoal);
}

/* --- 3. Product Categories --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.category-card {
    background-color: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-medium);
    border-color: var(--accent-gold);
}

.card-image-wrap {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 25, 49, 0.4) 100%);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.card-body p {
    font-size: 0.9rem;
    color: var(--body-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-card-action {
    align-self: flex-start;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.btn-card-action:hover {
    color: var(--primary-navy);
    transform: translateX(4px);
}

.category-tag-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.category-tag {
    background-color: var(--pure-white);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-charcoal);
}

/* --- 4. Why Choose D'Fourteen --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    padding: 32px;
    background-color: var(--light-grey);
    border-radius: 12px;
    border: none;
    box-shadow: none;
    transition: var(--transition-fast);
}

.why-card:hover {
    background-color: var(--pure-white);
    box-shadow: var(--box-shadow-medium);
    transform: translateY(-2px);
}

.why-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-charcoal);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.5;
}

/* --- 5. Manufacturing Process --- */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 2px;
    height: calc(100% - 40px);
    background-color: var(--border-color);
}

.timeline-step {
    position: relative;
    margin-bottom: 50px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-num-wrap {
    position: absolute;
    left: -60px;
    width: 42px;
    height: 42px;
    background-color: var(--pure-white);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-step:hover .step-num-wrap {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.timeline-step:hover .step-number {
    color: var(--pure-white);
}

.step-content {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-soft);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--body-text);
}

/* --- 6. Quality Promise --- */
.quality-box {
    background: linear-gradient(135deg, #111111 0%, #2D2D2D 100%);
    color: var(--pure-white);
    padding: 80px 40px;
    border-radius: 30px;
    box-shadow: var(--box-shadow-premium);
    position: relative;
    overflow: hidden;
}

.quality-headline {
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.quality-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.quality-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.q-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 12px;
}

.q-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--accent-gold);
}

.q-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- 7. Featured Collections --- */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.featured-card {
    background-color: var(--pure-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-medium);
}

.featured-img-wrap {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.featured-card:hover .featured-img-wrap img {
    transform: scale(1.06);
}

.featured-info {
    padding: 30px;
}

.featured-info span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 8px;
}

.featured-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.featured-info p {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.5;
}

/* --- 8. Service Area --- */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.city-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.city-chip {
    background-color: var(--light-grey);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pan-india-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(230, 44, 44, 0.1);
    border: 1.5px solid var(--accent-gold);
    color: var(--primary-navy);
    padding: 14px 24px;
    border-radius: 30px;
}

.truck-icon {
    font-size: 1.4rem;
}

.map-visual-container {
    background-color: var(--light-grey);
    border-radius: 24px;
    height: 480px;
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.abstract-map {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #ECECEF;
}

.map-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.base-node {
    top: 45%;
    left: 20%;
}

.pulse {
    width: 14px;
    height: 14px;
    background-color: var(--red-logo);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(230, 44, 44, 0.4);
    animation: pulseAnim 2s infinite;
}

.pulse-small {
    width: 8px;
    height: 8px;
    background-color: var(--primary-navy);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(10, 25, 49, 0.3);
    animation: pulseAnimSmall 2s infinite;
}

.node-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    background-color: var(--pure-white);
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid var(--accent-gold);
    white-space: nowrap;
}

.node-label-small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--body-text);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 8px;
    white-space: nowrap;
}

.map-routes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* --- 9. Wholesale CTA Banner --- */
.cta-banner-section {
    padding: 60px 0;
}

.cta-glass-banner {
    background-color: var(--primary-navy);
    background-image: linear-gradient(135deg, #111111 0%, #2D2D2D 100%);
    color: var(--pure-white);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--box-shadow-premium);
}

.cta-banner-content h2 {
    font-size: 2.4rem;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.cta-banner-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto 36px auto;
}

.cta-banner-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- 10. FAQ Section --- */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--pure-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(197, 168, 128, 0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.faq-icon-state {
    font-size: 1.3rem;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel p {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--body-text);
    line-height: 1.6;
}

.faq-item.active .faq-panel {
    max-height: 200px;
}

.faq-item.active .faq-icon-state {
    transform: rotate(45deg);
    color: var(--dark-charcoal);
}

/* --- 11. Contact Page / Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-subtext {
    font-size: 1.05rem;
    color: var(--body-text);
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background-color: var(--light-grey);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-detail-item strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--body-text);
    display: block;
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.contact-detail-item a:hover {
    color: var(--accent-gold);
}

/* Contact Form Styling */
.contact-form-panel {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-soft);
}

.contact-form-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-navy);
}

.b2b-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-charcoal);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--border-color);
    background-color: var(--light-grey);
    color: var(--dark-charcoal);
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    background-color: var(--pure-white);
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(10, 25, 49, 0.05);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    margin-top: 10px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-wrapper {
    background-color: var(--pure-white);
    padding: 10px 16px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: var(--box-shadow-soft);
}

.brand-logo-footer {
    height: 64px;
    width: auto;
    display: block;
}

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

.footer-links h4 {
    color: var(--pure-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links ul a:hover {
    color: var(--accent-gold);
    opacity: 1;
    padding-left: 4px;
}

.address-text, .contact-text-footer {
    font-size: 0.9rem;
    line-height: 1.5;
}

.address-text strong {
    color: var(--pure-white);
}

.contact-text-footer {
    margin-top: 16px;
    color: var(--accent-gold);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal span {
    margin-left: 20px;
    opacity: 0.8;
}

/* --- Catalogue Request Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 49, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background-color: var(--pure-white);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow-premium);
    animation: modalAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
    color: var(--pure-white);
    z-index: 5;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-header-visual {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3c70 100%);
    color: var(--pure-white);
    padding: 36px 30px 24px 30px;
    text-align: center;
}

.modal-header-visual h3 {
    color: var(--pure-white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.modal-header-visual p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.modal-body-form {
    padding: 30px;
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--pure-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition-fast);
}

.whatsapp-floating-widget:hover {
    transform: scale(1.08) translateY(-3px);
    background-color: #128C7E;
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.45);
}

.widget-tooltip {
    position: absolute;
    right: 74px;
    background-color: var(--primary-navy);
    color: var(--pure-white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--box-shadow-soft);
}

.whatsapp-floating-widget:hover .widget-tooltip {
    opacity: 1;
    visibility: visible;
}

/* --- Keyframe Animations --- */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulseAnim {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 44, 44, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 44, 44, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 44, 44, 0);
    }
}

@keyframes pulseAnimSmall {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 25, 49, 0.6);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(10, 25, 49, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 25, 49, 0);
    }
}

/* Scroll reveal class setup */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered cascading animations for grids */
.why-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.why-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.why-grid .reveal:nth-child(5) { transition-delay: 0.05s; }
.why-grid .reveal:nth-child(6) { transition-delay: 0.1s; }
.why-grid .reveal:nth-child(7) { transition-delay: 0.15s; }
.why-grid .reveal:nth-child(8) { transition-delay: 0.2s; }

.category-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.category-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.category-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.category-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.category-grid .reveal:nth-child(5) { transition-delay: 0.05s; }
.category-grid .reveal:nth-child(6) { transition-delay: 0.1s; }
.category-grid .reveal:nth-child(7) { transition-delay: 0.15s; }
.category-grid .reveal:nth-child(8) { transition-delay: 0.2s; }

/* Interactive Timeline animations */
.timeline-step {
    transition: var(--transition-fast);
}

.timeline-step:hover .step-content {
    transform: translateX(8px);
    border-color: var(--primary-red);
    box-shadow: var(--box-shadow-medium);
}

.timeline-step:hover .step-num-wrap {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

/* --- Responsive Media Queries (Mobile First) --- */
@media (max-width: 1024px) {
    .trust-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .trust-item {
        border-right: none;
    }
    .about-grid, .service-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid, .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .desktop-nav, .header-ctas {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-grid, .why-grid, .featured-grid {
        grid-template-columns: 1fr;
    }
    .quality-grid-mini {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .quality-headline {
        font-size: 1.8rem;
    }
    .quality-box {
        padding: 40px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-panel {
        padding: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .map-visual-container {
        height: 350px;
    }
}

/* ==========================================================================
   B2B INQUIRY CART & QUANTITY SLIDER STYLES
   ========================================================================== */

/* Slider container */
.qty-slider-container {
    margin: 20px 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qty-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-charcoal);
}

.qty-badge {
    background-color: var(--primary-red);
    color: var(--brand-white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

/* Volume-like range slider */
.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--primary-red) 0%, var(--primary-red) 10%, #EAEAEA 10%, #EAEAEA 100%);
    outline: none;
    transition: background 0.1s;
    cursor: pointer;
}

.volume-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-red);
    cursor: pointer;
    margin-top: -5px; /* (6px - 16px)/2 */
    box-shadow: 0 2px 6px rgba(230, 44, 44, 0.3);
    transition: transform 0.1s, background-color 0.1s;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #C81E1E;
}

.volume-slider::-moz-range-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: transparent;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-red);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(230, 44, 44, 0.3);
    border: none;
    transition: transform 0.1s, background-color 0.1s;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: #C81E1E;
}

/* Card Button Override */
.category-card .add-to-inquiry-btn {
    width: 100%;
    margin-top: 5px;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Floating cart button */
.floating-cart-btn {
    position: fixed;
    bottom: 105px;
    right: 30px;
    background-color: var(--brand-black);
    color: var(--pure-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-cart-btn:hover {
    transform: scale(1.08) translateY(-3px);
    background-color: var(--primary-red);
    box-shadow: 0 12px 30px rgba(230, 44, 44, 0.35);
}

.floating-cart-btn svg {
    stroke: var(--pure-white);
    width: 24px;
    height: 24px;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-red);
    color: var(--pure-white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pure-white);
}

/* Cart Drawer */
.inquiry-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10005;
    visibility: hidden;
    transition: visibility 0.4s;
}

.inquiry-drawer.active {
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.inquiry-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -460px;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background-color: var(--pure-white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.inquiry-drawer.active .drawer-content {
    right: 0;
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-grey);
}

.drawer-header h3 {
    font-size: 1.25rem;
    color: var(--brand-black);
    font-weight: 700;
}

.drawer-close {
    font-size: 2rem;
    color: var(--light-charcoal);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.drawer-close:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.drawer-body {
    padding: 24px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inquiry-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empty-msg {
    color: var(--body-text);
    font-size: 0.95rem;
    text-align: center;
    padding: 40px 10px;
    line-height: 1.5;
}

.inquiry-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: var(--light-grey);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.inquiry-item-card:hover {
    border-color: rgba(230, 44, 44, 0.2);
    box-shadow: var(--box-shadow-soft);
}

.inquiry-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inquiry-item-details h5 {
    font-size: 0.95rem;
    color: var(--brand-black);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.inquiry-item-details p {
    font-size: 0.85rem;
    color: var(--body-text);
    margin: 0;
}

.inquiry-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inquiry-item-actions button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--brand-black);
    transition: var(--transition-fast);
}

.inquiry-item-actions button:hover {
    background-color: var(--primary-red);
    color: var(--pure-white);
    border-color: var(--primary-red);
}

.inquiry-item-qty {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 48px;
    text-align: center;
}

.inquiry-item-remove {
    margin-left: 8px;
    color: #A0A0A5;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-item-remove:hover {
    color: var(--primary-red);
    transform: scale(1.15);
}

.drawer-form-container {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
}

.drawer-form-container h4 {
    font-size: 1rem;
    color: var(--brand-black);
    margin-bottom: 12px;
}

.b2b-form-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.b2b-form-mini .form-group {
    gap: 4px;
}

.b2b-form-mini .form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--light-charcoal);
}

.b2b-form-mini input {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1.5px solid var(--border-color);
    background-color: var(--light-grey);
}

.b2b-form-mini input:focus {
    background-color: var(--pure-white);
    border-color: var(--primary-red);
}

.whatsapp-send-btn {
    margin-top: 8px;
    background-color: #25D366;
    color: var(--pure-white);
    font-size: 0.9rem;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

.whatsapp-send-btn:hover {
    background-color: #128C7E;
    color: var(--pure-white);
}

@media (max-width: 480px) {
    .drawer-content {
        max-width: 100%;
        right: -100%;
    }
    .floating-cart-btn {
        bottom: 95px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-floating-widget {
        bottom: 25px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 18px;
    margin-top: 24px;
}
.footer-socials a {
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.footer-socials a svg {
    stroke: currentColor;
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}
.footer-socials a:hover {
    color: var(--pure-white) !important;
}
.footer-socials a:hover svg {
    transform: translateY(-3px) scale(1.1);
}
