/* ===================================
   ROOT VARIABLES & CORE DESING
   =================================== */

:root {
    /* Premium Color Palette */
    --primary-color: #7e1518;
    --primary-dark: #6b0a0e;
    --primary-light: #f9e5e6;
    --secondary-color: #d4af37;
    --accent-gold: #ffcc00;
    --accent-green: #2a9d8f;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0e1cf;
    --medium-gray: #6c757d;
    --dark-gray: #4d4d4d;
    --black: #1a1a1a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7e1518 0%, #6b0a0e 100%);
    --gradient-secondary: linear-gradient(135deg, #7fb72e 0%, rgb(130, 148, 8) 100%);
    --gradient-tertiary: linear-gradient(135deg, #7e1518 0%, #7fb72e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4a261 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

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

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

/* NAVIGATION BAR - TRADITIONAL LUXURY */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fdfbf7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 2px solid var(--secondary-color);
}

.navbar.scrolled {
    background: #fdfbf7;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.logo-img {
    height: 115px;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.desktop-contact-row {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-right: 1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    justify-content: flex-end;
}

.desktop-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.desktop-contact-item i {
    color: var(--primary-color);
}

.desktop-contact-item a {
    color: inherit;
    transition: color 0.3s ease;
    text-decoration: none;
}

.desktop-contact-item a:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .desktop-contact-row {
        display: none;
    }

    .nav-right {
        align-items: center;
        width: 100%;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-contact {
    display: none;
}

.nav-link {
    color: var(--dark-gray);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

/* Modern minimal expanding underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    z-index: 1002;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-toggle:hover span {
    background: var(--secondary-color);
}

/* ===================================
   HERO BOUTIQUE SECTION
   =================================== */

/* ===================================
   HERO ENTERPRISE SECTION 
   =================================== */
.hero-enterprise {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fcfaf7;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-enterprise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(126, 21, 24, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-enterprise-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-enterprise-content {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
    text-align: left;
}

.hero-enterprise-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-enterprise-subtitle::before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--secondary-color);
}

.hero-enterprise-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-family: var(--font-secondary);
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-enterprise-title em {
    font-style: normal;
    color: var(--primary-dark);
}

.hero-enterprise-desc {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-enterprise-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn-solid {
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
}

.hero-btn-solid:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.hero-btn-outline {
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 4px;
}

.hero-btn-outline:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Visual Side */
.hero-enterprise-visual {
    flex: 1 1 50%;
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-main {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 65%;
    height: 85%;
    border-radius: 20px 20px 100px 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-image-main:hover img {
    transform: scale(1.05);
}

.hero-image-accent {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 45%;
    height: 55%;
    border-radius: 20px 100px 20px 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    border: 8px solid #fcfaf7;
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stamp-wrapper {
    position: absolute;
    top: 15%;
    right: 11%;
    z-index: 4;
    width: 120px;
    height: 120px;
    animation: rotate 15s linear infinite;
}

.hero-stamp {
    width: 100%;
    height: 100%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .hero-enterprise-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-enterprise-content {
        flex: none;
        width: 100%;
        padding-right: 0;
        align-items: center;
    }

    .hero-enterprise-subtitle::before {
        display: none;
    }

    .hero-enterprise-desc {
        max-width: 100%;
    }

    .hero-enterprise-visual {
        flex: none;
        width: 100%;
        height: 450px;
        display: block;
        margin-top: 1rem;
    }

    .hero-image-main {
        width: 80%;
        height: 95%;
        left: 0;
        top: 0;
    }

    .hero-image-accent {
        width: 50%;
        height: 50%;
        bottom: 0;
        right: 0;
    }

    .hero-stamp-wrapper {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .hero-enterprise {
        padding: 180px 0 40px;
    }

    .hero-enterprise-visual {
        height: 380px;
        position: relative;
    }

    .hero-image-main {
        width: 75%;
        height: 95%;
        left: 0;
        top: 0;
        border-radius: 15px 15px 60px 15px;
    }

    .hero-image-accent {
        display: block;
        width: 45%;
        height: 55%;
        bottom: 0;
        right: 5%;
        border-width: 6px;
        border-radius: 15px 50px 15px 15px;
    }

    .hero-enterprise-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-enterprise-actions a {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .hero-stamp-wrapper {
        width: 80px;
        height: 80px;
        top: 10px;
        right: 30px;
    }
}

/* SECTIONS & CONTAINER */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--off-white);
    border: 2px dashed var(--secondary-color);
    border-radius: 50px;
}

.section-subtitle img {
    height: 24px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
}

/* ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-content .section-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-se);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    font-family: var(--font-primary);
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
}

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

.about-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.about-btn:hover span.arrow {
    transform: translateX(5px);
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* min-height: 500px; */
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.03);
}

/* Trust Points Strip */
.trust-strip-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

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

.trust-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.trust-text h4 {
    font-size: 1.15rem;
    margin: 0 0 5px;
    font-family: var(--font-primary);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 600;
}

.trust-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--medium-gray);
    font-family: var(--font-primary);
    line-height: 1.2;
}

/* Mission & Vision Section */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 0 auto;
}

.mv-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    line-height: 1;
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-se);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
}

.mv-desc {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Objectives & Values */
.objectives-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.objectives-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.objective-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.objective-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.objective-card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.objective-card:hover .objective-card-icon {
    background: var(--primary-color);
    color: var(--white);
}

.objective-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    font-family: var(--font-primary);
}

.objective-card-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.objectives-content-block {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objectives-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-se);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.objectives-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.objectives-points-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.objectives-points-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* How it Works Section (Dark) */
.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-item {
    position: relative;
    padding: 3rem 2rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 106, 188, 0.3);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--white) !important;
    font-family: var(--font-primary);
}

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

