@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Serif:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --bg-color: #fcf9f2; 
    --text-color: #1a1a1a;
    --text-muted: #666;
    --accent-green: #6b705c;
    --accent-terracotta: #d6954a; /* Updated to Warm Ochre as primary accent */
    --accent-gold: #c5a059;
    --white: #ffffff;
    --gray-light: #f0f0f0;
    --glass-bg: rgba(255, 255, 255, 0.8);
    
    /* Typography */
    --font-heading: 'Noto Serif', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --radius: 12px;
    --container-width: 1200px;
    --section-padding: 60px 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Professional Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

h1, h2, h3, h4, .font-serif {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Top Notice Bar */
.top-notice-bar {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.top-notice-bar .marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.top-notice-bar p {
    margin: 0;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

@media (max-width: 768px) {
    .top-notice-bar {
        font-size: 0.75rem;
        padding: 6px 0;
    }
}

/* Header & Navigation */
header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 24px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: 0.3s;
}

.mobile-quote-icon {
    display: none;
}

.mobile-quote-icon a {
    color: var(--text-color);
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-terracotta);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Global Quote Badge */
.quote-badge {
    background: var(--accent-terracotta);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    vertical-align: middle;
}

/* Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-sidebar {
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 25px;
}

.sidebar-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(3px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-terracotta);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px; /* Slightly tighter gap for better balance */
    align-items: center; /* Vertically center all items, including the button */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    display: block; /* Ensure consistent height for centering */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px; /* Slightly thicker for premium feel */
    background-color: var(--accent-terracotta);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-terracotta);
}

.nav-links a.quote-link {
    background-color: var(--accent-green);
    color: var(--white) !important;
    padding: 6px 20px; /* Reduced vertical padding */
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: fit-content;
    font-size: 0.85rem; /* Slightly smaller for professional look */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links a.quote-link:hover {
    background-color: #5a5f4d; /* Slightly darker green */
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(107, 112, 92, 0.2);
    color: var(--white) !important;
}

.nav-links a.quote-link::after {
    display: none !important;
}

.nav-links a.quote-link .quote-badge {
    background-color: var(--white) !important;
    color: var(--accent-green) !important;
    font-weight: 700;
    margin-left: 2px;
}

/* Hero Section */
.hero {
    height: calc(100vh - 100px);
    min-height: 540px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    margin-bottom: 0;
    overflow: hidden;
    background-color: var(--accent-green); /* Fallback for FCP */
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px; /* Greatly increased */
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
    width: 100%;
}

.hero-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-weight: 600;
    opacity: 1;
    display: block;
    line-height: 1.6; /* Ensure no cutting if wrapped */
    white-space: normal; /* Allow wrapping */
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 0.7rem; /* Slightly larger for readability */
        letter-spacing: 1px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--white);
    max-width: 100%; /* Occupation full container width */
}

.hero h1 span.italic {
    font-style: italic;
    display: block;
    font-family: var(--font-heading);
}

.hero p {
    font-size: 1.1rem;
    margin: 0 auto 35px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.8;
    color: var(--white);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
}

.hero .btn {
    padding: 16px 40px; /* Slightly more compact */
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid transparent;
}

.hero .btn-primary {
    background-color: var(--accent-terracotta);
    color: var(--white);
    border-color: var(--accent-terracotta);
    margin: 0;
}

.hero .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    margin: 0;
}

.hero .btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-color);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Hero Mobile Overrides */
@media (max-width: 768px) {
    .hero {
        height: calc(100dvh - 80px);
        min-height: 520px;
        align-items: center;
        padding-top: 0;
    }
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        width: 100%;
        transform: none;
        margin-top: -10px;
    }
    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
        padding: 0 5px;
        white-space: normal;
        line-height: 1.4;
        max-width: 100%;
    }
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    .hero h1 span.italic {
        font-style: italic;
        display: block;
    }
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        max-width: 100%;
        line-height: 1.5;
        padding: 0 5px;
    }
    .hero-btns {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100%;
        display: flex !important;
        padding: 0 20px;
    }
    .hero .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 14px 24px !important;
        font-size: 0.75rem !important;
    }
}

