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

/* CSS Variables & Reset */
:root {
    /* Colors */
    --color-bg: #F5F3EF;
    --color-text: #1a1a1a;
    --color-text-light: #4A4A4A;
    --color-primary: #9D744E;
    --color-accent: #855c3c;
    --color-dark: #0F0F0F;
    --color-white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    --spacing-xl: 5rem;

    --transition: cubic-bezier(0.22, 1, 0.36, 1);
}



html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--transition);
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1300px;
    /* Wider container for modern look */
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

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

.text-light {
    color: var(--color-white);
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.7);
}

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

/* Global Animations */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--color-primary);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--color-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    mix-blend-mode: difference;
    background-color: white;
    /* Invert colors */
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, border-width 0.3s;
    border-color: white;
    mix-blend-mode: difference;
}

.cursor-follower.active {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 255, 255, 0.2);
    border-width: 0;
}

/* Advanced Button "Wow" Factor System */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

@keyframes liquidFlow {
    0% {
        transform: translateY(100%) scale(0.8);
        border-radius: 40%;
    }

    50% {
        transform: translateY(0%) scale(1.2);
        border-radius: 30%;
    }

    100% {
        transform: translateY(-10%) scale(1.5);
        border-radius: 0%;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s var(--transition);
    gap: 1rem;
    background: transparent;
}

/* Shimmer Effect Base */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%) skewX(-15deg);
    z-index: 2;
}

.btn:hover::after {
    animation: shimmer 1s var(--transition);
}

/* Base Variants */
.btn-primary {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: var(--color-accent);
    z-index: -1;
    border-radius: 45%;
    transition: all 0.8s var(--transition);
}

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

.btn-primary:hover::before {
    bottom: -20%;
    animation: liquidFlow 1.5s forwards;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-white);
    z-index: -1;
    transition: width 0.6s var(--transition);
}

.btn-secondary:hover {
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-5px);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    color: var(--color-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 101, 0.3);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.btn-gold:hover {
    color: var(--color-dark);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 101, 0.5);
}

.btn-gold:hover::before {
    opacity: 0.2;
}

/* Link Button Modernized */
.btn-link {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    padding-left: 0;
    transition: all 0.4s var(--transition);
}

.btn-link::after {
    content: ' →';
    display: inline-block;
    transition: transform 0.4s var(--transition);
}

.btn-link:hover {
    color: var(--color-primary);
    padding-left: 10px;
}

.btn-link:hover::after {
    transform: translateX(5px);
}

/* Utilities & Extensions */
.text-accent {
    color: var(--color-primary);
}

.w-100 {
    width: 100%;
}

/* Global Animations Expansion */
@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes lineGrow {
    0% {
        height: 0;
    }

    100% {
        height: 60px;
    }
}

/* Header Redesign */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s var(--transition);
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(245, 243, 239, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    transition: all 0.4s var(--transition);
    border-radius: 4px;
}

.header.scrolled .logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

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

.nav-list {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-dark);
    opacity: 0.7;
    position: relative;
    padding: 0.5rem 0;
}

/* Ensure nav links are visible on hero if needed, but here we want them dark for the cream bg or contrast */
.nav-link {
    color: var(--color-dark);
}

.header:not(.scrolled) .nav-link {
    color: var(--color-white);
}

.header.scrolled .nav-link {
    color: var(--color-text);
    opacity: 1;
}