/* Achievements & Certifications Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card-new {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.achievement-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.achievement-image-wrapper {
    height: 380px;
    background: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.achievement-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.achievement-card-new:hover .achievement-img {
    transform: scale(1.05);
}

.achievement-card-new.gallery-item img {
    height: 100% !important;
    width: auto !important;
    max-height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

.achievement-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.achievement-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
}

.achievement-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

/* Plant Photo Gallery Section */
.plant-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.plant-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 280px;
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.plant-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

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

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

/* Hover Zoom Overlay */
.plant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 106, 188, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plant-card:hover .plant-overlay {
    opacity: 1;
}

.plant-zoom-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.plant-card:hover .plant-zoom-icon {
    transform: scale(1);
}


/* ===================================
   PRODUCTS SHOWCASE SECTION
   =================================== */
.products-showcase .container {
    max-width: 100%;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    transition: transform 0.4s ease;
}

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

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.showcase-card:hover .showcase-bg {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.showcase-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 1.2rem; */
}

.showcase-content h3 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-primary);
    letter-spacing: -0.5px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.showcase-btn-yellow {
    border-color: #FFB300;
    color: #FFB300;
}

.showcase-card:hover .showcase-btn {
    background: var(--white);
    color: var(--black);
    transform: translateX(5px);
}

.showcase-card:hover .showcase-btn-yellow {
    background: #FFB300;
    color: var(--black);
}

/* ===================================
   MOVING TEXT SECTION
   =================================== */

.moving-text-section {
    padding: 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.moving-text-wrapper {
    padding: 0;
    margin: 0;
}

.tm-marquee-parent {
    overflow: hidden;
    width: 100%;
    padding: 25px 0;
}

.tm-marquee-repeater {
    position: relative;
    --tm-marquee-animation-duration: 40s;
    --gap: 0px;
    display: flex;
    user-select: none;
    gap: var(--gap);
}

.tm-marquee-repeater .tm-marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--tm-marquee-animation-duration) linear infinite;
}

.tm-marquee-repeater .text {
    position: relative;
    color: var(--white);
    font-size: 24px;
    line-height: 1.3;
    padding: 0 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font-primary);
    gap: 15px;
}

.tm-marquee-repeater .text i {
    font-size: 20px;
    color: var(--white);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* ===================================
   TESTIMONIALS (MINIMAL)
   =================================== */
.testimonials-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-minimal-card {
    text-align: center;
    padding: 2rem;
}

.testi-stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testi-quote {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--black);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testi-author {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    max-width: 1200px;
}

/* ===================================
   SAREE VARIETIES SECTION
   =================================== */
.varieties-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.variety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.variety-card {
    position: relative;
    border-radius: 4px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #000;
}

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

.variety-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.variety-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.85;
}

