/* ==========================================================================
   PRIYA FURNITURE & TRADERS - STYLESHEET
   Author: Antigravity Web Design Team
   Design: Modern Premium Local Business System
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

/* CSS Variable Declarations */
:root {
    /* Color Palette */
    --primary: hsl(19, 45%, 15%);      /* Deep Walnut Brown */
    --primary-light: hsl(19, 45%, 25%);
    --primary-rgb: 61, 39, 29;
    --secondary: hsl(33, 47%, 92%);    /* Warm Beige */
    --secondary-light: hsl(33, 50%, 96%);
    --accent: hsl(42, 60%, 52%);       /* Muted Gold */
    --accent-hover: hsl(42, 60%, 42%);
    --bg-light: hsl(36, 33%, 98%);     /* Warm Off-white */
    --bg-card: #ffffff;
    --text-main: hsl(20, 20%, 15%);    /* Soft dark text */
    --text-muted: hsl(20, 10%, 40%);
    --white: #ffffff;
    --border-color: rgba(61, 39, 29, 0.08);
    
    /* Call-to-Action Colors */
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20ba5a;
    --phone-blue: #007bff;
    --phone-hover: #0056b3;

    /* Spacing & Layout Tokens */
    --container-width: 1200px;
    --border-radius-sm: 4px; /* Architecturally modern sharp corners */
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(61, 39, 29, 0.04);
    --shadow-md: 0 10px 30px rgba(61, 39, 29, 0.06);
    --shadow-lg: 0 20px 50px rgba(61, 39, 29, 0.1);

    /* Fluid Font Sizes using clamp() for premium typography scaling */
    --fs-h1: clamp(2.1rem, 3vw + 1rem, 3.2rem);
    --fs-h2: clamp(1.7rem, 2vw + 1rem, 2.3rem);
    --fs-h3: clamp(1.25rem, 1vw + 1rem, 1.5rem);
    --fs-body: clamp(0.95rem, 0.15vw + 0.9rem, 1.05rem);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky nav */
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600; /* Toned down weight for handcrafted feel */
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.02em; /* Sleeker letter spacing */
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: clamp(1.1rem, 0.5vw + 0.9rem, 1.3rem); }

p {
    font-size: var(--fs-body);
    margin-bottom: 1rem;
}

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

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

section {
    padding: clamp(60px, 8vw, 100px) 0; /* Fluid responsive vertical pacing */
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons and Links */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px; /* Refined luxurious spacing proportions */
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    gap: 10px;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 39, 29, 0.15);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.15);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    color: var(--white);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

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

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



header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 56px;
    width: auto;
}

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

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -2px;
}



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

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--primary-light);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

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

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

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

.nav-ctas {
    display: flex;
    gap: 12px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem; /* Sleeker icon sizing */
    color: var(--primary);
    cursor: pointer;
    padding: 8px; /* Breathing room touch target */
    margin-right: -8px; /* Align edge with navbar padding */
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

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

@media (max-width: 820px) {
    .navbar {
        padding: 15px 20px;
    }
    .hamburger {
        display: flex; /* Align center icon */
        z-index: 1001;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Sits off-screen to the right */
        width: 290px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 40px 40px 40px;
        gap: 24px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        z-index: 999;
    }

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

    .nav-link {
        font-size: 1.15rem;
        font-weight: 500;
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid rgba(61, 39, 29, 0.04);
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 1.2rem;
    }
    .logo-tagline {
        font-size: 0.65rem;
        letter-spacing: 1px;
        margin-top: -1px;
    }
    .navbar {
        padding: 12px 20px;
    }
}

/* 3. Hero Section */
.hero {
    position: relative;
    background-color: var(--primary);
    color: var(--white);
    padding: clamp(60px, 10vw, 130px) 0; /* Fluid padding with clamping */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Rich radial dark gradient making the left high-contrast and right side blend softly */
    background: radial-gradient(circle at 20% 50%, rgba(31, 20, 15, 0.98) 0%, rgba(31, 20, 15, 0.88) 50%, rgba(31, 20, 15, 0.55) 100%);
    z-index: 1;
}

/* Background image styling inside hero */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35; /* Lowered opacity for better depth and text contrast */
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Luxury editorial off-center layout */
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 3.5vw + 0.8rem, 3.3rem); /* Fluid scalable header */
    font-weight: 500; /* Outfit looks incredibly premium at weight 500 */
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent);
    font-weight: 600;
}

