:root {
    /* Lumière Beauty Theme Colors */
    --primary: #c9a96e; /* warm gold */
    --primary-dark: #a8834a;
    --primary-light: #fdf6ec;
    --secondary: #e8b4b8; /* blush pink */
    --accent: #8b5e83; /* mauve */
    --dark: #1a1410;
    --body-bg: #fdfaf6;
    --white: #ffffff;
    --text: #2c2118;
    --text-muted: #7a6a5a;
    --border: #ede5d8;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 12px rgba(201,169,110,0.10);
    --shadow-md: 0 8px 32px rgba(201,169,110,0.16);
    --shadow-lg: 0 24px 72px rgba(201,169,110,0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);

    /* Fonts */
    --font-sans: 'Poppins', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--body-bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

@media (pointer: fine) { body { cursor: none; } }
a { cursor: none; }
button { cursor: none; }

::selection {
    background-color: var(--amber-500);
    color: var(--stone-950);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Media queries */
@media (max-width: 768px) {
    .header-container { padding: 0 1rem; }
}

.pre-footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}
@media (min-width: 768px) {
    .pre-footer-content {
        flex-direction: row;
        text-align: left;
    }
}
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Utility Classes */
.text-amber { color: var(--amber-500); }
.text-stone-300 { color: var(--stone-300); }
.bg-amber { background-color: var(--amber-500); }
.relative { position: relative; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.hidden { display: none !important; }
.flex-1 { flex: 1; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }
.italic { font-style: italic; }

/* Buttons */
.btn-primary, .btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 13px 30px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    box-shadow: 0 8px 24px rgba(201,169,110,0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover, .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201,169,110,0.5);
    color: var(--white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-icon {
    padding: 0.75rem;
    border-radius: 50%;
    background: var(--white);
    color: var(--stone-900);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: var(--amber-600);
    color: var(--white);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stone-200);
    color: var(--stone-900);
    height: 8rem;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-img {
    height: 7rem;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-img-footer {
    height: 5.5rem;
    filter: brightness(1);
}

.logo-icon {
    color: var(--amber-500);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    background: linear-gradient(to right, var(--amber-400), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 640px) { .logo-text { font-size: 1.5rem; } }

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--stone-800);
}

/* Mobile dropdown styles */
.desktop-nav.show-mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--stone-200);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 100;
}

@media (min-width: 768px) { 
    .desktop-nav { display: flex; flex-direction: row; position: static; background: transparent; padding: 0; border: none; box-shadow: none; } 
}

.desktop-nav a:hover {
    color: var(--blush-600, #c47373);
    transition: color 0.3s ease;
}

/* Active Nav Highlights (Pinkish) */
.nav-active {
  color: var(--blush-600, #c47373) !important;
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--blush-600, #c47373);
  border-radius: 99px;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--stone-800);
    cursor: pointer;
    margin-left: 1rem;
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta .btn-primary {
    display: none;
}
@media (min-width: 768px) {
    .header-cta .btn-primary {
        display: inline-block;
    }
}

.phone-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber-400);
    transition: color 0.3s ease;
}

@media (min-width: 640px) { .phone-link { display: flex; } }

.phone-link:hover {
    color: var(--amber-500);
}

.phone-link i {
    width: 1rem;
    height: 1rem;
}

/* Hero Carousel */


@media (min-width: 768px) {  }

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 4rem;
    z-index: 20;
    max-width: 60rem;
}

.slide-content > * {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.7s ease;
}

.swiper-slide-active .slide-content > * {
    transform: translateY(0);
    opacity: 1;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 182, 193, 0.1);
    border: 1px solid rgba(255, 182, 193, 0.3);
    color: var(--amber-400);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.tagline i {
    width: 1rem;
    height: 1rem;
}