.variety-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.variety-card:hover .variety-img {
    transform: scale(1.1);
    opacity: 0.6;
}

.variety-content {
    position: relative;
    z-index: 3;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.variety-card:hover .variety-content {
    transform: translateY(0);
}

.variety-content h3 {
    font-family: var(--font-secondary);
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.variety-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.1s;
}

.variety-card:hover .variety-content p {
    opacity: 1;
    transform: translateY(0);
}

.variety-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0;
    border-top: none;
    margin-top: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition-delay: 0.2s;
}

.variety-card:hover .variety-btn {
    opacity: 1;
    transform: translateY(0);
}

.variety-btn:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.015);
}

.variety-btn i {
    transition: transform 0.3s ease;
}

.variety-btn:hover i {
    transform: translateX(4px);
}

/* ===================================
   CONTACT INFO SECTION (CONTACT PAGE)
   =================================== */
.cta-minimal-section {
    padding-bottom: 80px;
}

.cta-minimal-wrapper {
    background-color: var(--primary-dark);
    padding: 6rem 2rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.cta-minimal-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-minimal-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-minimal-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-minimal-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-minimal-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-minimal-actions {
    display: flex;
    gap: 1.5rem;
}

.boutique-btn-solid {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.boutique-btn-outline {
    display: inline-block;
    padding: 13px 35px;
    background-color: transparent;
    color: var(--secondary-color);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--secondary-color);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.boutique-btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
}

@media (max-width: 991px) {
    .testimonials-minimal-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .cta-minimal-wrapper {
        padding: 4rem 2rem;
    }

    .cta-minimal-title {
        font-size: 2.2rem;
    }

    .cta-minimal-actions {
        flex-direction: column;
        align-items: center;
    }

    .boutique-btn-solid,
    .boutique-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer-boutique {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 5rem;
    margin-top: 0;
    border-top: 2px solid var(--secondary-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 150px;
    object-fit: contain;
    background-color: #ffffff;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.footer-logo-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.footer-logo-text {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 2px;
}

.footer-desc {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dual-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact-list i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-contact-list a:hover {
    color: var(--secondary-color);
}

.footer-btn {
    margin-top: 2rem;
    display: inline-block;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

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

.developer-credit {
    margin: 0 !important;
}

.developer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: var(--white);
}

/* ===================================
   UTILITIES
   =================================== */
.mb-25 {
    margin-bottom: 25px;
}

.mb-5 {
    margin-bottom: 5px;
}

.display-inline-block {
    display: inline-block;
}

.justify-center {
    justify-content: center;
}

/* ===================================
   CONTACT PAGE CSS
   =================================== */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    padding-top: 120px;
}

.page-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: var(--secondary-color);
}

.breadcrumb-current {
    color: var(--secondary-color);
}

.contact-boutique-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: start;
}

.contact-boutique-info {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 8px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2)
}

.contact-info-header {
    margin-bottom: 3rem;
}