/* Icon Strip Section */
.icon-strip {
    background: linear-gradient(135deg, #6b705c 0%, #4a5240 100%);
    color: var(--white);
    padding: 30px 0;
}

.icon-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    text-align: center;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 55px;
    height: 55px;
    border: 0.5px solid rgba(255, 255, 255, 0.5); /* Thinner border for professional look */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.icon-box h4 {
    font-family: var(--font-body); /* Sans-serif for headers */
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-weight: 600;
}

.icon-box p {
    font-size: 0.85rem;
    font-family: var(--font-heading); /* Serif for description */
    font-style: italic;
    opacity: 0.85;
    line-height: 1.8;
    max-width: 260px;
    margin: 0 auto;
}

/* Scroll Indicator - Mobile Only */
.scroll-indicator {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .icon-strip {
        padding: 50px 0;
    }
    .icon-strip .container {
        padding: 0 10px;
    }
    .icon-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 10px;
    }
    .icon-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .icon-circle svg {
        width: 18px;
        height: 18px;
    }
    .icon-box {
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 20px 10px;
        border-radius: 4px;
        height: 100%;
        justify-content: center;
    }
    .icon-box h4 {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .icon-box p {
        font-size: 0.8rem;
        line-height: 1.6;
        max-width: 100%;
        padding: 0;
    }
}

/* What We Do Section */
.what-we-do-section {
    padding: 70px 0;
    background: var(--white);
}

.what-we-do-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-do-header .section-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    display: block;
}

.what-we-do-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.what-we-do-header h2 span {
    font-style: italic;
    color: var(--accent-terracotta);
}

.what-we-do-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.what-we-do-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.35s ease;
}

.what-we-do-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
}

.what-we-do-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-terracotta));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

.what-we-do-card .card-icon svg {
    width: 24px;
    height: 24px;
}

.what-we-do-card h3 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.what-we-do-card .card-subtitle {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.what-we-do-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.what-we-do-card .checklist {
    list-style: none;
}

.what-we-do-card .checklist li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.what-we-do-card .checklist li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
}

/* Key Detail Cards */
.key-details-section {
    padding: 60px 0 80px;
    background: #faf9f7;
}

.key-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.key-detail-card {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 36px 24px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.key-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--accent-green);
}

.key-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.key-detail-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    stroke-width: 1.5;
}

.key-detail-value {
    font-size: 28px;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 6px;
}

.key-detail-sub {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-green);
    margin-bottom: 14px;
}

.key-detail-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

@media (max-width: 1100px) {
    .key-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .key-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .key-detail-card {
        padding: 28px 20px;
    }
    .key-detail-value {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 50px 0;
    }
    .what-we-do-header h2 {
        font-size: 2rem;
    }
    .what-we-do-header p {
        font-size: 0.9rem;
    }
    .what-we-do-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: flex;
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        gap: 6px;
        z-index: 2;
        opacity: 0.6;
    }
    .scroll-indicator svg {
        width: 24px;
        height: 24px;
    }
    .scroll-indicator span {
        font-size: 0.6rem;
        letter-spacing: 2px;
        color: var(--white);
        text-transform: uppercase;
    }
}

.scroll-indicator {
        display: flex;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        gap: 4px;
        z-index: 2;
        opacity: 0.5;
    }
    .scroll-indicator span {
        font-size: 0.45rem;
        letter-spacing: 1px;
        color: var(--white);
        text-transform: uppercase;
    }
    .scroll-line {
        width: 1px;
        height: 15px; /* Shorter to avoid collision */
        background: rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }
    .scroll-line::after {
        content: '';
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        animation: scroll-line-anim 2.5s infinite;
    }
}