.slide-title {
    font-size: 2.25rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 48rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (min-width: 640px) { .slide-title { font-size: 3rem; } }
@media (min-width: 768px) { .slide-title { font-size: 4.5rem; } }

.slide-title .highlight {
    color: var(--amber-500);
    display: block;
}

@media (min-width: 640px) { .slide-title .highlight { display: inline; } }

.slide-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    max-width: 36rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

@media (min-width: 640px) { .slide-desc { font-size: 1.25rem; } }

.slide-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 24rem;
}

@media (min-width: 640px) {
    .slide-actions {
        flex-direction: row;
        justify-content: flex-start;
        max-width: none;
    }
}

@media (max-width: 639px) {
    .slide-content {
        padding: 0 1.5rem;
        align-items: flex-start;
    }
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(255, 159, 178, 0.8);
}

.prev-arrow { left: 1rem; }
.next-arrow { right: 1rem; }

.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.75rem;
}

.indicator {
    height: 0.625rem;
    width: 0.625rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.5s ease;
}

.indicator.active {
    width: 2rem;
    background: var(--amber-500);
}

.indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
}

/* Sections Global */
section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 4rem;
}

.subtitle {
    color: var(--amber-600);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 1rem;
}

@media (min-width: 640px) { .section-header h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .section-header h2 { font-size: 3rem; } }

.dark-section .section-header h2 {
    color: var(--stone-900);
}

.divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--amber-500), var(--orange-600));
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.desc {
    color: var(--stone-600);
    font-size: 1.125rem;
}

/* Services */
.bg-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    aspect-ratio: 1 / 1;
    pointer-events: none;
}
.bg-decor.top-left {
    top: 0; left: 0; width: 16rem; height: 16rem; background: rgba(255, 182, 193, 0.05);
}
.bg-decor.bottom-right {
    bottom: 0; right: 0; width: 24rem; height: 24rem; background: rgba(255, 182, 193, 0.05);
}
.bg-decor.top-right {
    top: 0; right: 0; width: 24rem; height: 24rem; background: rgba(255, 182, 193, 0.05);
}
.bg-decor.center-left {
    top: 50%; left: 2.5rem; transform: translateY(-50%); width: 18rem; height: 18rem; background: rgba(255, 182, 193, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--stone-100);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.icon-box {
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--amber-50);
    color: var(--amber-600);
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: var(--amber-600);
    color: var(--white);
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: var(--stone-100);
    color: var(--stone-600);
    transition: all 0.3s ease;
}

.service-card:hover .badge {
    background: var(--amber-100);
    color: var(--amber-800);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--amber-600);
}

.service-card p {
    color: var(--stone-600);
    font-size: 0.875rem;
    line-height: 1.625;
    flex-grow: 1;
}

.learn-more {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--stone-50);
    color: var(--amber-600);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more {
    transform: translateX(4px);
}

.trust-badges {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(231, 229, 228, 0.6);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 640px) { .trust-badges { grid-template-columns: repeat(3, 1fr); } }

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tb-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--amber-100);
    color: var(--amber-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.trust-badge h4 {
    font-weight: 700;
    color: var(--stone-800);
    margin-bottom: 0.25rem;
}

.trust-badge p {
    color: var(--stone-500);
    font-size: 0.875rem;
}

/* Why Choose Us */
.dark-section {
    background-color: var(--orange-500); /* Soft blush pink */
    color: var(--stone-900);
}

.dot-pattern-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(#eab308 1px, transparent 1px);
    background-size: 16px 16px;
}

.wcu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) { .wcu-grid { grid-template-columns: repeat(2, 1fr); } }

.image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 4px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .image-wrapper img {
        height: 350px;
    }
    .wcu-image-col {
        margin-bottom: 2rem;
    }
}


.floating-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 182, 193, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.fb-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: var(--amber-500);
    color: var(--white);
}

.fb-subtitle {
    color: var(--amber-400);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.fb-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--stone-900);
}

