/* ===================================
   Sri Amirtha Silks - Premium Stylesheet
   Theme: Traditional South Indian Luxury
   =================================== */

/* CSS Variables - Color Palette */
:root {
    --maroon: #7B001C;
    --gold: #C6A75E;
    --cream: #F8F1E7;
    --teal: #0F7C82;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --light-gray: #F5F5F5;
    --medium-gray: #888888;
    --dark-gray: #333333;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(123, 0, 28, 0.1);
    --shadow-medium: 0 8px 30px rgba(123, 0, 28, 0.15);
    --shadow-strong: 0 12px 40px rgba(123, 0, 28, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button, input, textarea, select {
    font-family: inherit;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--maroon);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Background Colors */
.bg-cream {
    background-color: var(--cream);
}

.bg-maroon {
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
    color: var(--white);
}

.bg-maroon * {
    color: var(--white);
}

/* Text Alignment */
.text-center {
    text-align: center;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-subtitle.gold {
    color: var(--gold);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--maroon);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--maroon) 100%);
    margin: 20px auto;
    border-radius: 5px;
}

.section-divider.left {
    margin: 20px 0;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.logo-text h1 {
    font-size: 1.4rem;
    color: var(--maroon);
    margin: 0;
}

.logo-text .tagline {
    font-size: 0.75rem;
    color: var(--gold);
    font-style: italic;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--maroon);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.whatsapp-nav-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.whatsapp-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.whatsapp-nav-btn::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--maroon);
    margin: 3px 0;
    transition: var(--transition-smooth);
    border-radius: 3px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('./hero.png') center/cover;
    background: url('./hero.avif') center/cover;
    background-attachment: fixed;
    margin-top: 90px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-logo-box {
    margin-bottom: 30px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: var(--shadow-medium);
    margin: 0 auto;
    object-fit: cover;
}

.hero-title {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(123, 0, 28, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1.2s ease-in 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 2rem;
    color: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* ===================================
   CATEGORY SLIDER
   =================================== */

.category-slider-section {
    background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 50%, #fdfbf7 100%);
    overflow: hidden;
    position: relative;
}

.category-slider-section .section-description {
    color: var(--medium-gray);
    font-size: 1rem;
    margin-top: 10px;
}

.category-slider-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 0 80px;
}

.category-slider {
    overflow: hidden;
    padding: 10px 0 40px;
}

.category-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card {
    flex: 0 0 calc(25% - 19px);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(123, 0, 28, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--maroon));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(123, 0, 28, 0.2);
}

.category-card:hover::before {
    opacity: 1;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image-wrapper img {
    transform: scale(1.12);
}

.category-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, 
        rgba(26, 26, 26, 0.85) 0%, 
        rgba(26, 26, 26, 0.4) 50%,
        transparent 100%);
    transition: height 0.4s ease;
}

.category-card:hover .category-gradient {
    height: 60%;
    background: linear-gradient(to top, 
        rgba(123, 0, 28, 0.9) 0%, 
        rgba(123, 0, 28, 0.5) 50%,
        transparent 100%);
}

.category-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-title h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    flex: 1;
}

.category-card:hover .category-title h3 {
    color: var(--gold);
    transform: translateX(5px);
}

.arrow-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(198, 167, 94, 0.4);
}

.category-card:hover .arrow-icon {
    background: var(--white);
    color: var(--maroon);
    transform: translateX(5px) scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 6px 25px rgba(123, 0, 28, 0.12);
}

.slider-nav:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #b89651 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 35px rgba(198, 167, 94, 0.35);
}

.slider-prev {
    left: 5px;
}

.slider-next {
    right: 5px;
}

.slider-nav i {
    font-size: 1.4rem;
    color: var(--maroon);
    transition: all 0.3s ease;
}

.slider-nav:hover i {
    color: var(--white);
}

.slider-nav:disabled,
.slider-nav[style*="opacity: 0.5"] {
    cursor: not-allowed;
    opacity: 0.4 !important;
    pointer-events: none;
}