.nav-link:hover {
    opacity: 1;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-cta {
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 1rem 2.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.5s var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(197, 160, 101, 0.2);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, var(--color-white) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    transition: transform 0.6s var(--transition);
    opacity: 0.2;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(197, 160, 101, 0.4);
    color: var(--color-dark);
}

.btn-cta:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.header:not(.scrolled) .btn-cta {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.header:not(.scrolled) .btn-cta::before {
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
}

/* Mobile Toggle Modernized */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.4s var(--transition);
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.bar {
    width: 20px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.4s var(--transition);
    border-radius: 2px;
}

.header.scrolled .mobile-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.header.scrolled .bar {
    background-color: var(--color-dark);
}

.header:not(.scrolled) .bar {
    background-color: var(--color-white);
}

/* Hero Section Premium Redesign */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Decorative Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    animation: blobFloat 20s infinite alternate var(--transition);
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    bottom: 50px;
    left: -50px;
    animation-delay: -5s;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}


.hero-overline {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    margin-bottom: 2.5rem;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin: 0 auto 3.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

/* Bespoke Hero Button System */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    background: transparent;
}

.btn-hero-primary {
    background: var(--color-dark);
    color: var(--color-white);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 40%);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-hero-primary:hover {
    color: var(--color-dark);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover::before {
    transform: translateX(0);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(0% 0%, 85% 0%, 100% 60%, 100% 100%, 0% 100%);
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-hero-secondary:hover {
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-5px);
}

.btn-hero-secondary:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-lr;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: lineGrow 2s infinite var(--transition);
}

/* Reveal Animations Refinement */
.reveal-text,
.reveal-up,
.reveal-scale {
    opacity: 0;
    transition: all 1s var(--transition);
}

.reveal-text {
    transform: translateY(30px);
}

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

.reveal-up {
    transform: translateY(50px);
}

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

.reveal-scale {
    transform: scale(0.9);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

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

.delay-400 {
    transition-delay: 0.4s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* Sections */

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3.5rem;
    color: var(--color-dark);
}

.overline {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Features - Staggered */
.feature-card {
    padding: 3rem 2rem;
    background-color: var(--color-white);
    border-radius: 4px;
    transition: transform 0.6s var(--transition), box-shadow 0.6s var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Masonry Collections */
.masonry-grid {
    display: block;
    column-count: 4;
    column-gap: 2rem;
}

.collection-item {
    cursor: pointer;
    position: relative;
    margin-bottom: 2rem;
    page-break-inside: avoid;
    break-inside: avoid;
}

.img-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 4px;
}

.img-wrapper.placeholder-wrapper {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    aspect-ratio: 1;
    /* Square placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    /* Allow natural height for masonry */
    display: block;
    transition: transform 1.2s var(--transition);
}

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

.collection-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.collection-item:hover .collection-info h3 {
    color: var(--color-primary);
}

.price {
    font-family: var(--font-body);
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Spotlight Section */
.spotlight {
    background-color: var(--color-dark);
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.spotlight-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
}

.spotlight-image img {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.spotlight-content {
    max-width: 500px;
}

/* Horizontal Process Section (Redesigned) */
.process-section {
    height: 400vh;
    /* Scroll distance */
    position: relative;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.process-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Background enhancement */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.process-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-header {
    position: absolute;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 5;
    opacity: 1;
    transition: opacity 0.5s;
}

.process-track {
    display: flex;
    height: 60vh;
    /* Fixed height for cards */
    width: max-content;
    padding-left: 15vw;
    /* Start offset */
    gap: 10vw;
    align-items: center;
    /* Center cards vertically on the track */
    position: relative;
}

/* The Timeline Line */
.process-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(157, 116, 78, 0.3);
    /* Low opacity gold */
    z-index: 0;
    transform: translateY(-50%);
}

.process-card {
    width: 600px;
    /* Fixed width for consistency */
    height: 350px;
    background: #111;
    border: 1px solid rgba(157, 116, 78, 0.2);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Image wider than text */
    align-items: center;
    padding: 0;
    position: relative;
    border-radius: 0;
    /* Sharp elegant edges */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* Above the line */
    transition: transform 0.5s ease;
}

.process-card:hover {
    transform: scale(1.02);
    border-color: var(--color-primary);
}

.process-number {
    position: absolute;
    bottom: -3.5rem;
    right: -1rem;
    font-size: 12rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    opacity: 0.1;
    font-weight: 700;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.process-info {
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.process-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-family: var(--font-heading);
}

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

.process-img {
    height: 100%;
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.process-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    /* Artistic choice */
    transition: filter 0.5s ease;
}

.process-card:hover .process-img img {
    filter: grayscale(0%) contrast(1);
}

/* Modern Filterable Gallery Refinement */
.main-tab {
    margin: 4rem 0;
}

.main-tab ul {
    list-style: none;
    padding: 0.5rem;
    margin: 0 auto;
    display: inline-flex;
    background: #fbf9f6;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.main-tab ul li {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.8rem 2rem;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-tab ul li.active {
    background: var(--color-dark);
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.main-tab ul li:hover:not(.active) {
    color: var(--color-dark);
}

.gallery-grid {
    min-height: 400px;
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 4/5;
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(0px);
    /* Will increase on hover */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: all 0.6s var(--transition);
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--color-white);
    background: var(--color-accent);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: scale(0.5);
    transition: transform 0.6s var(--transition);
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.6s var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    backdrop-filter: blur(8px);
}

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

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

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

/* Enhanced Filtering Animation */
.tab-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.tab-item.d-none {
    display: none !important;
}

.tab-hide {
    opacity: 0;
    transform: scale(0.9);
}

.tab-show {
    animation: tabIn 0.6s var(--transition) forwards;
}

@keyframes tabIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Collections Grid (Legacy Removal) */
.masonry-grid {
    display: none;
}

/* Materials Accordion / Panels */
.materials {
    background-color: #fff;
}

.materials-accordion {
    display: flex;
    height: 500px;
    gap: 1rem;
}

.material-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s var(--transition);
    border-radius: 4px;
}

.material-panel:hover {
    flex: 3;
    /* Expand on hover */
}

/* Replaces .material-bg with .material-img handling */
.material-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.material-panel:hover .material-img {
    transform: scale(1.1);
}

.material-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0.9;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.material-panel:hover .material-content {
    opacity: 1;
    transform: translateY(0);
}

/* Visualizer */
.visualizer {
    background-color: var(--color-bg);
}

.visualizer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.visualizer-steps {
    margin: 2rem 0;
    color: var(--color-text-light);
}

.visualizer-steps li {
    margin-bottom: 0.5rem;
}

/* .visualizer-mockup {
    background-color: #e0e0e0;
    aspect-ratio: 9/16;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 20px;
    border: 8px solid var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
} */

.mockup-frame span {
    color: var(--color-text-light);
    font-weight: 500;
}


/* About Section */
/* Modernized About Section */
.about-section {
    background-color: #FDFCFB;
    /* Soft airy cream */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: 'HERITAGE';
    position: absolute;
    top: 50%;
    left: -5%;
    font-family: var(--font-heading);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    transform: translateY(-50%) rotate(-90deg);
    pointer-events: none;
    white-space: nowrap;
}

.overline-premium {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    /* padding-left: 40px; */
}

.overline-premium::before {
    content: '';
    position: absolute;
    /* left: 0; */
    /* top: 50%; */
    width: 30px;
    height: 1px;
    background-color: var(--color-primary);
    transform: translateY(-50%);
}

.section-title-modern {
    /* font-size: clamp(2.5rem, 5vw, 4rem); */
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 300;
}

.about-description p {
    font-size: 16px;
    color: rgba(15, 15, 15, 0.7);
    margin-bottom: 15px;
}

.lead-text {
    font-size: 16px;
    color: var(--color-dark) !important;
    font-weight: 400;
}

.about-actions {
    margin-top: 15px;
}

/* Image Wrapper Refinements */
.about-image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.about-image-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.about-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    transition: transform 1.5s var(--transition);
}

.about-image-wrapper:hover .about-image-frame img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 2.5rem 2rem;
    z-index: 3;
    text-align: center;
    min-width: 140px;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15%);
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Testimonials - Modern Slider Refinement */
.testimonials {
    background: #fbf9f6;
    position: relative;
    overflow: hidden;
}

.testimonial-slider-wrapper {
    position: relative;
    padding: 1rem 0;
}

.testimonial-swiper {
    padding: 3rem 1rem 5rem !important;
}

.testimonial-card {
    padding: 4rem 3rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.15;
    margin-bottom: 1.5rem;
}

.quote {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-location {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Slider Navigation Arrows */
.testimonial-next,
.testimonial-prev {
    width: 60px !important;
    height: 60px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s var(--transition) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.testimonial-next::after,
.testimonial-prev::after {
    font-size: 1.2rem !important;
    color: var(--color-dark) !important;
}

.testimonial-next:hover,
.testimonial-prev:hover {
    background: var(--color-primary) !important;
}

.testimonial-next:hover::after,
.testimonial-prev:hover::after {
    color: var(--color-white) !important;
}

.testimonial-next {
    right: -30px !important;
}

.testimonial-prev {
    left: -30px !important;
}

/* Slider Pagination Dots */
.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
    margin: 0 8px !important;
    transition: all 0.4s var(--transition);
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 10px;
    background: var(--color-primary);
}

/* Bespoke */
.bespoke {
    background-color: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Premium Footer Modernization */
.footer {
    background-color: #050505;
    color: #fff;
    padding: 100px 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid-wrapper {
    padding-bottom: 80px;
}

.footer-brand .logo {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    display: inline-block;
    letter-spacing: 2px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-5px) rotate(10deg);
    border-color: var(--color-accent);
}

.footer h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 2.5rem;
    font-weight: 700;
}



.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-nav-link:hover {
    color: #fff;
}

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

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.4s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--color-accent);
}

.newsletter-input-group input {
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: #fff;
    flex-grow: 1;
    font-family: var(--font-body);
    outline: none;
    font-size: 1rem;
}

.newsletter-submit {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

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

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

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
}

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

.back-to-top:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ANIMATION CLASSES */
.reveal-text,
.reveal-up,
.reveal-scale {
    opacity: 1;
    transition: all 1s var(--transition);
}

.reveal-text {
    transform: translateY(30px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-scale {
    transform: scale(0.95);
}

.active.reveal-text,
.active.reveal-up {
    opacity: 1;
    transform: translateY(0);
}

.active.reveal-scale {
    opacity: 1;
    transform: scale(1);
}

/* Animation Delays */
.delay-100 {
    transition-delay: 0.1s;
}

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

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2;
    }

    .spotlight-container {
        grid-template-columns: 1fr;
    }

    .materials-accordion {
        flex-direction: column;
        height: auto;
    }

    .material-panel {
        min-height: 200px;
    }

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

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

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .masonry-grid {
        column-count: 1;
    }

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

    .about-image {
        order: 1;
        height: 350px;
    }

    .about-content {
        order: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .handmade-carpet h2 {
        font-size: 30px !important ;
    }

    .handmade-carpet p {
     text-align: start !important;
    }
}

/* Heritage Journey Swiper Refinement */
.journey-slider-wrapper {
    position: relative;
    padding: 1rem 0;
}

.journey-swiper {
    padding: 2rem 0 !important;
}

.journey-swiper .swiper-slide {
    height: auto;
    opacity: 1;
    /* Full opacity for all slides */
}

.journey-swiper .product-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.journey-swiper .product-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.p-img-wrapper {
    position: relative;
    height: 300px;
    /* Slightly taller for minimalist feel */
    width: 100%;
    overflow: hidden;
}

.p-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.journey-swiper .product-feature-card:hover .p-img-wrapper img {
    transform: scale(1.1);
}

.p-content {
    padding: 2rem 1.5rem;
}

.p-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* Custom Navigation */
.journey-next,
.journey-prev {
    width: 50px !important;
    height: 50px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s var(--transition) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10;
}

.journey-next::after,
.journey-prev::after {
    font-size: 1.1rem !important;
    color: var(--color-dark) !important;
}

.journey-next:hover,
.journey-prev:hover {
    background: var(--color-dark) !important;
}

.journey-next:hover::after,
.journey-prev:hover::after {
    color: var(--color-white) !important;
}

.journey-next {
    right: -15px !important;
}

.journey-prev {
    left: -15px !important;
}

/* Mobile Sidebar Redesign */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 350px;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 1002;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: right 0.6s var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

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

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

.sidebar-header .logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--color-dark);
    line-height: 1;
}

.sidebar-content {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 1rem;
    margin-right: -1rem;
    /* Adjust for scrollbar space */
}

/* Custom Scrollbar for Sidebar */
.sidebar-content::-webkit-scrollbar {
    width: 4px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    /* Slightly smaller as requested */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.5s var(--transition);
    opacity: 0;
    transform: translateX(30px);
    position: relative;
    padding: 0.5rem 0;
}

.mobile-sidebar.active .mobile-nav-link {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger entrance */
.mobile-sidebar.active li:nth-child(1) .mobile-nav-link {
    transition-delay: 0.1s;
}

.mobile-sidebar.active li:nth-child(2) .mobile-nav-link {
    transition-delay: 0.2s;
}

.mobile-sidebar.active li:nth-child(3) .mobile-nav-link {
    transition-delay: 0.3s;
}

.mobile-sidebar.active li:nth-child(4) .mobile-nav-link {
    transition-delay: 0.4s;
}

.mobile-nav-link::before {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.4s var(--transition);
}

.mobile-nav-link:hover {
    color: var(--color-accent);
    padding-left: 1rem;
}

.mobile-nav-link:hover::before {
    width: 20px;
}

.sidebar-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Page Overlay (Backdrop) */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--transition);
}

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

/* Modern Features Section */
.features {
    background: var(--color-bg);
    padding: 100px 0;
}

.feature-card {
    background: var(--color-white);
    padding: 3.5rem 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(197, 160, 101, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    transition: all 0.5s var(--transition);
    position: relative;
    z-index: 2;
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--color-accent);
    transition: all 0.5s var(--transition);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    z-index: 2;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    z-index: 2;
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: transparent;
}

.feature-card:hover .feature-card-bg {
    transform: translateY(0);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--color-white);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--color-accent);
    transform: scale(1.1) rotate(15deg);
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--color-dark);
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Product Features Section - High-End Design */
.product-features {
    background-color: var(--color-white);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.product-feature-card {
    background: #fff;
    padding: 3rem 2rem;
    height: 100%;
    position: relative;
    transition: all 0.6s var(--transition);
    border-bottom: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-feature-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-bottom-color: var(--color-accent);
    transform: translateY(-10px);
}

.p-icon {
    width: 60px;
    height: 60px;
    background: #fbf9f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.4s var(--transition);
}

.p-icon i {
    font-size: 1.8rem;
    color: var(--color-dark);
}

.product-feature-card:hover .p-icon {
    background: var(--color-dark);
}

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

.product-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-dark);
}