.wcu-image-col::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 8rem;
    height: 8rem;
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-item i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--stone-800);
    font-size: 0.875rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--stone-800);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
        width: 100%;
    }
    .stat-box {
        padding: 0.5rem 0.25rem;
        min-width: 0;
    }
    .stat-num {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.55rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(220, 180, 100, 0.2);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-sans, sans-serif);
    font-size: 0.8rem;
    color: #6b5c4f;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    display: block;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--stone-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1.5px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--white);
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(201, 169, 110, 0.4);
}

.gallery-card {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-card.hidden-card {
    display: none;
}

.gallery-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(231, 229, 228, 0.6);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gc-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--stone-100);
}

.gc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gc-image img {
    transform: scale(1.05);
}

.gc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.gallery-card:hover .gc-overlay {
    opacity: 1;
}

.gc-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(28, 25, 23, 0.8);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.gc-badge i {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--amber-400);
}

.gc-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gc-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.gallery-card:hover .gc-content h3 {
    color: var(--amber-600);
}

.price-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: var(--amber-50);
    color: var(--amber-700);
    border: 1px solid var(--amber-100);
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.gc-content p {
    color: var(--stone-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gc-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--stone-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--stone-500);
}

.gc-footer strong {
    color: var(--stone-800);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 1rem;
    max-width: 42rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

@media (min-width: 640px) { .modal-img { height: 24rem; } }

.modal-body {
    padding: 2rem;
}

.modal-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.modal-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.modal-body h3 {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--stone-900);
}

@media (min-width: 640px) { .modal-body h3 { font-size: 1.875rem; } }

.modal-body p {
    color: var(--stone-600);
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.modal-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: var(--stone-50);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.modal-meta .label {
    display: block;
    color: var(--stone-400);
    margin-bottom: 0.25rem;
}

.modal-meta strong {
    color: var(--stone-800);
    font-size: 1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--stone-200);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testi-card:hover {
    border-color: rgba(201, 160, 80, 0.5);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    color: rgba(68, 64, 60, 0.2);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--amber-400);
}

.star.fill {
    fill: var(--amber-400);
}

.testi-text {
    color: var(--stone-800);
    font-size: 0.875rem;
    line-height: 1.625;
    font-style: italic;
    margin-bottom: 2rem;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--stone-200);
}

.testi-user img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.testi-user h4 {
    font-weight: 700;
    color: var(--stone-900);
    font-size: 0.875rem;
}

.testi-user span {
    font-size: 0.75rem;
    color: var(--stone-400);
}

/* Inquiry Form */
.inquiry-section {
    background-color: var(--stone-50);
}

.inquiry-container {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--stone-100);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) { .inquiry-container { grid-template-columns: 5fr 7fr; } }

.inquiry-info {
    background: linear-gradient(to bottom right, var(--stone-900), var(--stone-950));
    padding: 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 640px) { .inquiry-info { padding: 3rem; } }

.icon-box-amber {
    display: inline-flex;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--amber-400);
    margin-bottom: 1.5rem;
}

.inquiry-info h2 {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) { .inquiry-info h2 { font-size: 1.875rem; } }

.inquiry-info p {
    color: var(--stone-300);
    font-size: 0.875rem;
    line-height: 1.625;
}

.promises {
    padding-top: 2rem;
    border-top: 1px solid var(--stone-800);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--stone-400);
}

.promise {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.promise i {
    width: 1rem;
    height: 1rem;
}

.inquiry-form-wrapper {
    padding: 2rem;
}

@media (min-width: 640px) { .inquiry-form-wrapper { padding: 3rem; } }

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stone-900);
}

.form-header p {
    color: var(--stone-500);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--stone-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--stone-200);
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.success-message {
    padding: 3rem 0;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: var(--amber-100);
    color: var(--amber-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon i {
    width: 2.5rem;
    height: 2.5rem;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--stone-600);
    max-width: 24rem;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--dark); /* Black background */
    color: var(--white);
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--primary-dark);
    position: relative;
}