.hero-content p {
    font-size: clamp(0.95rem, 0.15vw + 0.95rem, 1.1rem);
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.85;
    font-weight: 300;
    max-width: 480px; /* Reduced width to prevent long lines */
}

.hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Premium 2-column feature list */
    gap: 16px 24px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    max-width: 580px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-bullets li i {
    color: var(--accent);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-actions .btn-whatsapp {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.hero-actions .btn-accent {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.hero-actions .btn-accent:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px; /* Architectural modern look */
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 15px 30px -10px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: 6px solid rgba(255, 255, 255, 0.02); /* Glass frame border */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover {
    outline-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03); /* Soft expensive zoom interaction */
}

.hero-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(31, 20, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: clamp(50px, 8vw, 80px) 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-bullets {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        max-width: 500px;
        margin: 0 auto 35px auto;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: row;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-bullets {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* 4. Trust Bar */
.trust-bar {
    background-color: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.trust-item {
    display: flex;
    flex-direction: row; /* Horizontal text and icon visual alignment */
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    border-right: 1px solid rgba(61, 39, 29, 0.08); /* Clean dividers */
    transition: var(--transition-smooth);
}

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

.trust-item i {
    font-size: 1.25rem; /* Refined small size */
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-item span {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.trust-item:hover i {
    transform: scale(1.15) rotate(5deg);
}

@media (max-width: 991px) {
    .trust-bar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 0;
    }
    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(61, 39, 29, 0.05);
    }
    .trust-item:nth-child(4), .trust-item:nth-child(5) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 0;
    }
    .trust-item {
        border-bottom: 1px solid rgba(61, 39, 29, 0.05);
        justify-content: flex-start;
        padding-left: 20px;
    }
    .trust-item:nth-child(3), .trust-item:nth-child(4) {
        border-bottom: 1px solid rgba(61, 39, 29, 0.05);
    }
    .trust-item:last-child {
        grid-column: span 2;
        border-bottom: none;
        justify-content: center;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .trust-bar-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .trust-item {
        grid-column: span 1 !important;
        border-right: none;
        border-bottom: 1px solid rgba(61, 39, 29, 0.05);
        justify-content: flex-start;
        padding: 8px 16px;
    }
    .trust-item:last-child {
        border-bottom: none;
        justify-content: flex-start;
        padding-left: 16px;
    }
}

/* 5. Featured Categories */
.featured-categories {
    background-color: var(--secondary-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.4);
}

.category-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.category-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.category-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.category-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.category-link i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.category-card:hover .category-link i {
    transform: translateX(4px);
    color: var(--accent);
}

/* 6. Why Choose Us */
.why-choose-us {
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.why-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.why-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Trust Card highlighting the 10-year repeat customer message */
.why-card.highlight {
    grid-column: span 2;
    background-color: var(--primary);
    color: var(--white);
    border-left: 5px solid var(--accent);
}

.why-card.highlight h3 {
    color: var(--white);
}

.why-card.highlight p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-style: italic;
}

.why-image-panel {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image-panel img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.why-image-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 220px;
    border-top: 3px solid var(--accent);
}

.why-image-overlay span.stat {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.why-image-overlay span.label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
    
    .why-card.highlight {
        grid-column: span 1;
    }
}

/* 7. Custom Furniture Section */
.custom-furniture {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: rgba(61, 39, 29, 0.1);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.process-step:hover .step-num {
    background-color: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0 10px;
}

@media (max-width: 991px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
        position: relative;
        padding-left: 20px; /* Leave space for left vertical node line */
    }
    
    /* Vertical timeline line behind step circles */
    .process-timeline::before {
        display: block;
        content: '';
        position: absolute;
        top: 25px;
        bottom: 25px;
        left: 10px; /* Center of the vertical path line */
        width: 2px;
        height: auto;
        background: linear-gradient(to bottom, var(--accent) 0%, rgba(212, 175, 55, 0.2) 100%);
        z-index: 1;
    }

    .process-step {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 6px 16px;
        align-items: start;
        background: var(--white);
        padding: 20px;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(61, 39, 29, 0.03);
        border: 1px solid var(--border-color);
        position: relative;
        z-index: 2;
        text-align: left;
    }
    
    .step-num {
        grid-row: 1 / 3;
        grid-column: 1;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 0;
        background-color: var(--white);
        /* Center exactly relative to vertical timeline */
        margin-left: -32px; /* Push it left so center aligns with left timeline line */
        z-index: 3;
        box-shadow: 0 0 0 6px var(--bg-light); /* Create white masking buffer around node */
    }

    .process-step h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .process-step p {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.85rem;
        color: var(--text-muted);
        padding: 0;
        margin-bottom: 0;
        line-height: 1.5;
    }
}

/* 8. Product Gallery with filters */
.product-gallery {
    background-color: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--primary-light);
    padding: 8px 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.gallery-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #f7f5f0;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 39, 29, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-info {
    padding: 16px;
    text-align: center;
}

.gallery-info h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 4px;
}

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

/* Lightbox Modal CSS */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 12, 9, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-caption {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-top: 15px;
    text-align: center;
}

.lightbox-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: center;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-smooth);
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: none;
    font-size: 2.5rem;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

@media (max-width: 991px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}

/* 9. Workshop & Craftsmanship Section */
.workshop {
    background-color: var(--primary);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.workshop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 39, 29, 0.9);
    z-index: 1;
}

.workshop-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
}

.workshop-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.workshop-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.workshop-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.workshop-quote {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
}

.workshop-quote p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 0;
    color: var(--white);
}