@keyframes scroll-line-anim {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-terracotta);
    color: var(--white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(214, 149, 74, 0.3);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background-color: #c4833c;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(214, 149, 74, 0.4);
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* Sections */
section {
    padding: var(--section-padding);
}

/* Material Section */
.material-section-new {
    padding: 100px 0;
    background: var(--bg-color);
}

.material-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.material-image-new {
    position: relative;
}

.material-image-new img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.material-floating-stat {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-terracotta);
    color: var(--white);
    padding: 30px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(214, 149, 74, 0.3);
}

.material-floating-stat .stat-value {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    display: block;
    font-weight: 700;
}

.material-floating-stat .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.material-content-new .section-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    display: block;
}

.material-content-new h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.3;
}

.material-content-new h2 span {
    font-style: italic;
    color: var(--accent-terracotta);
}

.material-content-new > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.material-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-green), var(--accent-terracotta));
    margin-bottom: 40px;
    border-radius: 2px;
}

.material-features-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.material-feature {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.material-feature:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.material-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-terracotta));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.material-feature-icon svg {
    width: 22px;
    height: 22px;
}

.material-feature h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.material-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .material-grid-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .material-image-new img {
        height: 400px;
    }

    .material-floating-stat {
        right: 20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .material-section-new {
        padding: 60px 0;
    }

    .material-content-new h2 {
        font-size: 2rem;
    }

    .material-features-new {
        grid-template-columns: 1fr;
    }

    .material-image-new img {
        height: 300px;
    }
}

/* Material Section Specifics */
.material-section {
    background-color: #fdfbf7;
    padding: 80px 0;
}

.material-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 25px;
}

.material-section h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 400;
}

.material-section h2 span.italic {
    font-style: italic;
    display: block;
}

.material-section p.lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.material-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    padding-left: 0;
}

.material-features h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.material-list {
    list-style: none;
}

.material-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.material-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-terracotta);
    border-radius: 50%;
}

.image-container {
    position: relative;
}

.material-img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 4px;
}

.floating-stats-box {
    position: absolute;
    bottom: -30px;
    left: -60px;
    background-color: var(--accent-terracotta);
    color: var(--white);
    padding: 40px;
    width: 280px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    z-index: 2;
}

.stats-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stats-value {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 5px;
}

.stats-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* Process Section */
.process-section {
    background-color: #fcf9f2;
    padding: 80px 0;
    text-align: center;
}

.process-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 20px;
}

.process-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-box {
    background-color: #f7f3ed;
    padding: 40px 30px;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.process-box:hover {
    background-color: var(--accent-terracotta);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(214, 149, 74, 0.25);
}

.process-box:hover h3,
.process-box:hover p {
    color: var(--white);
}

.process-box:hover .process-num {
    color: rgba(255,255,255,0.2);
}

.process-num {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: rgba(0,0,0,0.05);
    margin-bottom: 20px;
    font-weight: 700;
}

.process-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    transition: color 0.35s ease;
}

.process-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-family: var(--font-heading);
    transition: color 0.35s ease;
}

.process-box.highlighted {
    background-color: var(--accent-terracotta);
    color: var(--white);
    border: none;
    justify-content: flex-end;
}

.process-box.highlighted .stats-label {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 15px;
}

.process-box.highlighted h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.process-box.highlighted p {
    color: var(--white);
    opacity: 0.9;
    font-style: italic;
}

/* Story Section Specifics */
.story-section {
    background-color: var(--accent-terracotta);
    color: var(--white);
    padding: 80px 0;
}

.story-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0.8;
    display: block;
    margin-bottom: 25px;
}

.story-section h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 400;
    color: var(--white);
}

.story-section h2 span.italic {
    font-style: italic;
    display: block;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--white);
}

.story-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-top: 50px;
    padding-left: 0;
    opacity: 0.95;
    max-width: 600px;
}

.story-image-wrapper {
    position: relative;
}

.story-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 4px;
}

.not-charity-box {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    width: 250px;
    z-index: 2;
}

.not-charity-box .stats-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.not-charity-box h4 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.not-charity-box p {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.8;
    font-style: italic;
}