.footer-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(to right, var(--amber-500), var(--orange-600), var(--amber-500));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand p {
    color: var(--white);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-top: 1rem;
    opacity: 0.8;
}

.footer h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--amber-400);
    transition: color 0.3s ease;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.footer-hours p {
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.text-amber-dim {
    color: var(--primary);
    font-size: 0.75rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--white);
    opacity: 0.7;
}

@media (min-width: 640px) { 
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.made-with {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.made-with i {
    width: 0.75rem;
    height: 0.75rem;
}

/* ── Gallery Mosaic Additions ────────────────────────────── */
.img-mosaic { display: grid; gap: 1rem; margin: 3rem 0; align-items: start; }
.img-mosaic-2 { grid-template-columns: 1fr; }
.img-mosaic-3 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .img-mosaic-2 { grid-template-columns: repeat(2, 1fr); }
  .img-mosaic-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .img-mosaic-3 { grid-template-columns: repeat(3, 1fr); }
}

.img-mosaic img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: contain; background: #f9fafb; border-radius: 1rem; display: block; transition: transform 0.5s ease; }
.img-mosaic img:hover { transform: scale(1.03); }

.gallery-section { padding: 5rem 0; background: #fff; }

.gallery-card { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); transition: transform 0.35s ease, box-shadow 0.35s ease; cursor: pointer; }
.gallery-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.16); }
.gallery-card img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: contain; background: #f9fafb; display: block; transition: transform 0.5s ease; }
.gallery-card:hover img { transform: scale(1.06); }

.gallery-card-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(26,15,8,0.75), transparent); color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; padding: 1.5rem 1rem 0.85rem; transform: translateY(100%); transition: transform 0.35s ease; }
.gallery-card:hover .gallery-card-label { transform: translateY(0); }
.gallery-card.hidden { display: none; }

.filter-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.filter-btn { padding: 0.55rem 1.4rem; border-radius: 50px; border: 1.5px solid var(--primary); background: transparent; color: var(--primary); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: background 0.25s, color 0.25s, box-shadow 0.25s; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 14px rgba(201, 169, 110, 0.3); }

/* Values Grid for Why Choose Us */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--amber-500);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.3);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: var(--amber-100);
    color: var(--amber-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    width: 2rem;
    height: 2rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.value-card p {
    color: var(--stone-600);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    background-color: #25d366; /* WhatsApp Green */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #20b858;
    color: #fff;
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 1rem;
        right: 1rem;
    }
    .whatsapp-float i {
        font-size: 30px !important;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--amber-400);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    z-index: 1001;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--amber-400);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Make product/gallery images clickable */
.lightbox-trigger {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.lightbox-trigger:hover {
    transform: scale(1.02);
}

/* ---- CUSTOM CURSOR ---- */
.cursor-dot, .cursor-outline {
  position: fixed; top: 0; left: 0; pointer-events: none;
  border-radius: 50%; z-index: 999999;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--primary); }
.cursor-outline {
  width: 40px; height: 40px; border: 1px solid rgba(201,169,110,0.5);
  transition: width 0.2s cubic-bezier(0.25, 1, 0.5, 1), height 0.2s cubic-bezier(0.25, 1, 0.5, 1), background 0.2s;
}
.cursor-outline.hover {
  width: 70px; height: 70px; background: rgba(201,169,110,0.08); border-color: transparent;
}

/* ---- SCROLL PROGRESS ---- */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---- PAGE LOADER ---- */
#page-loader {
  position: fixed; inset: 0;
  background: var(--body-bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.diorette-brand-loader {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--text); margin-bottom: 24px;
  animation: pulseLogo 2.5s infinite ease-in-out;
}
.d-logo-icon-loader { width: 68px; height: 68px; color: var(--primary); }
.d-logo-text-loader { display: flex; flex-direction: column; align-items: center; line-height: 1; text-align: center; }
.d-logo-text-loader .d-title { font-family: var(--font-sans); font-size: 38px; font-weight: 500; letter-spacing: 7px; color: var(--primary); margin-bottom: 8px; }
.d-logo-text-loader .d-subtitle { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 12px; color: var(--primary); margin-left: 6px; }