.workshop-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.workshop-img-box {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.workshop-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 10. About Business Section */
.about-business {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images-stack {
    position: relative;
    height: 480px;
}

.about-img-main {
    position: absolute;
    width: 75%;
    height: 380px;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
    z-index: 2;
}

.about-img-sub {
    position: absolute;
    width: 65%;
    height: 280px;
    bottom: 0;
    right: 0;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    z-index: 3;
}

.about-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.about-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.about-quote {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary);
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    margin: 25px 0;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images-stack {
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-img-main {
        height: 280px;
    }
    
    .about-img-sub {
        height: 200px;
    }
}

/* 11. Customer Trust metrics */
.customer-trust {
    background-color: var(--secondary);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.metric-item {
    padding: 10px;
}

.metric-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}

.metric-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

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

/* 12. FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary);
    cursor: pointer;
    padding: 6px 0;
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-top: 12px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Large enough for answer paragraphs */
}

/* 13. Contact & Location Section */
.contact-section {
    background-color: var(--secondary-light);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
}

.contact-card-icon {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-card-details h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-card-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-card-details a {
    color: var(--primary-light);
    font-weight: 600;
}

.contact-card-details a:hover {
    color: var(--accent);
}

.map-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 380px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 380px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 14. Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 110px 0; /* Extra bottom padding for mobile sticky CTA */
    border-top: 3px solid var(--accent);
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-contact-info li i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

/* 15. Sticky Mobile CTA */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
    display: none;
    grid-template-columns: 1fr 1fr;
    z-index: 1500;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.mobile-cta-btn.call {
    background-color: var(--primary);
}

.mobile-cta-btn.call:hover {
    background-color: var(--primary-light);
}

.mobile-cta-btn.whatsapp {
    background-color: var(--whatsapp-green);
}

.mobile-cta-btn.whatsapp:hover {
    background-color: var(--whatsapp-hover);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: grid;
    }
    
    /* Adjust body padding so elements are not covered by mobile footer */
    body {
        padding-bottom: 60px;
    }
}