.contact-info-header .info-title {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-info-header .info-desc {
    color: var(--black);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-decoration: none;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon {
    background: var(--primary-dark);
    color: var(--secondary-color);
}

.detail-text h5 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.detail-text p,
.detail-text a {
    color: var(--black);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.detail-text a:hover {
    color: var(--primary-dark);
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 45px;
    height: 45px;
    background: var(--primary-dark);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-circle:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    /* margin-bottom: 1.5rem; */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--black);
}

.form-control {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.btn-submit {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.btn-loader {
    display: none;
}

/* FORM VALIDATION & MESSAGES */
.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.error-message-box {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.form-message-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}



/* ===================================
   FLOATING BUTTONS
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.whatsapp-float i {
    text-decoration: none;
    color: white;
    font-size: 28px;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(107, 10, 14, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #a11b20 0%, #7e1518 100%);
    box-shadow: 0 6px 20px rgba(107, 10, 14, 0.4);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 991px) {
    .nav-container {
        padding: 0 20px;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .contact-boutique-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr;
    }

    .dual-column {
        grid-template-columns: 1fr;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    /* Mobile Nav Styles */
    .desktop-only {
        display: none !important;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .nav-menu {
        position: fixed;
        top: 118px;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: calc(100vh - 118px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2.5rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-normal);
        overflow-y: auto;
        gap: 20px;
        border-left: 1px solid var(--secondary-color);
        z-index: 1000;
    }

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

    .nav-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dark-gray);
        font-size: 0.95rem;
    }

    .mobile-contact-item a {
        color: var(--dark-gray);
        font-weight: 500;
        transition: var(--transition-fast);
    }

    .mobile-contact-item a:hover {
        color: var(--primary-color);
    }

    .mobile-contact-item i {
        color: var(--secondary-color);
        width: 20px;
        text-align: center;
        font-size: 1.1rem;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 0.2rem 0;
        justify-content: space-between;
        border-radius: 0;
        font-size: 1.1rem;
        color: var(--black);
    }

    .nav-link::before,
    .nav-link::after {
        display: none !important;
    }

    .nav-link.active,
    .nav-link:hover {
        color: var(--secondary-color);
        background: transparent;
        box-shadow: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: transparent;
        border-color: transparent;
    }

    .menu-toggle.active span {
        background: var(--secondary-color);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8.4px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8.4px) rotate(-45deg);
    }
}

/* ===================================
   CATEGORIES SECTION
   =================================== */
.categories-section {
    padding-top: 4rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 1rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 120px 120px 8px 8px;
    padding: 12px;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(126, 21, 24, 0.15);
    border-color: var(--secondary-color);
}

.category-img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 110px 110px 4px 4px;
    background-color: #fcfcfc;
}

.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.category-info {
    padding: 24px 10px 14px;
    text-align: center;
    background-color: var(--white);
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-info h3 {
    color: var(--primary-dark);
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.8px;
}

.explore-text {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 1;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.category-card:hover .explore-text {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 576px) {
    .categories-grid {
        gap: 12px;
    }

    .category-card {
        border-radius: 80px 80px 8px 8px;
        padding: 8px;
    }

    .category-img-wrapper {
        border-radius: 72px 72px 4px 4px;
    }

    .category-info {
        padding: 16px 8px 10px;
    }

    .category-info h3 {
        font-size: 1.2rem;
    }

    .explore-text {
        font-size: 0.75rem;
    }
}

/* ===================================
   DARK SEPARATOR
   =================================== */
.dark-separator {
    width: 100%;
    height: 5px;
    background-color: var(--primary-dark);
    border-bottom: 2px solid var(--secondary-color);
}

/* ===================================
   SAREE VARIETIES SECTION (FABRIC SWATCHES)
   =================================== */
.varieties-section {
    padding: 5rem 0;
}

.varieties-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px 20px;
    margin-top: 2rem;
}

.swatch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.swatch-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 8px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background-color: var(--white);
    margin-bottom: 15px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swatch-img-wrapper::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    transition: transform 0.8s ease;
    z-index: 1;
}

.swatch-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    background-color: #fcfcfc;
}

.swatch-card:hover .swatch-img-wrapper {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
    background-color: #fdfbf7;
}

.swatch-card:hover .swatch-img-wrapper::before {
    transform: rotate(45deg);
    border-color: var(--secondary-color);
}

.swatch-card:hover .swatch-img-wrapper img {
    transform: scale(1.05);
}

.swatch-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.swatch-card:hover h4 {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .varieties-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 991px) {
    .varieties-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px 15px;
    }

    .swatch-img-wrapper {
        width: 110px;
        height: 110px;
        padding: 6px;
    }
}