.product-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: all 0.4s var(--transition);
}


.product-feature-card:hover .card-number {
    color: rgba(133, 92, 60, 0.1);
    transform: scale(1.1);
}

/* ==========================================================================
   Breadcrumb Section
   ========================================================================== */
.bredcram_wrapper {
    position: relative;
    padding: 120px 0 80px;
    background: url('../img/luxury_carpet_breadcrumb_bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.bredcram_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

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

.bredcram_content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.bredcram_content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bredcram_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.bredcram_content ul li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bredcram_content ul li:not(:last-child)::after {
    content: '/';
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.bredcram_content ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.bredcram_content ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.bredcram_content ul li a:hover {
    color: #fff;
}

.bredcram_content ul li a:hover::after {
    width: 100%;
}

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

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


@media (max-width: 768px) {
    .bredcram_wrapper {
        padding: 100px 0 60px;
        min-height: 300px;
    }

    .bredcram_content h2 {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Core Values Section
   ========================================================================== */
.values-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.values-grid {
    margin-top: 4rem;
}

.value-card {
    padding: 3rem 2rem;
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-card:hover {
    background: var(--color-white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    transition: transform 0.5s var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--color-dark);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ==========================================================================
   Mission & Vision Section
   ========================================================================== */
.mission-vision-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    position: relative;
}

.mission-vision-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.mv-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mv-content {
    order: 1;
}

.mv-image {
    order: 2;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--transition);
}

.mv-box:hover .mv-image img {
    transform: scale(1.1);
}

.mv-box.reverse .mv-content {
    order: 2;
}

.mv-box.reverse .mv-image {
    order: 1;
}

.mv-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mv-label i {
    font-size: 1.2rem;
}

.mv-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.mv-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

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

    .mv-content,
    .mv-image,
    .mv-box.reverse .mv-content,
    .mv-box.reverse .mv-image {
        order: initial;
    }

    .mv-image {
        height: 300px;
    }

    .mv-title {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Contact Page Redesign Styles
   ========================================================================== */
.contact-info-section {
    padding: var(--spacing-xl) 0 4rem;
    background-color: var(--color-bg);
}

.info-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.6s var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.6s var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.info-card:hover::before {
    height: 100%;
}

.info-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    display: inline-block;
    transition: transform 0.6s var(--transition);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.info-card p,
.info-card a {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Split Layout Form Section */
.contact-main-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.contact-split-wrapper {
    background: var(--color-white);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.contact-form-side {
    padding: 5rem;
    background: var(--color-bg);
}

.contact-map-side {
    position: relative;
    background: var(--color-dark);
}

.map-info-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    z-index: 10;
    color: var(--color-white);
}

.map-info-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.map-container-inner {
    height: 100%;
    min-height: 600px;
}

.map-container-inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0);
    transition: all 0.5s ease;
}

.contact-split-wrapper:hover .map-container-inner iframe {
    filter: grayscale(0.5);
}

/* Premium Form Inputs */
.modern-form .form-group {
    margin-bottom: 2.5rem;
}

.modern-form .form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-weight: 800;
    margin-bottom: 1rem;
}

.modern-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.2rem 0;
    font-size: 1.1rem;
    transition: all 0.4s var(--transition);
    border-radius: 0;
}

.modern-form .form-control:focus {
    box-shadow: none;
    border-color: var(--color-dark);
}

.modern-form textarea.form-control {
    min-height: 150px;
}

@media (max-width: 991px) {
    .contact-form-side {
        padding: 3rem 2rem;
    }

    .map-container-inner {
        min-height: 400px;
    }

    .map-info-overlay {
        position: static;
        margin: 2rem;
    }
}

/* ==========================================================================
   Modern Blog Section Styles
   ========================================================================== */
.blog-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.blog-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.5s var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    position: relative;
    padding-top: 65%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.blog-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 1s var(--transition);
}

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

.blog-date-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--color-white);
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.blog-content {
    padding: 3rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 800;
}

.blog-card h3 {
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--color-accent);
}