@keyframes pulseLogo {
  0%, 100% { opacity: 0.8; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}
.loader-bar {
  width: 160px; height: 2px;
  background: var(--border); border-radius: 99px;
  overflow: hidden; margin: 0 auto;
}
.loader-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 99px;
  animation: loaderFill 1.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ---- UTILITIES ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #ecdcb4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* New Testimonial Styles */
.testi-card-new {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.testi-header .stars {
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
}
.testi-header .verified {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
}
.testi-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.testi-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.testi-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}
.user-initials {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.testi-user h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.testi-user span {
    font-size: 0.75rem;
    color: #999;
}
.testi-swiper-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.testi-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 24px;
    border-radius: 12px;
}

/* ---- NEW BLOG CARD STYLES ---- */
.blog-card-new {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ceaa71; /* Matching the gold/yellow */
    color: white;
    padding: 4px 14px;
    border-radius: 99px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 1px;
}
.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card-new:hover .blog-img {
    transform: scale(1.05);
}
.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-meta {
    display: flex;
    gap: 1.2rem;
    color: #999;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}
.blog-meta i {
    color: #ceaa71;
}
.blog-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.4;
}
.blog-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.blog-link {
    color: #ceaa71;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}
.blog-link:hover {
    color: var(--primary-dark);
}

/* ---- RESPONSIVENESS FIXES ---- */
html, body {
    overflow-x: clip;
    width: 100%;
}

.pre-footer-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.footer {
    background-color: #1a1410;
    color: #ffffff;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
    
    .cta-actions {
        flex-direction: row;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-legal {
        flex-direction: row;
        gap: 2rem;
    }
}

/* ---- HERO RESPONSIVE FIXES ---- */
.hero {
    height: 100vh;
    min-height: 550px;
    aspect-ratio: auto;
}

.slide-content {
    position: relative;
    z-index: 10;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    color: white;
}

.slide-title {
    font-size: 2.2rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.slide-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.slide-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .hero {
        height: auto;
        aspect-ratio: 1717 / 916;
        min-height: auto;
    }
    .slide-content {
        padding: 4rem 10%;
        align-items: flex-start;
        text-align: left;
    }
    .slide-title {
        font-size: 4rem !important;
    }
    .slide-desc {
        font-size: 1.1rem;
        max-width: 600px;
    }
    .slide-actions {
        flex-direction: row;
        width: auto;
        max-width: none;
    }
}

/* ---- HEADING ACCENTS ---- */
.subtitle-pill {
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 5px 15px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 600;
}

.heading-accent {
    color: var(--accent);
}

/* ---- WHY CHOOSE US SPLIT LAYOUT ---- */
.why-us-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 992px) {
    .why-us-split-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 5rem;
    }
}

.why-us-text-col {
    position: sticky;
    top: 120px;
}

/* Override existing values-grid columns */
.why-us-grid-col .values-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .why-us-grid-col .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card Redesign based on Reference */
.why-us-grid-col .value-card {
    text-align: left;
    padding: 2.5rem;
    border-top: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-grid-col .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.15);
}

.why-us-grid-col .value-card.bg-white {
    background-color: #ffffff;
}

.why-us-grid-col .value-card.bg-beige {
    background-color: var(--primary-light);
}

.why-us-grid-col .value-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin: 0 0 1rem 0;
    justify-content: flex-start;
}

.why-us-grid-col .value-icon i {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--primary);
}

.why-us-grid-col .value-card h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.why-us-grid-col .value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Sacred Collection Slider */
.sacred-collection {
    background-color: #f8fcfb;
    position: relative;
}