@media (max-width: 768px) {
    .varieties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
    }

    .swatch-img-wrapper {
        width: 90px;
        height: 90px;
        padding: 5px;
    }

    .swatch-card h4 {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .varieties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   PRICE PROMISE SECTION
   =================================== */
/* ===================================
   LUXURY PRICE PROMISE SECTION
   =================================== */
.price-promise-luxury {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #3a080a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.price-promise-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='rgba(212, 175, 55, 0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.luxury-promise-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    gap: 4rem;
}

.promise-text-content {
    flex: 1;
    color: var(--white);
    padding-right: 2rem;
}

.promise-subtitle {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.promise-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.promise-divider {
    width: 80px;
    height: 2px;
    background: var(--secondary-color);
    margin-bottom: 2rem;
}

.promise-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.promise-signature {
    font-family: 'Great Vibes', cursive, var(--font-secondary);
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.promise-visual-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promise-image-frame {
    width: 380px;
    height: 520px;
    border-radius: 200px 200px 0 0;
    border: 2px solid rgba(212, 175, 55, 0.6);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
}

.promise-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 190px 190px 0 0;
}

.promise-stamp-overlay {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    animation: spinSlow 30s linear infinite;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    z-index: 3;
}

.promise-stamp-overlay img {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .luxury-promise-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .promise-text-content {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .promise-stamp-overlay {
        left: 50%;
        transform: translateX(-50%);
        bottom: -60px;
        animation: spinSlowMobile 30s linear infinite;
    }
}

@keyframes spinSlowMobile {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@media (max-width: 991px) {
    .promise-container {
        flex-direction: column;
    }

    .promise-content {
        order: 1;
        padding: 4rem 1rem 2rem 1rem;
    }

    .promise-image {
        order: 2;
        width: 100%;
        padding-top: 1rem;
    }

    .promise-image-inner {
        width: 90%;
        height: 400px;
    }

    .promise-stamp {
        width: 220px;
        height: 220px;
    }
}

/* ===================================
   WHY CHOOSE US (MINIMALIST)
   =================================== */
.why-choose-minimal {
    padding: 6rem 0;
}

.minimal-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 3rem;
}

.minimal-feature-item {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    background: transparent;
    transition: transform 0.3s ease;
}

.minimal-feature-item:hover {
    transform: translateY(-5px);
}

.minimal-feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
}

.feature-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    color: var(--secondary-color);
    opacity: 0.15;
    font-weight: 400;
    margin-bottom: -1.5rem;
    /* Overlap slightly with heading */
    position: relative;
    z-index: 1;
    line-height: 1;
}

.minimal-feature-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.minimal-feature-item p {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 991px) {
    .minimal-features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===================================
   BOUTIQUE SECTION HEADERS
   =================================== */
.boutique-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3.5rem;
    text-align: center;
}

.boutique-section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    /* text-transform: uppercase; */
    /* letter-spacing: 0.15em; */
    margin: 1rem 0;
    font-weight: 500;
}

.boutique-ornament {
    max-width: 180px;
    width: 80%;
    height: auto;
    /* opacity: 0.8; */
}