.no-categories {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.1rem;
    padding: 60px 20px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .category-card {
        flex: 0 0 calc(25% - 19px);
    }
}

@media (max-width: 1200px) {
    .category-card {
        flex: 0 0 calc(33.333% - 17px);
    }
    
    .category-image-wrapper {
        height: 320px;
    }
    
    .category-title h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .category-slider-wrapper {
        padding: 0 70px;
    }
    
    .category-card {
        flex: 0 0 calc(50% - 13px);
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .category-slider-wrapper {
        padding: 0 60px;
    }
    
    .category-card {
        flex: 0 0 calc(100% - 0px);
    }
    
    .category-image-wrapper {
        height: 400px;
    }
    
    .category-title h3 {
        font-size: 1.4rem;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .arrow-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .category-slider-wrapper {
        padding: 0 55px;
    }
    
    .category-image-wrapper {
        height: 380px;
    }
    
    .category-title {
        padding: 20px 15px;
    }
    
    .category-title h3 {
        font-size: 1.2rem;
    }
    
    .slider-nav {
        width: 42px;
        height: 42px;
    }
    
    .slider-nav i {
        font-size: 1.2rem;
    }
}

/* ===================================
   BUTTONS
   =================================== */

.cta-button,
.cta-button-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-soft);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, #b89651 100%);
    color: var(--white);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 167, 94, 0.4);
}

.cta-button-light {
    background: var(--white);
    color: var(--maroon);
}

.cta-button-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.cta-button.large,
.cta-button-light.large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* ===================================
   BRAND INTRODUCTION
   =================================== */

.brand-intro {
    background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.brand-intro::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198,167,94,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.brand-intro::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123,0,28,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.brand-intro-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.intro-text-block {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    max-width: none;
    margin: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(123,0,28,0.09);
    padding: 45px 50px;
    position: relative;
    border-top: 4px solid var(--gold);
}

.intro-text-block::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 7rem;
    color: var(--gold);
    opacity: 0.18;
    position: absolute;
    top: 5px;
    left: 22px;
    line-height: 1;
    pointer-events: none;
}

.intro-text {
    display: block;
    width: 100%;
    font-size: 1.08rem;
    line-height: 1.95;
    text-align: left;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.intro-text + .intro-text {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px dashed rgba(198,167,94,0.5);
}

.brand-stats {
    flex: 1 1 45%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    align-content: center;
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
    border-radius: 16px 16px 0 0;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.stat-item i {
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.stat-item h3 {
    font-size: 1.25rem;
    color: var(--maroon);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .brand-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .brand-intro-content {
        flex-direction: column;
    }

    .intro-text-block {
        flex: none;
        width: 100%;
        padding: 35px 30px;
    }

    .brand-stats {
        flex: none;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

@media (max-width: 480px) {
    .intro-text-block {
        padding: 28px 20px;
    }

    .intro-text-block::before {
        font-size: 5rem;
    }

    .brand-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   FEATURES GRID
   =================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4b76d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--maroon);
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ===================================
   CATEGORY GRID
   =================================== */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    background: var(--white);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.category-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(123, 0, 28, 0.7) 100%);
}

.category-content {
    padding: 25px;
    text-align: center;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--maroon);
}

.category-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--gold) 0%, #b89651 100%);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 167, 94, 0.4);
}

/* ===================================
   FEATURED CATEGORIES SLIDER
   =================================== */

.featured-slider-wrapper {
    position: relative;
    margin-top: 50px;
}

.featured-slider {
    overflow: hidden;
    padding: 0 60px;
}

.featured-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-category-card {
    flex: 0 0 calc(33.333% - 20px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    background: var(--white);
}

.featured-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.featured-category-card .category-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.featured-category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.featured-category-card:hover .category-image img {
    transform: scale(1.1);
}

.featured-category-card .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(123, 0, 28, 0.7) 100%);
}

.featured-category-card .category-content {
    padding: 25px;
    text-align: center;
}

.featured-category-card .category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--maroon);
}

.featured-category-card .category-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0014 100%);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(123, 0, 28, 0.3);
}