@media (max-width: 1100px) {
    .not-charity-box {
        right: 0;
        bottom: -20px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-section h2 {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
}

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

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Featured Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    width: 100%;
    margin: 0 auto;
    cursor: pointer; /* Whole card is clickable */
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #fff;
    border: 1px solid var(--gray-light);
    border-radius: calc(var(--radius) - 4px);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Featured Products Section */
.featured-section {
    padding: 50px 0;
    background-color: var(--bg-color);
}

/* Global Button Refinement */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 2px; /* Professional sharp corners */
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1.5px solid transparent;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-terracotta);
    border: 1.5px solid var(--accent-terracotta);
}

.btn-secondary:hover {
    background-color: var(--accent-terracotta);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-accent {
    background-color: transparent;
    color: var(--accent-green);
    border: 1.5px solid var(--accent-green);
}

.btn-accent:hover {
    background-color: var(--accent-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Stats Section */
.stats-bar {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* Footer */
footer {
    background-color: #111;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

/* Prevent mobile browsers from making phone numbers blue */
.footer-section p a,
.footer-section p {
    color: #999 !important;
    text-decoration: none !important;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 40px;
    color: #666;
    font-size: 0.9rem;
}

/* B2B Modernization Refined for MoonjCraft */
.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-green) 50%, var(--accent-terracotta) 50%);
    margin: 20px auto 40px;
}

/* Mission & Vision Cards */
.mission-vision-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.35s ease;
}

.mission-card::before {
    background: linear-gradient(to bottom, var(--accent-green), var(--accent-terracotta));
}

.vision-card::before {
    background: linear-gradient(to bottom, var(--accent-terracotta), var(--accent-gold));
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.mv-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-terracotta));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
}

.mv-icon svg {
    width: 28px;
    height: 28px;
}

.mv-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-terracotta);
    margin-bottom: 12px;
}

.mv-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.mv-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .mv-card {
        padding: 35px 30px;
    }
}

/* B2B Grid Corrections */
.b2b-card-grid {
    display: grid;
    gap: 20px;
}

.grid-4-col {
    grid-template-columns: repeat(4, 1fr);
}

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

.b2b-card {
    padding: 28px 22px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    text-align: left;
    height: 100%;
}

.b2b-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(214, 149, 74, 0.15);
    border-color: var(--accent-terracotta);
}

.b2b-card:hover .icon-box {
    background-color: var(--accent-terracotta);
    transform: scale(1.05);
}

.b2b-card .icon-box {
    width: 52px;
    height: 52px;
    background-color: var(--accent-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    transition: all 0.35s ease;
}

.b2b-card .icon-box svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.b2b-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 700;
}

.b2b-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .grid-4-col, .grid-3-col {
        grid-template-columns: 1fr;
    }
}

/* Side-by-side Section (Mission/Packaging) */
.flex-split {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.flex-split .content-side {
    flex: 1;
}

.flex-split .image-side {
    flex: 1;
}

.flex-split .image-side img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 480px;
}

/* Checklist Styling */
.modern-checklist {
    list-style: none;
    margin-top: 30px;
}

.modern-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    background: #fdfbf7;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-green);
}

.checklist-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.checklist-text h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.checklist-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .flex-split {
        flex-direction: column;
        padding: 30px;
    }
    .flex-split .image-side img {
        height: 350px;
    }
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.mission-vision-box {
    padding: 50px;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
}

.mission-vision-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-terracotta);
}

/* Certification Section - Carousel */
/* Certification Section - Slider */
.cert-grid-section {
    background-color: #f0fdf4;
    padding: 80px 0;
    overflow: hidden;
}

.cert-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
}

.cert-slider-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.cert-slider-container:active {
    cursor: grabbing;
}

.cert-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.cert-card {
    flex: 0 0 calc(25% - 15px);
    background: var(--white);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 250px;
    user-select: none;
}

.cert-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(214, 149, 74, 0.2);
    border-color: var(--accent-terracotta);
}

.cert-card.special {
    border: 1px solid rgba(0,0,0,0.05);
}

.cert-logo-box {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    pointer-events: none;
}

.cert-logo-box img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

.cert-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-family: var(--font-body);
    font-weight: 700;
}