.bottom-ornament {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .boutique-section-header {
        margin-bottom: 2.5rem;
    }

    .boutique-section-title {
        margin: 0.8rem 0;
        /* letter-spacing: 0.1em; */
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.testimonial-minimal-card {
    padding: 2.5rem 2rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-minimal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.testi-stars {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testi-quote {
    font-family: var(--font-primary);
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testi-author {
    font-family: var(--font-secondary);
    color: var(--primary-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    display: inline-block;
}

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

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

/* ===================================
   CTA SECTION
   =================================== */
.cta-minimal-section {
    padding: 60px 0;
    background-image: url('assets/Saree/Kanjivaram-sarees.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    border-top: 2px solid var(--secondary-color);
}

.cta-minimal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(126, 21, 24, 0.90);
    z-index: 1;
}

.cta-minimal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.cta-minimal-frame {
    border: 2px solid var(--secondary-color);
    padding: 3rem 2rem;
    position: relative;
    background: rgba(126, 21, 24, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.cta-minimal-frame::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    pointer-events: none;
}

.cta-minimal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.cta-minimal-title {
    font-family: var(--font-secondary);
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.cta-minimal-title em {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 400;
}

.cta-minimal-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.boutique-btn-solid,
.boutique-btn-outline {
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
}

.boutique-btn-solid {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    border: 1px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.boutique-btn-solid:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.boutique-btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.boutique-btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===================================
   NEW ABOUT PAGE REDESIGN
   =================================== */
.about-heritage {
    padding: 60px 0;
}

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

.heritage-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.mission-vision-wrapper {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mv-box {
    background-color: #f9f9f9;
    border-left: 3px solid var(--secondary-color);
    padding: 1.5rem;
    flex: 1;
}

.mv-title {
    font-family: var(--font-secondary);
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.mv-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.heritage-visual {
    width: 85%;
    margin: 0 auto;
}

.heritage-image-frame {
    border: 2px solid var(--secondary-color);

    padding: 1.5rem;
    position: relative;
    background-color: var(--white);
}

.heritage-image-frame img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.craft-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
}

.craft-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.craft-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.craft-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.craft-desc {
    color: var(--text-light);
    line-height: 1.6;
}



.premium-trust-section {
    background-color: var(--primary-dark);
    padding: 60px 0;
    color: var(--white);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.premium-trust-card {
    padding: 1.5rem;
    background: transparent;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

/* Partition line */
.premium-trust-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(212, 175, 55, 0.3);
}

.premium-trust-card:hover {
    transform: translateY(-5px);
}

.trust-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.trust-title {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trust-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

/* ===================================
   NEW SAREE PAGE REDESIGN
   =================================== */
.collection-nav-wrapper {
    background: rgba(253, 251, 247, 0.85);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 70px;
    /* Accounts for navbar */
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.collection-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.collection-nav::-webkit-scrollbar {
    display: none;
}

.collection-nav li a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    opacity: 0.7;
}

.collection-nav li a:hover,
.collection-nav li a.active {
    opacity: 1;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--secondary-color);
}

.collection-showcase {
    padding: 80px 0;
}

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

.showcase-wrapper.reverse .showcase-content {
    order: 1;
}

.showcase-wrapper.reverse .showcase-visual {
    order: 2;
}

.showcase-visual {
    position: relative;
    padding: 1.5rem;
    height: 600px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.showcase-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 1px solid var(--secondary-color);
    border-radius: 120px 120px 8px 8px;
    z-index: 0;
}

.showcase-wrapper.reverse .showcase-visual::before {
    left: 3rem;
    right: 0;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: relative;
    z-index: 1;
    border-radius: 120px 120px 8px 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.showcase-subtitle {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.showcase-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.showcase-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.showcase-bullet {
    color: var(--secondary-color);
    font-size: 0.6rem;
    margin-top: 5px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================================
   LUXURY FEATURE LISTS
   =================================== */
.boutique-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.boutique-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.boutique-feature-item:hover {
    transform: translateX(5px);
    border-color: rgba(0, 0, 0, 0.1);
}

.boutique-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.boutique-feature-text {
    font-family: var(--font-primary);
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 991px) {

    .heritage-grid,
    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .heritage-visual {
        width: 100%;
    }

    .showcase-wrapper.reverse .showcase-content {
        order: 2;
    }

    .showcase-wrapper.reverse .showcase-visual {
        order: 1;
    }

    .showcase-visual {
        height: 100%;
        width: 100%;
    }

    /* .showcase-visual::before,
    .showcase-wrapper.reverse .showcase-visual::before {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    } */

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

    .premium-trust-card:nth-child(odd)::after {
        display: block;
    }

    .premium-trust-card:nth-child(even)::after {
        display: none;
    }

    .premium-trust-card:nth-child(1),
    .premium-trust-card:nth-child(2) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }

    .collection-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .cta-minimal-section {
        background-attachment: scroll;
        padding: 30px 0;
    }

    .cta-minimal-frame {
        padding: 3rem 1.5rem;
    }

    .mission-vision-wrapper {
        flex-direction: column;
    }

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

    .premium-trust-grid {
        grid-template-columns: 1fr;
    }

    .premium-trust-card::after {
        display: none !important;
    }

    .premium-trust-card:not(:last-child) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }

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

@media (max-width: 576px) {
    .cta-minimal-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .boutique-btn-solid,
    .boutique-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   WEDDING COLLECTION SLIDER
   =================================== */
.wedding-section {
    padding: 5rem 0;
}

.wedding-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.wedding-slider-wrapper {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 700px;
}

.wedding-card {
    flex: 1;
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s;
    cursor: pointer;
}

.wedding-card.active {
    flex: 4;
}

@media (max-width: 768px) {
    .wedding-slider-wrapper {
        height: 350px;
    }

    .wedding-card.active {
        flex: 6;
    }
}

.wedding-img-wrapper {
    width: 100%;
    height: 100%;
}

.wedding-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wedding-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.wedding-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.1s;
}

.wedding-card.active .wedding-info {
    opacity: 1;
    transform: translateY(0);
}

.wedding-card:not(.active) .wedding-img-wrapper img {
    filter: brightness(0.7);
}

.wedding-card.active .wedding-img-wrapper img {
    filter: brightness(1);
}

.wedding-info h3 {
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.wedding-explore {
    color: var(--secondary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 10px;
}

.wedding-card.active:hover .wedding-img-wrapper img {
    transform: scale(1.05);
}

.wedding-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.wedding-slider-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 991px) {
    .wedding-slide {
        flex: 0 0 calc(50% - 12px);
    }

    .wedding-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .wedding-slide {
        flex: 0 0 100%;
    }

    .prev-btn {
        left: 5px;
        width: 40px;
        height: 40px;
    }

    .next-btn {
        right: 5px;
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   LUXURY FEATURES SECTION
   =================================== */
.luxury-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.luxury-feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.luxury-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.luxury-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-img {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.luxury-feature-card h3 {
    font-family: var(--font-secondary);
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.luxury-feature-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================================
   LUXURY TESTIMONIALS SECTION
   =================================== */
.luxury-testimonials-section {
    background: #fdfbf7;
}

.luxury-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.luxury-testimonial-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(126, 21, 24, 0.2);
    /* Primary color with 0.1 opacity */
    transition: transform 0.4s ease;
}

.luxury-testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-mark {
    font-family: 'Great Vibes', cursive, var(--font-secondary);
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.3);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.luxury-testi-text {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    color: var(--text-color);
}

.luxury-testi-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.luxury-testi-author h4 {
    font-family: var(--font-secondary);
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.luxury-testi-author span {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {

    .luxury-features-grid,
    .luxury-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CTA BANNER SECTION
   =================================== */
.cta-banner {
    background-color: var(--primary-color);
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-banner-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: clamp(2rem, 4vw, 2rem);
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-title em {
    font-family: var(--font-secondary);
    font-style: italic;
    font-weight: 400;
}

.cta-banner-btn {
    background-color: transparent;
    color: var(--white);
    padding: 18px 50px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-block;
    text-decoration: none;
}

.cta-banner-btn:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   HOME PAGE WEDDING SLIDER (CAROUSEL)
   =================================== */
.home-wedding-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.home-wedding-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.home-wedding-slide {
    flex: 0 0 calc(33.333% - 14px);
    /* 3 items per view minus gap */
}

@media (max-width: 992px) {
    .home-wedding-slide {
        flex: 0 0 calc(50% - 10px);
        /* 2 items per view */
    }
}

@media (max-width: 576px) {
    .home-wedding-slide {
        flex: 0 0 100%;
        /* 1 item per view */
    }
}

.home-wedding-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.home-wedding-img-wrapper {
    width: 100%;
    height: 100%;
}

.home-wedding-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.home-wedding-card:hover .home-wedding-img-wrapper img {
    transform: scale(1.05);
}

.home-wedding-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
}

.home-wedding-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 2;
    text-align: center;
}

.home-wedding-info h3 {
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.home-wedding-explore {
    color: var(--secondary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 10px;
}

.home-wedding-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.home-wedding-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.home-wedding-btn.prev-btn {
    left: 10px;
}

.home-wedding-btn.next-btn {
    right: 10px;
}

/* ===================================
   CONTACT PAGE REDESIGN
   =================================== */
.contact-redesign {
    background-color: var(--white);
}

.contact-section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 1rem auto 3rem;
    line-height: 1.6;
}

.contact-redesign-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Left dark info panel */
.contact-info-panel {
    background: var(--primary-dark);
    padding: 3rem 2.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cip-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin: 0;
}

.cip-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cip-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.cip-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 1rem;
}

.cip-text h5 {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 0.3rem 0;
}

.cip-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.cip-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cip-text a:hover {
    color: var(--secondary-color);
}

.cip-socials {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cip-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cip-social-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Right form panel */
.contact-form-panel {
    background: var(--white);
    padding: 3rem 2.5rem;
}

.cfp-header {
    margin-bottom: 2rem;
}

.cfp-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 400;
    margin: 0 0 0.5rem 0;
}

.cfp-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Map section */
.contact-map-section {
    margin-top: 0;
}

.map-wrapper {
    width: 100%;
    line-height: 0;
    border-top: 4px solid var(--secondary-color);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.map-wrapper iframe:hover {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-redesign-wrapper {
        grid-template-columns: 1fr;
    }

    .cip-socials {
        margin-top: 1rem;
    }
}