.featured-slider-nav:hover {
    background: linear-gradient(135deg, #5a0014 0%, var(--maroon) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(123, 0, 28, 0.5);
}

.featured-slider-prev {
    left: 0;
}

.featured-slider-next {
    right: 0;
}

/* Featured Slider Responsive */
@media (max-width: 1200px) {
    .featured-category-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .featured-category-card .category-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .featured-slider {
        padding: 0 60px;
    }
    
    .featured-category-card {
        flex: 0 0 calc(100% - 0px);
    }
    
    .featured-category-card .category-image {
        height: 380px;
    }
    
    .featured-slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-slider {
        padding: 0 55px;
    }
    
    .featured-category-card .category-image {
        height: 350px;
    }
    
    .featured-category-card .category-content {
        padding: 20px;
    }
    
    .featured-category-card .category-content h3 {
        font-size: 1.3rem;
    }
    
    .featured-slider-nav {
        width: 42px;
        height: 42px;
    }
}

/* ===================================
   EXCLUSIVE COLLECTIONS
   =================================== */

.exclusive-collections {
    text-align: center;
}

.exclusive-content {
    max-width: 900px;
    margin: 0 auto;
}

.exclusive-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--gold);
    border-radius: 25px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.exclusive-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 40px;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.exclusive-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.exclusive-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.exclusive-item i {
    color: var(--gold);
    font-size: 1.5rem;
}

.exclusive-item span {
    font-weight: 500;
    color: var(--white);
}

/* ===================================
   BRIDAL SPECIAL
   =================================== */

.bridal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bridal-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.bridal-image-container img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    background-color: #f8f8f8;
}

.bridal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--gold) 0%, #b89651 100%);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bridal-heading {
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 20px;
}

.bridal-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.bridal-features {
    list-style: none;
    margin-bottom: 30px;
}

.bridal-features li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bridal-features i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ===================================
   CRAFTSMANSHIP
   =================================== */

.craftsmanship-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.craft-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.craft-highlights {
    margin-top: 30px;
}

.craft-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.craft-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal) 0%, #0a5c61 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.craft-item h4 {
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 5px;
}

.craft-item p {
    color: var(--medium-gray);
    margin: 0;
}

.craftsmanship-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.craft-image-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 280px;
}

.craft-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.craft-image-box:hover img {
    transform: scale(1.1);
}

/* ===================================
   CUSTOMER EXPERIENCE
   =================================== */

.experience-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--gold) 0%, #b89651 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--teal);
    margin: 20px 0 15px;
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
}

/* ===================================
   CAROUSEL
   =================================== */

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    margin: 0 60px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
}

.carousel-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.carousel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.carousel-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--maroon);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--maroon);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-info h4 {
    font-size: 1.1rem;
    color: var(--maroon);
    margin-bottom: 3px;
}

.customer-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: var(--gold);
    font-size: 1rem;
}

/* ===================================
   LOCATION SECTION
   =================================== */

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Redesigned Location Section - Home Page */
.location-map-full {
    margin-bottom: 30px;
}

.map-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 15px 50px rgba(123, 0, 28, 0.18);
    border: 4px solid var(--white);
    outline: 2px solid rgba(198, 167, 94, 0.4);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-pin-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(123, 0, 28, 0.92) 0%, rgba(90, 0, 21, 0.92) 100%);
    backdrop-filter: blur(6px);
    color: var(--white);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.map-pin-label i {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.location-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.loc-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(123, 0, 28, 0.08);
    border: 1px solid rgba(198, 167, 94, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.loc-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(123, 0, 28, 0.14);
    border-color: rgba(198, 167, 94, 0.35);
}

.loc-info-card.cta-card {
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
    justify-content: center;
    align-items: center;
    border: none;
}

.loc-info-card.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(123, 0, 28, 0.35);
}

.loc-info-card.cta-card .cta-button {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    width: 100%;
    text-align: center;
    justify-content: center;
}

.loc-info-card.cta-card .cta-button:hover {
    background: rgba(255,255,255,0.25);
    transform: none;
    box-shadow: none;
}