.collection-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.collection-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.collection-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.cc-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    aspect-ratio: 3/4;
    background: #f4f4f4;
}

.cc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .cc-image-wrapper img {
    transform: scale(1.05);
}

.cc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #e77b21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cc-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cc-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-family: var(--font-sans);
    text-transform: uppercase;
}

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 9999px;
    background: transparent;
    color: #333;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cc-btn:hover {
    background: #fafafa;
    border-color: rgba(0,0,0,0.15);
    color: var(--primary);
}

/* Floating Features Bar */
.features-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 30;
    margin-bottom: 2rem;
}

.features-bar {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 130px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
    color: var(--primary); /* Theme amber/gold color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.0);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), #d97706);
    color: white;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.feature-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-sans);
}

.feature-subtitle {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .features-bar {
        padding: 1rem;
        gap: 1rem;
    }
    .features-wrapper {
        margin-top: -30px;
    }
    .feature-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    .feature-title {
        font-size: 0.7rem;
    }
    .feature-subtitle {
        font-size: 0.65rem;
    }
    .feature-item {
        min-width: 45%;
    }
    .hero-slider-section .swiper-slide img {
        height: auto !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    .wcu-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .wcu-heading-responsive {
        font-size: 1.75rem !important;
    }
    @media (max-width: 480px) {
        .wcu-heading-responsive {
            font-size: 1.4rem !important;
        }
    }
    .wcu-content .divider {
        margin-left: auto;
        margin-right: auto;
    }
    .section-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .section-header .divider {
        margin-left: auto;
        margin-right: auto;
    }
    .sacred-title {
        font-size: 1.7rem !important;
        white-space: nowrap;
    }
}

/* Centered Why Choose Us */
.why-choose-us-centered {
    padding: 6rem 0;
    background-color: var(--body-bg);
    text-align: center;
}

.why-choose-us-centered .subtitle-pill {
    margin: 0 auto 1rem;
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 700;
}

.why-choose-us-centered h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.why-choose-us-centered .desc {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.wcu-grid-centered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wcu-card-centered {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(217, 119, 6, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wcu-card-centered:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.1);
    border-color: rgba(217, 119, 6, 0.3);
}

.wcu-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wcu-card-icon i {
    width: 28px;
    height: 28px;
}

.wcu-card-centered h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.wcu-card-centered p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .wcu-grid-centered {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wcu-grid-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .why-choose-us-centered h2 {
        font-size: 2.25rem;
    }
    .wcu-card-centered {
        padding: 1.5rem 1rem;
    }
    .wcu-card-centered h3 {
        font-size: 1.1rem;
    }
    .wcu-card-centered p {
        font-size: 0.85rem;
    }
    .wcu-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
}

.wcu-card-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wcu-card-centered:hover .wcu-card-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, var(--primary), #d97706);
    color: white;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

/* Premium FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #fcfbfa; /* Warm light premium bg */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(217,119,6,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.08);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-header:hover { 
    background: #fdfbf7; 
}

.faq-header h3 {
    margin: 0; 
    font-size: 1.15rem; 
    font-family: var(--font-serif);
    color: var(--text); 
    transition: color 0.3s ease;
}

.faq-card.active .faq-header h3 { 
    color: var(--primary); 
}

.faq-icon {
    color: var(--primary); 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.1);
    flex-shrink: 0;
}

.faq-card.active .faq-icon { 
    transform: rotate(180deg); 
    background: var(--primary);
    color: white;
}

.faq-body {
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease-in-out;
}

.faq-content {
    padding: 0 2rem 1.5rem; 
    color: #666; 
    line-height: 1.6;
}

/* Instagram Section */
.insta-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: block;
}
.insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.insta-card:hover img {
    transform: scale(1.08);
}
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 2.5rem;
}
.insta-card:hover .insta-overlay {
    opacity: 1;
}