.cert-card p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Why Choose Us Slider - Same structure as cert slider */
.why-choose-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
}

.why-choose-slider-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.why-choose-slider-container:active {
    cursor: grabbing;
}

.why-choose-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.why-choose-track .b2b-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #f8fafc;
    padding: 28px 22px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    text-align: left;
}

.why-choose-track .b2b-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(214, 149, 74, 0.15);
    border-color: var(--accent-terracotta);
}

@media (max-width: 1100px) {
    .why-choose-track .b2b-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .why-choose-slider-wrapper {
        gap: 0;
    }

    .why-choose-track .b2b-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
        flex-shrink: 0;
    }
}

.cert-nav-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #e0e0e0;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 10;
}

.cert-nav-btn:hover {
    background: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    color: var(--white);
    transform: scale(1.05);
}

@media (max-width: 1100px) {
    .cert-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .cert-grid-section .container {
        padding: 0 10px;
    }

    .cert-nav-btn {
        display: none;
    }
    
    .cert-slider-wrapper {
        gap: 0;
        margin-top: 35px;
    }

    .cert-slider-track {
        gap: 10px;
    }

    .cert-card {
        flex: 0 0 calc(50% - 5px);
        min-width: calc(50% - 5px);
        flex-shrink: 0;
        padding: 22px 12px;
        min-height: 190px;
    }
    
    .cert-logo-box {
        height: 65px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .cert-card {
        flex: 0 0 calc(50% - 5px);
        min-width: calc(50% - 5px);
    }
}




}

.packaging-detail-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.packaging-detail-list li strong {
    color: var(--accent-terracotta);
}

/* Testimonials Section */
.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-carousel {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.testimonial-carousel:active {
    cursor: grabbing;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    background: transparent;
    border: 1px solid #e0d8cc;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-terracotta);
    box-shadow: 0 8px 25px rgba(214, 149, 74, 0.1);
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--accent-green);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-terracotta);
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 0.78rem;
    color: #888;
}

.testimonial-nav-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #e0e0e0;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-nav-btn:hover {
    background: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    color: var(--white);
    transform: scale(1.05);
}

.testimonial-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonial-slider-wrapper {
        gap: 0;
    }

    .testimonial-nav-btn {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
        min-width: calc(100% - 30px);
    }

    .testimonial-track {
        gap: 15px;
    }
}

@media (max-width: 550px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
    }
}

.gallery-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.gallery-video-row,
.gallery-images-row {
    width: 100%;
}

.gallery-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-video-carousel,
.gallery-images-carousel {
    overflow: hidden;
    border-radius: 10px;
    flex: 1;
    cursor: grab;
}

.gallery-video-carousel:active,
.gallery-images-carousel:active {
    cursor: grabbing;
}