.loc-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.loc-info-text h4 {
    font-size: 1rem;
    color: var(--maroon);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.loc-info-text p {
    font-size: 0.88rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.7;
}

.loc-info-text a {
    color: var(--teal);
    font-weight: 600;
}

.loc-info-text a:hover {
    color: var(--maroon);
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.7;
}

.info-content a {
    color: var(--teal);
    font-weight: 600;
}

.info-content a:hover {
    color: var(--maroon);
}

.location-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 500px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.map-overlay-card h3 {
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 5px;
}

.map-overlay-card p {
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.map-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.map-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 40px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-tagline {
    color: var(--gold);
    font-style: italic;
    margin-bottom: 10px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(198, 167, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: #cccccc;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    color: #cccccc;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaaaaa;
}

.footer-bottom i {
    color: var(--gold);
}

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    z-index: 998;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: var(--maroon);
    transform: translateY(-5px);
}

/* ===================================
   MOBILE BOTTOM NAVIGATION
   =================================== */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    z-index: 1000;
    border-top: 2px solid rgba(198, 167, 94, 0.2);
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 5px;
    color: var(--medium-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--maroon);
}

.mobile-bottom-nav .nav-item.active i {
    transform: scale(1.1);
    color: var(--maroon);
}

.mobile-bottom-nav .nav-item.active span {
    color: var(--maroon);
    font-weight: 600;
}

.mobile-bottom-nav .nav-item:active {
    transform: scale(0.95);
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Adjust WhatsApp and Scroll buttons position for mobile nav */
    .whatsapp-float {
        bottom: 85px;
    }
    
    .scroll-top {
        bottom: 85px;
    }
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: url('./hero.png') center/cover;
    background: url('./hero.avif') center/cover;
    background-attachment: fixed;
    margin-top: 90px;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(123, 0, 28, 0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.breadcrumb a {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ===================================
   ABOUT PAGE
   =================================== */

.story-wrapper,
.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text,
.mission-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.story-image,
.mission-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.story-image img,
.mission-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    background: rgba(198, 167, 94, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.heritage-card {
    text-align: left;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.heritage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.heritage-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 20px;
    background: linear-gradient(135deg, var(--teal) 0%, #0a5c61 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.heritage-card h3 {
    font-size: 1.4rem;
    color: var(--maroon);
    margin-bottom: 15px;
}

.heritage-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.mission-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(198, 167, 94, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    margin-bottom: 25px;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-text h3 {
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 10px;
}

.mission-text p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.special-card {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: left;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--gold);
}

.special-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.special-card h3 {
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 12px;
    text-align: left;
}

.special-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.value-item:hover {
    background: rgba(198, 167, 94, 0.2);
    transform: scale(1.05);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 8px;
}

.value-item p {
    color: var(--dark-gray);
    margin: 0;
}

/* ===================================
   PRODUCTS PAGE
   =================================== */

.product-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    align-items: center;
}

.product-card-large.reverse {
    direction: rtl;
}

.product-card-large.reverse > * {
    direction: ltr;
}

.product-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-medium);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card-large:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-badge.special {
    background: var(--maroon);
}

.product-badge.custom {
    background: var(--teal);
}

.product-title {
    font-size: 2rem;
    color: var(--maroon);
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: var(--gold);
    font-size: 1.1rem;
}

.product-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--teal);
    font-size: 1rem;
}

.product-price-range {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 20px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Search Container */
.search-container {
    max-width: 700px;
    margin: 40px auto 0;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(123, 0, 28, 0.12);
    border: 2px solid rgba(198, 167, 94, 0.2);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 10px 35px rgba(198, 167, 94, 0.25);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 1rem;
    color: var(--black);
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: var(--medium-gray);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 0, 28, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 0, 28, 0.4);
    background: linear-gradient(135deg, #5a0015 0%, var(--maroon) 100%);
}

.search-btn i {
    font-size: 1.1rem;
}

.clear-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(123, 0, 28, 0.1);
    color: var(--maroon);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-btn:hover {
    background: var(--maroon);
    color: var(--white);
    transform: rotate(90deg);
}

.search-results {
    display: none;
    text-align: center;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 30px;
    color: var(--maroon);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Products Grid Container - 4 Cards Per Row */
.products-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    padding: 20px 0;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(198, 167, 94, 0.1);
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(123, 0, 28, 0.15);
    border-color: rgba(198, 167, 94, 0.3);
}

.product-card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(123, 0, 28, 0.03) 0%, rgba(198, 167, 94, 0.03) 100%);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(123, 0, 28, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.special {
    background: linear-gradient(135deg, #C6A75E 0%, #8B7135 100%);
}

.product-badge.custom {
    background: linear-gradient(135deg, #7B001C 0%, #C6A75E 100%);
}

.product-card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.product-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--maroon);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.product-card-content .product-rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.product-card-content .product-rating i {
    color: var(--gold);
    font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(198, 167, 94, 0.3));
}

.product-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin: 0;
    flex-grow: 1;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--maroon);
    margin: 8px 0;
    letter-spacing: -0.3px;
    word-wrap: break-word;
    width: 100%;
}

.product-card .product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    width: 100%;
    margin-top: auto;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.product-card .product-btn i {
    font-size: 1.2rem;
}

.product-card .product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* Product Card Buttons Container */
.product-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

/* View More Button */
.product-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0011 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 0, 28, 0.25);
    width: 100%;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.product-view-more-btn i {
    font-size: 1rem;
}