.blog-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blog-read-more {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.blog-read-more i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--color-accent);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .blog-content {
        padding: 2.5rem 1.5rem;
    }

    /* .kala-launch-grid{
        grid-template-columns:1fr;
        gap:20px;
    } */

    .kala-launch-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 30px;
        margin-top: 50px;
    }

    .kala-launch-card{
        padding:30px 20px;
    }

    .carpet-list-mark {
    margin-bottom: 0;
    }
}

/* ==========================================================================
   Modern Blog Details Styles
   ========================================================================== */
.blog-details-wrapper {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.blog-details-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 3rem;
    border-radius: 4px;
    transition: transform 1.5s var(--transition);
}

.blog-details-content h1 {
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.blog-details-content h2 {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin: 15px 0;
    font-weight: 700;
    position: relative;
    display: block;
}

.blog-details-content h3 {
    font-size: 1.6rem;
    color: var(--color-dark);
    margin: 3rem 0 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-details-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text-light);
    text-align: justify;
}

.blog-details-content ul {
    margin: 3rem 0;
    padding: 0;
    list-style-type: none;
    /* Removed default markers */
}

.blog-details-content li {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.6;
}

.blog-details-content li::before {
    content: '\e204';
    /* Phosphor ArrowRight or similar checkmark placeholder */
    font-family: 'Phosphor';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.blog-details-content li:hover::before {
    transform: translateX(5px);
}

.blog-details-content li strong {
    color: var(--color-dark);
}

/* Sticky Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    padding-left: 2rem;
}

.sidebar-title {
    font-size: 1.25rem;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

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

.blog-sidebar-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-sidebar-content:last-child {
    border-bottom: none;
}

.blog-sidebar-content-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.blog-sidebar-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-sidebar-content:hover .blog-sidebar-content-image img {
    transform: scale(1.1);
}

.blog-sidebar-content-text h3 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.blog-sidebar-content-text h3 a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar-content-text h3 a:hover {
    color: var(--color-accent);
}

@media (max-width: 991px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 4rem;
        position: static;
    }

    .blog-details-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .blog-details-content h2 {
        font-size: 1.8rem;
        margin: 3rem 0 1.5rem;
    }

    .blog-details-content h3 {
        font-size: 1.4rem;
        margin: 2.5rem 0 1rem;
    }
}

.footer-logo img {
    height: 120px;
    width: 120px;
    object-fit: contain;
}

.contact-consent {
    margin-top: 14px;
}

.contact-consent .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.contact-consent .form-check-label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.contact-consent .form-check-label strong {
    color: var(--primary-color);
    font-weight: 500;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--color-bg);
}



/* Bottom Caption */
.about-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(to top,
            rgba(15, 15, 15, 0.75),
            rgba(15, 15, 15, 0.05));
    color: var(--color-white);
    backdrop-filter: blur(6px);
    transition: all 0.6s var(--transition);
}