.gallery-video-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.gallery-images-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.gallery-video-item {
    flex: 0 0 calc(50% - 8px);
    position: relative;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image-item {
    flex: 0 0 calc(50% - 8px);
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.gallery-image-item:hover {
    box-shadow: 0 15px 40px rgba(214, 149, 74, 0.2);
    transform: translateY(-5px);
}

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

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

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

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-btn {
    width: 52px;
    height: 52px;
    background: var(--accent-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.gallery-video-item:hover .play-btn {
    transform: scale(1.1);
}

.gallery-nav-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #e0e0e0;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gallery-nav-btn:hover {
    background: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    color: var(--white);
    transform: scale(1.05);
}

.gallery-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 992px) {
    .gallery-video-item {
        height: 280px;
    }

    .gallery-image-item {
        flex: 0 0 calc(50% - 8px);
        height: 240px;
    }
}

@media (max-width: 768px) {
    .gallery-video-item {
        flex: 0 0 calc(100% - 20px);
        height: 250px;
    }

    .gallery-image-item {
        flex: 0 0 calc(100% - 20px);
        height: 220px;
    }

    .gallery-nav-btn {
        display: none;
    }

    .gallery-slider-wrap {
        gap: 0;
    }

    .gallery-video-carousel,
    .gallery-images-carousel {
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    .gallery-video-item {
        flex: 0 0 calc(100% - 20px);
        height: 220px;
    }

    .gallery-image-item {
        flex: 0 0 calc(100% - 20px);
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-video-item {
        height: 200px;
    }

    .gallery-image-item {
        height: 180px;
    }
}

/* Gallery Lightbox - Professional Full Screen Viewer */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(8px);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.gallery-lightbox-counter {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-family: var(--font-body);
    letter-spacing: 2px;
}

.gallery-lightbox-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.gallery-lightbox-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
    cursor: grab;
}

.gallery-lightbox-content:active {
    cursor: grabbing;
}

.gallery-lightbox-item {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-lightbox-nav:hover {
    background: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-nav.prev {
    left: 25px;
}

.gallery-lightbox-nav.next {
    right: 25px;
}

.gallery-lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.gallery-lightbox-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.gallery-lightbox-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-lightbox-dot.active {
    background: var(--accent-terracotta);
    transform: scale(1.3);
}

.gallery-lightbox-dot:hover {
    background: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .gallery-lightbox-content {
        padding: 70px 20px;
    }

    .gallery-lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .gallery-lightbox-nav.prev {
        left: 10px;
    }

    .gallery-lightbox-nav.next {
        right: 10px;
    }

    .gallery-lightbox-close {
        width: 38px;
        height: 38px;
    }

    .gallery-lightbox-header {
        padding: 15px 20px;
    }

    .gallery-lightbox-footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-lightbox-nav {
        width: 38px;
        height: 38px;
        background: rgba(0,0,0,0.4);
    }
}

.artisan-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-gold);
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.artisan-grid-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.artisan-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 80px;
    line-height: 1.6;
    font-family: var(--font-heading);
    font-style: italic;
}

.artisan-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.artisan-card {
    background: #fdfbf7; /* Match section background */
    display: flex;
    flex-direction: column;
}

.artisan-img-box {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    overflow: hidden;
}

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

.artisan-card:hover .artisan-img-box img {
    transform: scale(1.05);
}

.artisan-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--accent-terracotta);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.artisan-info {
    padding: 0 10px;
}

.artisan-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.artisan-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.artisan-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.artisan-card-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    padding-left: 20px;
    border-left: 2px solid var(--accent-terracotta);
    color: var(--text-color);
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .artisan-card-grid {
        grid-template-columns: 1fr;
    }
    .artisan-grid-section h2 {
        font-size: 2.5rem;
    }
}

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

/* Hide Spin Buttons for Number Inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Responsive Layouts */
@media (max-width: 1200px) {
    :root {
        --container-width: 95%;
    }
}

@media (max-width: 992px) {
    section {
        padding: 40px 0;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Mobile Header Layout */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-quote-icon {
        display: block;
    }
    
    nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
    }
    
    .logo {
        text-align: center;
        grid-column: 2;
    }
    
    .mobile-quote-icon {
        justify-self: end;
        grid-column: 3;
    }

    .mobile-menu-toggle {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .section-title {
        font-size: 1.65rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
        max-width: 95%;
        margin: 0 auto 30px;
        line-height: 1.5;
    }
    .section-divider {
        margin: 15px auto 25px;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-choose-track .b2b-card {
        flex: 0 0 calc(100% - 20px);
    }
    .toast-notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .btn {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        margin-bottom: 10px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

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

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-item .play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 10px;
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 280px;
    }
    .gallery-item:not(.large) {
        height: 180px;
    }
}

/* Gallery Video Lightbox */
.gallery-video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gallery-video-lightbox.active {
    display: flex;
}

.gallery-video-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.gallery-video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-video-close:hover {
    color: var(--accent-terracotta);
}

.gallery-video-content iframe {
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .gallery-video-content iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-video-content iframe {
        height: 220px;
    }
}

r;
    justify-content: center;
}

.gallery-video-close:hover {
    color: var(--accent-terracotta);
}

.gallery-video-content iframe {
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .gallery-video-content iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-video-content iframe {
        height: 220px;
    }
}