.product-view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 0, 28, 0.4);
    background: linear-gradient(135deg, #5a0011 0%, var(--maroon) 100%);
}

/* WhatsApp Button on Card */
.product-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    width: 100%;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.product-whatsapp-btn i {
    font-size: 1.1rem;
}

.product-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 0;
    cursor: pointer;
}

.product-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.product-modal.active .product-modal-content {
    transform: scale(1);
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--maroon);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-modal-close:hover {
    background: var(--maroon);
    color: var(--white);
    transform: rotate(90deg);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.product-modal-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(123, 0, 28, 0.03) 0%, rgba(198, 167, 94, 0.03) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.product-modal-image .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    right: auto;
    width: fit-content;
    max-width: 60%;
}

.product-modal-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-modal-details h2 {
    font-size: 2rem;
    color: var(--maroon);
    margin: 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.product-modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--maroon);
    margin: 10px 0;
}

.product-modal-description {
    flex-grow: 1;
}

.product-modal-description h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.product-modal-description p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
}

.product-modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    text-transform: capitalize;
    margin-top: auto;
}

.product-modal-whatsapp-btn i {
    font-size: 1.4rem;
}

.product-modal-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .product-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .product-modal-details h2 {
        font-size: 1.6rem;
    }
    
    .product-modal-price {
        font-size: 1.6rem;
    }
    
    .product-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    /* Product Card Buttons on Mobile */
    .product-card-buttons {
        gap: 8px;
    }
    
    .product-view-more-btn,
    .product-whatsapp-btn {
        font-size: 0.85rem;
        padding: 10px 12px;
        gap: 6px;
    }
    
    .product-view-more-btn i,
    .product-whatsapp-btn i {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .product-card-buttons {
        gap: 10px;
    }
    
    .product-view-more-btn,
    .product-whatsapp-btn {
        width: 100%;
    }
}

.product-description {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 10px 0;
    line-height: 1.6;
    max-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    box-sizing: border-box;
}

/* No Products Message */
.no-products-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    grid-column: 1 / -1;
    color: var(--medium-gray);
}

.no-products-message i {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-products-message h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.no-products-message p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 500px;
}

/* ===================================
   GALLERY PAGE
   =================================== */

.gallery-filter {
    padding: 20px 0 40px;
    background: var(--cream);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--maroon);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    transition: var(--transition-smooth);
}

.gallery-item.hide {
    display: none;
}

.gallery-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    min-height: 350px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(123, 0, 28, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.1);
}

.gallery-info {
    width: 100%;
}