/* Name */
.about-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Role */
.about-role {
    display: block;
    margin-top: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Hover Effects */
.about-image-frame:hover img {
    transform: scale(1.06);
}

.about-image-frame:hover .about-caption {
    padding-bottom: 2rem;
}

.about-img01 img {
    height: 500px;
    width: 100%;
}

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

.bg-white {
    background-color: var(--color-white) !important;
}

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


/* ===== MODAL ===== */
.modern-modal .modal-content {
    border-radius: 20px;
    padding: 1.5rem;
    background: var(--color-white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    animation: modalScale .6s var(--transition);
}

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

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

.modern-modal .modal-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-dark);
}

/* ===== FORM ===== */
.modern-form .form-group {
    margin-bottom: 1.2rem;
}

.modern-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.4rem;
}

.modern-form .form-control {
    border-radius: 14px;
    padding: 0.7rem 1rem;
    border: 1px solid #e5e5e5;
    font-family: var(--font-body);
    transition: all 0.3s var(--transition);
}

.modern-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(157, 116, 78, 0.15);
}

/* ===== BUTTON ===== */
.modern-form .btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    padding: 0.75rem;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.4s var(--transition);
}

.modern-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(157, 116, 78, 0.4);
}
.iti--separate-dial-code input[type="tel"]{
    padding-right: 87px !important;
}
/* Artisan Collection Section */
.artisan-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg);
}

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

