:root {
    --color-primary: #8B1538;
    /* Deep Maroon */
    --color-primary-light: #A52A4A;
    --color-accent: #C9A961;
    /* Gold */
    --color-cream: #F5F1E8;
    --color-charcoal: #2C2C2C;
    --color-taupe: #8B7355;
    --color-glow: #FFE4B5;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
    --font-script: 'Great Vibes', cursive;

    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom wand */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url('assets/wand.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) rotate(-15deg);
    transition: transform 0.1s ease-out;
}

#custom-cursor.active {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.2);
    filter: drop-shadow(0 0 5px var(--color-glow));
}

/* Cursor Trail Canvas */
#cursor-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.tagline {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-accent);
}

/* Navbar - Light Theme */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-container img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Centered Navigation Links */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

/* Gold Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
    color: var(--color-accent);
}

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

/* WhatsApp CTA - Updated Specs */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: var(--color-primary);
    /* Brand Primary */
    color: var(--color-cream);
    text-decoration: none;
    font-family: var(--font-heading);
    /* Serif as requested, or body if preferred */
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 21, 56, 0.2);
    /* animation: whatsappPulse 2s ease-in-out infinite; Removed */
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    /* Uses text color (Cream) */
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    background-color: var(--color-primary-light);
    /* Lighter Maroon */
    color: var(--color-cream);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
    transform: scale(1.1);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

/* 
@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
} 
*/

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    margin-left: 15px;
    /* Spacing from WA button */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: all 0.3s;
}

/* Sections & Page Flip Animation */
/* Sections & Page Flip Animation */
section {
    padding: 5rem 2rem;
    /* opacity: 0; Removed for normal display */
}

/* The Page Flip Animation Class - Removed */
/*
.animate-flip-in {
    animation: pageFlipIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes pageFlipIn {
    0% {
        transform: perspective(1200px) rotateY(30deg) translateY(50px);
        opacity: 0;
        transform-origin: left center;
    }

    100% {
        transform: perspective(1200px) rotateY(0deg) translateY(0);
        opacity: 1;
        transform-origin: left center;
    }
}
*/

/* Hero Section - Premium Aesthetic */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background:
        linear-gradient(135deg,
            rgba(139, 21, 56, 0.4) 0%,
            rgba(75, 12, 30, 0.5) 50%,
            rgba(44, 5, 16, 0.6) 100%),
        url('images/interior.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-cream);
    overflow: hidden;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.3);
}

/* Dynamic Gradient Overlay */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%,
            rgba(201, 169, 97, 0.08) 0%,
            transparent 50%),
        radial-gradient(circle at 70% 60%,
            rgba(165, 42, 74, 0.12) 0%,
            transparent 50%);
    animation: gradientShift 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
    }
}

/* Floating Decorative Elements */
.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.element-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.element-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    bottom: -15%;
    right: -15%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.element-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    animation-duration: 20s;
}

@keyframes float {

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

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

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

    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
}

/* Hero Content Container */
.hero-content {
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    animation: heroContentFadeIn 1.5s ease 0.3s backwards;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

/* Premium Badge */
.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 50px;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(201, 169, 97, 0.2);
    }

    50% {
        box-shadow: 0 8px 32px rgba(201, 169, 97, 0.4);
    }
}

/* Hero Title - Enhanced Typography */
.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: titleSlideIn 1s ease 0.6s backwards;
}

.title-line {
    font-size: 2.5rem;
    color: var(--color-accent);
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.9;
    text-shadow: 0 2px 20px rgba(201, 169, 97, 0.5);
}

.title-main {
    font-size: 7rem;
    font-weight: 700;
    color: var(--color-cream);
    letter-spacing: 4px;
    background: linear-gradient(135deg,
            var(--color-cream) 0%,
            var(--color-accent) 50%,
            var(--color-cream) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    text-shadow: none;
    filter: drop-shadow(0 4px 20px rgba(201, 169, 97, 0.3));
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

/* Hero Subtitle - Script Font */
.hero-subtitle {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(201, 169, 97, 0.6);
    animation: subtitleFadeIn 1s ease 0.9s backwards;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

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

/* Hero Tagline */
.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(245, 241, 232, 0.85);
    letter-spacing: 1.5px;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: taglineFadeIn 1s ease 1.1s backwards;
}

@keyframes taglineFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* CTA Button Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: ctaFadeIn 1s ease 1.3s backwards;
}

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

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

/* CTA Buttons - Premium Design */
.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.8rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta.primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #B8935A 100%);
    color: var(--color-charcoal);
    border: 2px solid var(--color-accent);
}

.hero-cta.primary:hover {
    background: linear-gradient(135deg, #D4B46E 0%, var(--color-accent) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.5);
}

.hero-cta.secondary {
    background: transparent;
    color: var(--color-cream);
    border: 2px solid var(--color-cream);
    backdrop-filter: blur(10px);
}

.hero-cta.secondary:hover {
    background: rgba(245, 241, 232, 0.15);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(245, 241, 232, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-accent);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    animation: scrollIndicatorFadeIn 1s ease 2s backwards, bounce 2s ease-in-out 3s infinite;
    z-index: 10;
}

@keyframes scrollIndicatorFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--color-accent);
}