.gallery-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-info p {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.gallery-btn:hover {
    background: var(--white);
    color: var(--maroon);
    transform: translateY(-2px);
}

/* No Gallery Images Message */
.no-gallery-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    grid-column: 1 / -1;
    color: var(--medium-gray);
}

.no-gallery-message i {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-gallery-message h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.no-gallery-message p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 500px;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method-card {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 3px solid transparent;
}

.contact-method-card.primary {
    border-color: var(--gold);
    transform: scale(1.05);
}

.contact-method-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.contact-method-card.primary:hover {
    transform: translateY(-8px) scale(1.07);
}

.method-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-icon {
    background: linear-gradient(135deg, var(--teal) 0%, #0a5c61 100%);
}

.location-icon {
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
}

.contact-method-card h3 {
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 12px;
}

.contact-method-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-method-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-btn {
    background: linear-gradient(135deg, var(--teal) 0%, #0a5c61 100%);
}

.location-btn {
    background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
}

.contact-method-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.preferred-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: var(--gold);
    color: var(--white);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.info-item-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.info-item-card .info-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #b89651 100%);
}

.info-item-card h4 {
    font-size: 1.1rem;
    color: var(--maroon);
    margin-bottom: 8px;
}

.info-item-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 500px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--maroon);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
}

.support-cta {
    text-align: center;
}

.support-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
}

.cta-section .cta-content,
.support-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition-smooth);
        gap: 15px;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.7rem; }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .bridal-wrapper,
    .craftsmanship-wrapper,
    .story-wrapper,
    .mission-wrapper,
    .location-wrapper,
    .contact-info-wrapper,
    .product-card-large {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-info-row {
        grid-template-columns: 1fr 1fr;
    }

    .map-frame {
        height: 320px;
    }
    
    .product-card-large.reverse {
        direction: ltr;
    }
    
    .step-arrow {
        display: none;
    }
    
    .carousel-item {
        min-width: calc(50% - 10px);
    }
    
    /* Products Grid - 2 columns on tablets */
    .products-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 15px 0;
    }
    
    .product-card-image {
        height: 320px;
    }
    
    .product-card-content {
        padding: 24px 20px;
    }
    
    .product-card-content h3 {
        font-size: 1.3rem;
    }
    
    /* Search responsive */
    .search-container {
        max-width: 600px;
        margin: 30px auto 0;
    }
    
    .search-btn span {
        display: none;
    }
    
    .search-btn {
        padding: 14px 20px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .category-grid,
    .testimonials-grid,
    .special-grid,
    .masonry-gallery {
        grid-template-columns: 1fr;
    }
    
    .carousel-item {
        min-width: 100%;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        right: 85px;
        bottom: 20px;
    }
    
    .product-card-large {
        padding: 25px;
    }
    
    .product-image {
        height: 350px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    /* Products Grid - 2 columns on mobile */
    .products-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 10px 0;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .product-card-image {
        height: 280px;
    }
    
    .product-card-content {
        padding: 16px 14px;
        gap: 8px;
    }
    
    .product-card-content h3 {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.05rem;
    }
    
    .product-badge {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .product-card .product-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .product-card .product-btn i {
        font-size: 1.1rem;
    }
    
    /* Search responsive mobile */
    .search-container {
        margin: 25px auto 0;
        padding: 0 10px;
    }
    
    .search-box {
        padding: 6px;
        gap: 8px;
    }
    
    .search-input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .search-btn {
        padding: 12px 16px;
    }
    
    .search-btn i {
        font-size: 1rem;
    }
    
    .clear-btn {
        width: 36px;
        height: 36px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-gold {
    color: var(--gold);
}

.text-maroon {
    color: var(--maroon);
}

.text-teal {
    color: var(--teal);
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* Print Styles */
@media (max-width: 480px) {
    .location-info-row {
        grid-template-columns: 1fr;
    }

    .map-frame {
        height: 260px;
    }
}

@media print {
    .sticky-header,
    .whatsapp-float,
    .scroll-top,
    .hero-scroll-indicator {
        display: none;
    }
}