/* Massive Instagram Button */
.btn-instagram-massive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 20px 60px;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 99px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2rem;
}
.btn-instagram-massive:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.6);
    color: white;
}
.btn-instagram-massive i {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .btn-instagram-massive {
        padding: 12px 24px;
        font-size: 1.1rem;
        gap: 0.5rem;
        white-space: nowrap;
        margin-top: 1rem;
    }
    .btn-instagram-massive i {
        font-size: 1.4rem;
    }
}

/* Pre-Footer CTA Text Visibility Fix */
.pre-footer-cta h2,
.pre-footer-cta p {
    color: var(--white) !important;
}
.pre-footer-cta .subtitle-pill {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}
.pre-footer-cta .heading-accent {
    color: var(--primary-light, #ffd700) !important; /* brighter gold for dark bg */
}

/* New Instagram Section Layout */
.new-insta-layout {
    background: linear-gradient(135deg, #fffcf9, #fbf2eb);
    border-top: 2px solid #e0c885;
    border-bottom: 2px solid #e0c885;
    padding: 3rem 0;
    text-align: center;
}

.new-insta-layout .insta-large-icon i {
    font-size: 3.5rem;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.new-insta-layout .insta-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #4a3623;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.new-insta-layout .insta-subtext {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #5c4b3a;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .new-insta-layout .insta-heading {
        font-size: 1.5rem;
    }
    .new-insta-layout .insta-subtext {
        font-size: 1rem;
    }
}

/* Made in Bharat Badge */
.made-in-bharat-badge {
    display: flex;
    justify-content: center;
    margin: -2rem auto 4rem auto;
    position: relative;
    z-index: 50;
}

.mib-starburst {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, #ffea79 0%, #ebb416 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15), inset 0 0 0 3px rgba(255,255,255,0.4);
    text-align: center;
    color: #1a1a1a;
    border: 4px solid #fff;
}

.mib-starburst::before {
    content: "";
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border: 2px dashed #D4AF37;
    border-radius: 50%;
    z-index: -1;
    animation: spin 30s linear infinite;
}

.mib-title {
    font-weight: 900;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.1;
    margin-top: 2px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.mib-curved-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: 1;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Made in Bharat Banner Layout */
.made-in-bharat-banner {
    background: var(--white);
    border: 1px solid var(--amber-200);
    border-radius: 100px;
    padding: 1rem 3rem 1rem 1rem;
    width: max-content;
    max-width: 95%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.mib-text {
    text-align: left;
}

@media (max-width: 576px) {
    .made-in-bharat-banner {
        flex-direction: column;
        border-radius: 20px;
        padding: 1.5rem 1rem;
        gap: 1rem;
        width: 100%;
    }
    .mib-text {
        text-align: center !important;
    }
}


/* Mobile Catalogue Button */
.btn-catalogue-mobile {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}
@media (min-width: 768px) {
    .btn-catalogue-mobile {
        display: none !important;
    }
}

/* =========================================
   Announcement Bar
   ========================================= */
.announcement-bar {
    width: 100%;
    background: linear-gradient(90deg, #d97706, #b45309, #f59e0b, #d97706);
    background-size: 300% auto;
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 50; /* Above normal content, but lower than sticky header to flow nicely */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.announcement-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 25s linear infinite;
    width: max-content;
}

.announcement-content:hover {
    animation-play-state: paused;
}

.announcement-item {
    padding: 0 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    font-family: var(--font-sans);
}

@media (max-width: 768px) {
    .announcement-item {
        font-size: 0.8rem;
        padding: 0 20px;
    }
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Specific Catalogue Buttons */
.btn-eco {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4) !important;
}
.btn-eco:hover {
    box-shadow: 0 14px 30px rgba(16, 185, 129, 0.6) !important;
}

.btn-solapur {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    box-shadow: 0 10px 20px -5px rgba(239, 68, 68, 0.4) !important;
}
.btn-solapur:hover {
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.6) !important;
}