.artisan-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.artisan-image-wrapper:hover img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 2;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.premium-label {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.artisan-content .lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    background: rgba(157, 116, 78, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-item span {
    font-weight: 500;
    color: var(--color-text);
}

.btn-premium-lg {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.25rem 3.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s var(--transition);
    border: none;
    display: inline-block;
}

.btn-premium-lg:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(157, 116, 78, 0.3);
    color: var(--color-white);
}

@media (max-width: 991px) {
    .artisan-section {
        padding: var(--spacing-md) 0;
    }
    .experience-badge {
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    .experience-badge .number {
        font-size: 1.5rem;
    }
    .experience-badge .text {
        font-size: 0.5rem;
    }
}

/* Footer Contact Styles */
.footer-contact h4 {
    margin-bottom: 2.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-list li:hover .contact-icon {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-5px) rotate(10deg);
    border-color: var(--color-accent);
}

.contact-text {
    flex-grow: 1;
}

.contact-text span,
.contact-text a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #fff;
}

.handmade-carpet h2 {
    font-size: 38px;
}

.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}
.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.accordion-item-header.active::after {
  content: "\2212";
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

.faq h1 {
    text-align: center;
}


.kala-brand-launch-area{
    padding:80px 0;
    background:#f7f7f7;
}

.kala-launch-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.kala-launch-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

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

.kala-icon{
    width:70px;
    height:70px;
    background:#c79a5b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.kala-icon i{
    color:#fff;
    font-size:28px;
}

.kala-launch-heading{
    font-size:20px;
    margin-bottom:15px;
}

.kala-launch-text{
    font-size:15px;
    line-height:1.7;
    color:#555;
}


/* call to action */
aside.sidebar-area{position:sticky;top:10px;}
.pulse:nth-child(1){-webkit-animation:pulse 2s infinite;animation:pulse 2s infinite;}
.pulse:nth-child(2){-webkit-animation:pulse 2s infinite 0.3s;animation:pulse 2s infinite 0.3s;}
.pulse:nth-child(3){-webkit-animation:pulse 2s infinite 0.3s;animation:pulse 2s infinite 0.3s;}
.whatsapp-info,
.pulse{font-family:"Lato", sans-serif;display:inline-block;color:#fff;background:#1ab744;position:fixed;bottom:100px;right:50px;font-size:45px;text-align:center;z-index:99;border-radius:90%;height:50px;width:50px;line-height:45px;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;transition:all 0.2s;}
@keyframes pulse{0%{-webkit-transform:scale(0.1);transform:scale(0.1);opacity:0;}
50%{opacity:0.3;}
100%{-webkit-transform:scale(2);transform:scale(2);opacity:0;}
}
.calles:nth-child(1){-webkit-animation:calles 2s infinite;animation:calles 2s infinite;}
.calles:nth-child(2){-webkit-animation:calles 2s infinite;animation:calles 2s infinite;}
.calles:nth-child(2){-webkit-animation:calles 2s infinite;animation:calles 2s infinite;}
.phone-info,
.calles{font-family:"Lato", sans-serif;display:inline-block;color:#fff;background:#066de3;position:fixed;bottom:100px;left:50px;font-size:45px;text-align:center;z-index:99;border-radius:90%;height:50px;width:50px;line-height:45px;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;transition:all 0.2s;}
@keyframes calles{0%{-webkit-transform:scale(0.1);transform:scale(0.1);opacity:0;}
50%{opacity:0.3;}
100%{-webkit-transform:scale(2);transform:scale(2);opacity:0;}
}


@media(max-width:768px){
    .phone-info, .calles {
    left: 2px !important;
    }

    .whatsapp-info, .pulse {
    right: 14px !important;
    }
}
/* call to action */

.carpet-mark-distni {
  background: #f5f5f5;
  padding: 50px 20px;
}

.mark-distni {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.carpet-mark-distni p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* LIST STYLE */
.carpet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.carpet-list li {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 4px solid #9d744e;
  position: relative;
  transition: 0.3s;
  font-weight: 500;
}

/* Bullet */
.carpet-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.carpet-list li {
  padding-left: 25px;
}

.handmade-carpet {
  margin-top: 20px;
  font-weight: 500;
}

.faq h2 {
    text-align: center !important;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  margin: 0;
  color: #333;
}

/* WRAP */
.cm-wrap {
  padding: 60px 20px;
}

/* HEADER */
.cm-header {
  text-align: center;
  margin-bottom: 80px;
}

.cm-title {
  color: #7a5030;
  margin-bottom: 40px;
  font-size: 28px;
}

/* GRID (FIXED DESIGN) */
.cm-grid {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  justify-content: center;
  gap: 25px;
}

/* CARD */
.cm-card {
  width: 250px;
  background: #fff;
  padding: 35px 20px;
  border: 1px solid #000;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.cm-card:hover {
  transform: translateY(-6px);
}

.cm-card i {
  font-size: 32px;
  color: #7a5030;
  margin-bottom: 12px;
}

.cm-card__title {
  margin: 10px 0 5px;
  color: #7a5030;
}

.cm-card__desc {
  font-size: 14px;
  color: #777;
}

/* CONTENT */
.cm-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30%;
}

/* .cm-content__left {
  max-width: 450px;
} */

.cm-text {
  margin-bottom: 20px;
  color: #666;
}

.cm-list {
  list-style: none;
  padding: 0;
}

.cm-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.cm-list span {
  color: #7a5030;
  margin-right: 10px;
}

/* RIGHT */
.cm-content__right {
  display: flex;
  justify-content: center;
}

/* CTA */
.cm-cta {
  background: linear-gradient(135deg, #5a3924, #7a5030);
  padding: 50px 40px;
  border-radius: 20px;
  color: #fff;
  width: 320px;
}

.cm-cta__title {
  font-size: 28px;
  margin-bottom: 10px;
}

.cm-cta__text {
  margin-bottom: 20px;
}

.cm-cta__btn {
  display: inline-block;
  padding: 10px 25px;
  background: #fff;
  color: #7a5030;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {

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

  .cm-card {
    width: 100%;
  }

  .cm-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .cm-content__left {
    max-width: 100%;
  }
}