/* Legacy Styles - Kept for compatibility */
.main-title {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background-color: var(--color-cream);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 4px;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: var(--color-accent);
    color: var(--color-cream);
    box-shadow: 0 0 20px var(--color-accent);
}

/* About Section */
/* About Section Aesthetics */
.about-section {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DFD0 100%);
    position: relative;
    overflow: hidden;
}

/* New decorative element */
.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.two-column {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.two-column>* {
    flex: 1;
}

.about-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 20px 20px 0 var(--color-primary), 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--color-cream);
    transition: transform 0.3s ease;
    display: block;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.text-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-left: 5px solid var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: 0 12px 12px 0;
    position: relative;
    z-index: 1;
}

.text-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.text-card p:last-child {
    margin-bottom: 0;
}

.text-card::before {
    content: '“';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 6rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    opacity: 0.15;
}

/* Categories */
.categories-section {
    background-color: var(--color-cream);
    /* Pattern overlay could be added here */
    position: relative;
    padding-bottom: 8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--color-primary);
}

.ornament {
    font-size: 2rem;
    color: var(--color-accent);
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.category-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 3rem 2rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: none;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
}

.category-card h3 {
    margin-top: 1rem;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 1rem;
    color: #666;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.1);
    border-color: var(--color-accent);
}

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

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Featured */
/* Featured Section Aesthetic */
.featured-section {
    background-color: #2b0a12;
    /* Deep Maroon/Burgundy */
    color: var(--color-cream);
    text-align: center;
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

/* Background Gradients */
.featured-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.4) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.featured-section h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--color-accent);
    /* Changed to Gold */
}

.featured-carousel {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.featured-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    width: 340px;
    transition: all 0.4s ease;
    text-align: center;
}

.featured-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(201, 169, 97, 0.1);
}

.product-visual {
    height: 240px;
    margin-bottom: 2rem;
    background-image: url('images/2.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.featured-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.featured-card button {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-cream);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.featured-card button:hover {
    background: var(--color-accent);
    color: var(--color-charcoal);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.4);
}

/* Why Us - Cards */
/* Why Us - Aesthetic Update */
.why-us-section {
    background-color: var(--color-cream);
    padding: 8rem 2rem;
    text-align: center;
}

.why-us-section h2 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--color-primary);
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    width: 240px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.1);
    border-color: var(--color-accent);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) translateY(-5px);
    color: var(--color-accent);
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: var(--color-charcoal);
    position: relative;
    z-index: 1;
}

/* Updates Carousel Section */
.updates-section {
    background-color: var(--color-primary);
    color: var(--color-cream);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.updates-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--color-accent);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-wrapper {
    width: 600px;
    height: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-accent);
    background-color: #000;
    /* Dark bg for letterbox */
}

.carousel-slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-btn {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--color-accent);
    transform: scale(1.2);
}

/* Contact Aesthetic Update */
.contact-section {
    padding: 6rem 2rem;
    background-color: var(--color-cream);
}

.contact-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-primary);
    transition: transform 0.3s;
}

.contact-map-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.contact-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.info-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(139, 21, 56, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.hours-card h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.5rem;
}

.hours-row:last-child {
    border-bottom: none;
}

/* Footer */
/* Aesthetic Footer - Refined */
footer {
    background-color: #2b0a12;
    color: #F5F1E8;
    padding: 5rem 4rem 2rem;
    position: relative;
    border-top: 5px solid var(--color-accent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
    gap: 3rem;
    text-align: left;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Brand Col */
.footer-brand h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.footer-brand p {
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.brand-desc {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 250px;
}

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

.footer-social span {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: #2b0a12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-social span:hover {
    transform: translateY(-5px);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

/* Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #F5F1E8;
    text-decoration: none;
    font-size: 1rem;
    transition: padding-left 0.3s, color 0.3s;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
    opacity: 1;
}

/* Contact Info */
.footer-contact-list p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Buttons */
.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background-color: var(--color-accent);
    color: #2b0a12;
    border: none;
    border-radius: 8px;
    /* Slightly rounded as per ref */
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--font-body);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    /* or lighter gold */
}

/* Bottom Bar */
.footer-bottom-bar {
    text-align: center;
    padding-top: 2rem;
}

.footer-tagline {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

    /* Mobile Nav */
    .navbar {
        padding: 0 20px;
        /* Reduced padding */
    }

    .logo-container img {
        height: 40px;
        /* Smaller logo */
    }

    .nav-center {
        position: static;
        transform: none;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--color-cream);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    /* WhatsApp Button Tweaks for Mobile */
    .whatsapp-btn span {
        display: inline;
        /* Keep text visible as requested "Always visible" */
    }

    .whatsapp-btn {
        padding: 6px 12px;
        /* Slightly smaller pill */
        font-size: 13px;
    }

    .two-column {
        flex-direction: column;
    }

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

    /* Responsive Hero Section */
    .title-main {
        font-size: 4rem;
    }

    .title-line {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .scroll-indicator {
        bottom: 2rem;
        font-size: 0.75rem;
    }

    .float-element {
        opacity: 0.08;
    }

    .element-1,
    .element-2,
    .element-3 {
        width: 250px;
        height: 250px;
    }
}

/* Additional Mobile Optimization */
@media (max-width: 480px) {
    .title-main {
        font-size: 3rem;
    }

    .title-line {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1.2rem;
    }

    .hero-cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}