/* ===== CSS CUSTOM PROPERTIES (DESIGN TOKENS) ===== */
:root {
    /* Color Palette - Light Mode */
    --color-primary: #567434;
    --color-primary-light: #6b8a42;
    --color-primary-dark: #455a2e;
    --color-secondary: #e6b800;
    --color-secondary-light: #ffcc00;
    --color-secondary-dark: #cc9900;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    /* Surface Colors */
    --color-surface: var(--color-white);
    --color-surface-secondary: var(--color-gray-50);
    --color-surface-tertiary: var(--color-gray-100);
    --color-background: var(--color-white);
    --color-text-primary: var(--color-gray-900);
    --color-text-secondary: var(--color-gray-600);
    --color-text-tertiary: var(--color-gray-500);

    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-secondary: 'Playfair Display', Georgia, serif;
    --font-family-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Font Sizes */
    --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --font-size-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.5rem);
    --font-size-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
    --font-size-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(10px);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --color-surface: var(--color-gray-900);
    --color-surface-secondary: var(--color-gray-800);
    --color-surface-tertiary: var(--color-gray-700);
    --color-background: var(--color-gray-900);
    --color-text-primary: var(--color-gray-100);
    --color-text-secondary: var(--color-gray-300);
    --color-text-tertiary: var(--color-gray-400);
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* ===== RESET AND BASE STYLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    transition: background-color var(--transition-normal), color var(--transition-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

main {
    margin: 0;
    padding: 0;
}

section {
    margin: 0;
}

/* ===== NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    transform: translateY(0);
    opacity: 1;
}

/* Scroll-responsive header states */
.header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header.header-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Enhanced transition for scroll behavior */
.header.scroll-responsive {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accessibility: Ensure header is visible when focused */
.header:focus-within {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .header.scroll-responsive {
        transition: none;
    }

    .header.header-hidden {
        transform: translateY(-100%);
        transition: none;
    }

    .header.header-visible {
        transform: translateY(0);
        transition: none;
    }
}

nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-scrolled {
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Premium Compact Circular Logo Styling */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.92) 50%,
        rgba(244, 208, 63, 0.12) 100%);
    border: 3px solid rgba(86, 116, 52, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 10px 40px rgba(86, 116, 52, 0.18),
        0 6px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    width: 85px;
    height: 85px;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(86, 116, 52, 0.1) 0%,
        rgba(139, 195, 74, 0.08) 30%,
        rgba(244, 208, 63, 0.12) 70%,
        rgba(247, 220, 111, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.logo::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg,
        #567434 0%,
        #6B8E23 25%,
        #8FBC8F 50%,
        #F4D03F 75%,
        #F7DC6F 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
}

.logo:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 20px 60px rgba(86, 116, 52, 0.3),
        0 12px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(244, 208, 63, 0.5);
}

.logo:hover::before {
    opacity: 1;
}

.logo:hover::after {
    opacity: 0.6;
}

.logo:focus-visible {
    outline: 3px solid rgba(86, 116, 52, 0.6);
    outline-offset: 3px;
}

.logo img {
    height: 110%;
    width: 110%;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.2) contrast(1.3) saturate(1.15);
    border-radius: 50%;
    border: 3px solid rgba(86, 116, 52, 0.25);
    box-shadow:
        0 8px 30px rgba(86, 116, 52, 0.18),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transform: scale(1.05);
}

.logo:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.3) contrast(1.4) saturate(1.25);
    border: 3px solid rgba(86, 116, 52, 0.4);
    box-shadow:
        0 15px 50px rgba(86, 116, 52, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.95);
}





@keyframes logoGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}



.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #567434;
    transform: translateY(-2px);
}



.nav-links a:focus-visible {
    outline: 2px solid rgba(86, 116, 52, 0.5);
    outline-offset: 2px;
}

.nav-links a:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.nav-links a.active {
    color: #567434;
    font-weight: 700;
}





/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.mobile-menu-toggle:hover {
    background: var(--glass-bg);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: var(--transition-normal);
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-text-primary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition-normal);
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-top: 1px solid var(--glass-border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: var(--z-dropdown);
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    padding: var(--space-lg);
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: var(--space-sm);
}

.mobile-nav-links a {
    display: block;
    padding: var(--space-md);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    font-weight: 500;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateX(var(--space-sm));
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Visible */
.focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ===== HERO SECTION ===== */
.home-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 100%;
    display: flex;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    width: 20%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    max-width: 900px;
    padding: 60px 40px;
    animation: heroFadeIn 2s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.1;
    animation: slideInFromTop 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #FFFFFF 0%, #F7DC6F 30%, #F4D03F 50%, #FFE55C 70%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: slideInFromTop 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both,
               gradientShiftCarousel 4s ease-in-out infinite 2s;
    position: relative;
}

.carousel-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #F7DC6F;
    margin-bottom: 30px;
    letter-spacing: 0.8px;
    line-height: 1.4;
    animation: slideInFromBottom 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, #F7DC6F 0%, #F4D03F 50%, #FFE55C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    position: relative;
}

.carousel-text::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #567434 0%, #6B8E23 25%, #8FBC8F 50%, #F4D03F 75%, #F7DC6F 100%);
    margin: 35px auto 0;
    border-radius: 3px;
    animation: expandLine 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
    box-shadow: 0 2px 8px rgba(86, 116, 52, 0.3);
    position: relative;
    overflow: hidden;
}

.carousel-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmerCarousel 3s ease-in-out infinite 2s;
}

/* Hero Animations */
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

@keyframes gradientShiftCarousel {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmerCarousel {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 2px;
    height: 30px;
    background: var(--color-white);
    margin: 0 auto var(--space-sm);
    border-radius: var(--radius-full);
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: 2px solid var(--color-white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    padding: var(--space-5xl) 5%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left var(--transition-slow);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Feature Icon Container */
.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all var(--transition-normal);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.feature-icon i {
    font-size: var(--font-size-xl);
    color: var(--color-white);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'fontello';
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hover Effects for Icon */
.feature-item:hover .feature-icon {
    background: var(--color-white);
    border-color: var(--color-white);
    transform: scale(1.1);
}

.feature-item:hover .feature-icon::before {
    width: 100%;
    height: 100%;
}

.feature-item:hover .feature-icon i {
    color: var(--color-primary);
    transform: scale(1.05);
}

.feature-item h3 {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.feature-item:hover h3::after {
    width: 60px;
}

.feature-item p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Dark Mode Features Section */
[data-theme="dark"] .features {
    background: linear-gradient(135deg,
        rgba(26, 46, 26, 0.95) 0%,
        rgba(42, 62, 42, 0.9) 50%,
        rgba(26, 46, 26, 0.95) 100%);
}

[data-theme="dark"] .feature-item {
    background: rgba(26, 46, 26, 0.8);
    border: 1px solid rgba(86, 116, 52, 0.4);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(86, 116, 52, 0.1);
}

[data-theme="dark"] .feature-item:hover {
    background: rgba(42, 62, 42, 0.9);
    border-color: rgba(143, 188, 143, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 15px 30px rgba(86, 116, 52, 0.2);
}

[data-theme="dark"] .feature-icon {
    background: rgba(86, 116, 52, 0.3);
    border: 2px solid rgba(143, 188, 143, 0.4);
}

[data-theme="dark"] .feature-item:hover .feature-icon {
    background: rgba(143, 188, 143, 0.9);
    border-color: rgba(143, 188, 143, 1);
}

[data-theme="dark"] .feature-item:hover .feature-icon i {
    color: #0a0f0a;
}

.title-line {
    display: none;
}

.leaf-line {
    display: none;
}

.section-divider-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
}

.section-divider {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80px;
    height: auto;
    background-color: white;
    padding: 1px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.section-divider:hover {
    animation: pulse 0.6s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
    }
}

/* About Section */
.about {
    padding: 60px 10%;
    background: #f9f9f9;
    position: relative;
}

.about h2 {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}



.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 2rem 0;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    border-top: 4px solid #ddd;
}

.timeline-item {
    background: yellow;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.timeline-item::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: #333;
    mask: url('img/drop-icon.svg') no-repeat center;
    mask-size: contain;
}

.timeline-item:hover {
    transform: translateY(-10px);
}

.timeline-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.timeline-item p {
    font-size: 0.9rem;
    color: #666;
}

.timeline-item span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #ffcc00;
}

/* Enhanced Story Box Container */
.story-box {
    position: relative;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(86, 116, 52, 0.02) 0%, rgba(244, 208, 63, 0.02) 100%);
    border-radius: 30px;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
}

.story-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(86, 116, 52, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 208, 63, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.story-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Enhanced Story Item Cards */
.story-item {
    width: 220px;
    height: 220px;
    margin: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    box-shadow:
        0 10px 30px rgba(86, 116, 52, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(86, 116, 52, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.story-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(86, 116, 52, 0.1), rgba(244, 208, 63, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.story-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(86, 116, 52, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(244, 208, 63, 0.3);
}

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

.story-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
}

.story-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.15) saturate(1.2);
}

.story-content {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-top: 2rem;
}

.story-image img {
    width: 150px;
    height: 150px;
    margin-right: 1rem;
}

.story-text {
    flex: 1;
}

/* Enhanced Story Description */
.story-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 30px 30px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(86, 116, 52, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(86, 116, 52, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #567434 0%, #6B8E23 25%, #8FBC8F 50%, #F4D03F 75%, #F7DC6F 100%);
    border-radius: 20px 20px 0 0;
}

.story-description::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(244, 208, 63, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: subtleRotate 20s linear infinite;
}

.story-description p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #2C3E50;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.story-description:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 45px rgba(86, 116, 52, 0.15),
        0 12px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@keyframes subtleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Range Section */
.range {
    padding: 5rem 10%;
}

.range h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.range-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.range-content img {
    width: 60%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.range-description {
    width: 40%;
    text-align: center;
}

.range-description p {
    font-size: 1.2rem;
    color: #333;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 40px 5%;
    background: var(--color-surface-secondary);
    position: relative;
}

.products h2 {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-4xl);
    text-align: center;
    margin-bottom: var(--space-4xl);
    color: var(--color-text-primary);
    position: relative;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--color-gray-200);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(86, 116, 52, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.product-card-content {
    padding: var(--space-xl);
}

.product-card h3 {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    transition: color var(--transition-normal);
}

.product-card:hover h3 {
    color: var(--color-primary);
}

.product-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.product-card-price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.product-card-button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-normal);
}

.product-card-button:hover::before {
    left: 100%;
}

.product-card-button:hover {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-card-button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Contact Section */
.contact {
    padding: 5rem 10%;
    background: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#contact-form textarea {
    height: 150px;
}

#contact-form button {
    padding: 1rem;
    background-color: yellow;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact-form button:hover {
    background-color: #e6b800;
}

/* Info Banner Section - Enhanced with Brand Colors */
.info-banner {
    background: linear-gradient(135deg, #567434 0%, #6B8E23 25%, #8FBC8F 50%, #F4D03F 75%, #F7DC6F 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(244, 208, 63, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(86, 116, 52, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 20%, rgba(247, 220, 111, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
    max-width: 350px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.info-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.info-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(244, 208, 63, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(244, 208, 63, 0.25),
        0 0 20px rgba(86, 116, 52, 0.15);
}

.info-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 50%, #FFE55C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 25px rgba(244, 208, 63, 0.4),
        0 4px 15px rgba(86, 116, 52, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.info-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #F4D03F, #F7DC6F, #567434, #F4D03F);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-item:hover .info-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow:
        0 12px 35px rgba(244, 208, 63, 0.5),
        0 6px 20px rgba(86, 116, 52, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.info-item:hover .info-icon::before {
    opacity: 1;
}

.info-icon i {
    font-size: 1.8rem;
    color: #567434;
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.info-item:hover .info-icon i {
    transform: scale(1.1);
    color: #3E5A2A;
    animation-play-state: paused;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #FFFACD;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease;
}

.info-item:hover .info-content h3 {
    color: #F7DC6F;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.info-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.info-item:hover .info-content p {
    opacity: 1;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

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

/* Animation delays for staggered effect */
.info-item:nth-child(1) {
    animation-delay: 0.2s;
}

.info-item:nth-child(2) {
    animation-delay: 0.4s;
}

/* Responsive Design for Info Banner */
@media (max-width: 768px) {
    .info-banner {
        padding: 40px 0;
    }

    .info-container {
        gap: 30px;
        padding: 0 12px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 18px 15px;
        max-width: 100%;
    }

    .info-icon {
        width: 55px;
        height: 55px;
    }

    .info-icon i {
        font-size: 1.6rem;
    }

    .info-content h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .info-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .info-banner {
        padding: 35px 0;
    }

    .info-container {
        gap: 25px;
        padding: 0 8px;
    }

    .info-item {
        padding: 15px 12px;
        gap: 12px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon i {
        font-size: 1.4rem;
    }

    .info-content h3 {
        font-size: 1.05rem;
    }

    .info-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Tasting Experience Section - Advanced Refinements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(86, 116, 52, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(86, 116, 52, 0);
    }
}

@keyframes buttonPress {
    0% { transform: scale(1); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

.tasting-experience {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.tasting-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(86, 116, 52, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(244, 208, 63, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Header Sections - Unified Styling */
.story-header-container,
.products-header-container,
.tasting-header-container {
    position: relative;
    text-align: center;
    margin: 10px 0 20px 0;
    padding: 0 20px;
}



.section-title-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 25px 0;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #567434;
    margin: 0 0 20px 0;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
    line-height: 1.1;
    text-shadow: 0 3px 12px rgba(86, 116, 52, 0.15);
    background: linear-gradient(135deg, #567434 0%, #6B8E23 30%, #8FBC8F 50%, #F4D03F 80%, #F7DC6F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(86, 116, 52, 0.05), rgba(244, 208, 63, 0.05));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-title:hover::before {
    opacity: 1;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #567434 0%, #6B8E23 20%, #8FBC8F 40%, #F4D03F 70%, #F7DC6F 100%);
    margin: 0 auto 30px;
    border-radius: 3px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(86, 116, 52, 0.2);
}

.title-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #567434, #F4D03F);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 2s ease-out 0.5s forwards;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 3s ease-in-out infinite 1s;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Enhanced Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes underlineGrow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

/* Enhanced Hero Section */
.tasting-hero {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto 100px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.tasting-hero-image {
    position: relative;
    flex-shrink: 0;
    max-width: 225px;
    width: 100%;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(86, 116, 52, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateY(-2deg);
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.15),
        0 18px 50px rgba(86, 116, 52, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.08);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform;
}

.image-frame:hover .hero-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(86, 116, 52, 0.08) 0%, rgba(244, 208, 63, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 50%, #FFE55C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 35px rgba(244, 208, 63, 0.25),
        0 6px 20px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-element i {
    font-size: 1.8rem;
    color: #567434;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.floating-element-1 {
    top: -25px;
    right: -25px;
    animation-delay: 0s;
}

.floating-element-2 {
    bottom: -25px;
    left: -25px;
    animation-delay: 2s;
}

/* Enhanced Play Button with Micro-Interactions */
.hero-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(86, 116, 52, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.play-button:hover {
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 100%);
    transform: scale(1.15);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.2),
        0 8px 30px rgba(244, 208, 63, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: pulse 2s infinite;
}

.play-button:active {
    animation: buttonPress 0.2s ease;
}

.play-button i {
    font-size: 28px;
    color: #567434;
    margin-left: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.play-button:hover i {
    color: #3E5A2A;
    transform: scale(1.1);
}

.play-text {
    font-size: 11px;
    color: #567434;
    font-weight: 700;
    margin-top: 3px;
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.play-button:hover .play-text {
    opacity: 1;
    color: #3E5A2A;
}

/* Enhanced Content Section */
.tasting-content-section {
    flex: 1;
    text-align: left;
    padding-left: 60px;
    position: relative;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #567434 0%, #6B8E23 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow:
        0 6px 20px rgba(86, 116, 52, 0.25),
        0 3px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out 0.2s both;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.content-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(86, 116, 52, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.15);
}

.content-badge i {
    font-size: 1.1rem;
}

.content-title {
    font-size: 3.2rem;
    color: #567434;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1.1;
    background: linear-gradient(135deg, #567434 0%, #6B8E23 50%, #567434 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    text-shadow: 0 2px 4px rgba(86, 116, 52, 0.1);
}

.content-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: none;
    font-weight: 400;
    letter-spacing: 0.2px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(86, 116, 52, 0.04);
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid rgba(86, 116, 52, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(86, 116, 52, 0.08);
    border-color: rgba(86, 116, 52, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(86, 116, 52, 0.1);
}

.feature-item i {
    font-size: 1.3rem;
    color: #567434;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    color: #6B8E23;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #567434;
    letter-spacing: 0.3px;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 1s both;
}

/* Enhanced VIEW EVENT CALENDAR Button */
.view-calendar-btn {
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 30%, #FFE55C 70%, #FFED4E 100%);
    color: #567434;
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    border-radius: 16px;
    box-shadow:
        0 10px 30px rgba(244, 208, 63, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.view-calendar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.view-calendar-btn:hover {
    background: linear-gradient(135deg, #F7DC6F 0%, #FFE55C 30%, #FFED4E 70%, #FFF176 100%);
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(244, 208, 63, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #3E5A2A;
}

.view-calendar-btn:hover::before {
    left: 100%;
}

.view-calendar-btn:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.view-calendar-btn:focus-visible {
    outline: none;
    box-shadow:
        0 15px 40px rgba(244, 208, 63, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(86, 116, 52, 0.3);
}

.view-calendar-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.view-calendar-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

.view-calendar-btn span {
    position: relative;
    z-index: 2;
}

/* Tasting Experience Buttons Container */
.tasting-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Book Tasting Experience Button */
.book-tasting-btn {
    background: linear-gradient(135deg, #567434 0%, #6B8E23 25%, #8FBC8F 50%, #6B8E23 75%, #567434 100%);
    color: white;
    border: none;
    padding: 18px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow:
        0 10px 25px rgba(86, 116, 52, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.book-tasting-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.book-tasting-btn:hover {
    background: linear-gradient(135deg, #6B8E23 0%, #8FBC8F 20%, #F4D03F 40%, #8FBC8F 60%, #6B8E23 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 15px 35px rgba(86, 116, 52, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(244, 208, 63, 0.3);
    border-color: rgba(244, 208, 63, 0.5);
}

.book-tasting-btn:hover::before {
    left: 100%;
}

.book-tasting-btn:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.book-tasting-btn:focus-visible {
    outline: none;
    box-shadow:
        0 15px 40px rgba(86, 116, 52, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(86, 116, 52, 0.3);
}

.book-tasting-btn i {
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.book-tasting-btn:hover i {
    transform: scale(1.1) rotate(8deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    color: #F4D03F;
}

.book-tasting-btn span {
    position: relative;
    z-index: 2;
    font-weight: 900;
}

/* Add subtle pulsing animation */
.book-tasting-btn {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow:
            0 10px 25px rgba(86, 116, 52, 0.3),
            0 5px 15px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 12px 30px rgba(86, 116, 52, 0.4),
            0 6px 18px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1),
            0 0 0 3px rgba(244, 208, 63, 0.2);
        transform: scale(1.02);
    }
}

/* ===== ENHANCED BUTTON DESIGN SYSTEM ===== */

/* Base Button Styles */
.btn-base {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    min-height: 44px; /* Accessibility minimum */
}

.btn-base:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-base:focus-visible {
    outline: 3px solid rgba(86, 116, 52, 0.5);
    outline-offset: 2px;
}

/* Primary Button - Main CTAs */
.btn-primary, .primary-cta {
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 30%, #FFE55C 70%, #FFED4E 100%);
    color: #567434;
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 14px;
    box-shadow:
        0 8px 25px rgba(244, 208, 63, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.btn-primary::before, .primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-primary:hover, .primary-cta:hover {
    background: linear-gradient(135deg, #F7DC6F 0%, #FFE55C 30%, #FFED4E 70%, #FFF176 100%);
    transform: translateY(-3px);
    box-shadow:
        0 12px 35px rgba(244, 208, 63, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #3E5A2A;
}

.btn-primary:hover::before, .primary-cta:hover::before {
    left: 100%;
}

.btn-primary:active, .primary-cta:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Large Primary Button */
.btn-primary-lg {
    padding: 22px 44px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    border-radius: 16px;
    min-width: 280px;
    gap: 14px;
}

.btn-primary-lg i {
    font-size: 1.3rem;
}

/* Secondary Button - Supporting Actions */
.btn-secondary, .secondary-cta {
    background: transparent;
    color: #567434;
    border: 2px solid #567434;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.btn-secondary::before, .secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #567434 0%, #6B8E23 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover, .secondary-cta:hover {
    color: white;
    border-color: #6B8E23;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(86, 116, 52, 0.25);
}

.btn-secondary:hover::before, .secondary-cta:hover::before {
    transform: scaleX(1);
}

.btn-secondary:active, .secondary-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Tertiary Button - Subtle Actions */
.btn-tertiary {
    background: rgba(86, 116, 52, 0.05);
    color: #567434;
    border: 1px solid rgba(86, 116, 52, 0.2);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.btn-tertiary:hover {
    background: rgba(86, 116, 52, 0.1);
    border-color: rgba(86, 116, 52, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(86, 116, 52, 0.15);
}

/* Icon Buttons */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    min-width: auto;
    background: linear-gradient(135deg, #F4D03F, #F7DC6F);
    color: #567434;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.25);
}

.btn-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.35);
}

.btn-icon i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

/* Navigation Buttons */
.btn-nav {
    background: transparent;
    color: #567434;
    border: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.btn-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #567434, #F4D03F);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-nav:hover {
    color: #6B8E23;
    background: rgba(86, 116, 52, 0.05);
}

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

.btn-nav.active {
    color: #567434;
    background: rgba(86, 116, 52, 0.1);
}

.btn-nav.active::after {
    width: 100%;
}

/* Loading States */
.btn-loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: btn-spin 1s linear infinite;
    right: 12px;
}

.btn-loading .btn-text {
    opacity: 0.7;
}

/* Disabled States */
.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.3);
}

/* Button Groups */
.btn-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-group .btn-base:not(:last-child) {
    margin-right: 0;
}

/* Button Sizes */
.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-height: 36px;
    border-radius: 10px;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
    min-height: 52px;
    border-radius: 16px;
}

.btn-xl {
    padding: 24px 48px;
    font-size: 1.3rem;
    min-height: 60px;
    border-radius: 18px;
    letter-spacing: 1.2px;
}

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes btn-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Button States */
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: btn-spin 1s linear infinite;
    margin-right: 8px;
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #34d399) !important;
    color: white !important;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.btn-error {
    background: linear-gradient(135deg, #ef4444, #f87171) !important;
    color: white !important;
    animation: shake 0.5s ease-in-out;
}

.btn-focused {
    box-shadow: 0 0 0 3px rgba(86, 116, 52, 0.3) !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Enhanced Ripple Animation */
@keyframes ripple-animation {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Button Icon Animations */
.btn-base i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-base:hover i {
    transform: scale(1.1);
}

.btn-primary:hover i,
.primary-cta:hover i {
    transform: scale(1.1) rotate(5deg);
}

.btn-secondary:hover i,
.secondary-cta:hover i {
    transform: scale(1.1) rotate(-5deg);
}

/* Advanced Focus States */
.btn-base:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(86, 116, 52, 0.5),
        0 4px 15px rgba(86, 116, 52, 0.2);
    transform: translateY(-1px);
}

.btn-primary:focus-visible,
.primary-cta:focus-visible {
    box-shadow:
        0 0 0 3px rgba(244, 208, 63, 0.5),
        0 6px 20px rgba(244, 208, 63, 0.3);
}

/* Button Text Animations */
.btn-text {
    transition: all 0.3s ease;
}

.btn-loading .btn-text {
    opacity: 0.7;
    transform: translateX(5px);
}

/* Enhanced Disabled State */
.btn-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    filter: grayscale(0.5);
    transform: none !important;
}

.btn-disabled::before {
    display: none !important;
}

/* Button Group Enhancements */
.btn-group {
    position: relative;
}

.btn-group::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(86, 116, 52, 0.1), transparent);
    transform: translateY(-50%);
    z-index: -1;
}

/* Floating Action Button */
.btn-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F4D03F, #F7DC6F);
    color: #567434;
    border: none;
    box-shadow:
        0 8px 25px rgba(244, 208, 63, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-fab:hover {
    transform: scale(1.1);
    box-shadow:
        0 12px 35px rgba(244, 208, 63, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-fab i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-fab:hover i {
    transform: rotate(90deg);
}

/* Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-shine:hover::before {
    left: 100%;
}

/* ===== RESPONSIVE BUTTON DESIGN ===== */

/* Tablet Styles */
@media (max-width: 768px) {
    .btn-primary, .primary-cta {
        padding: 16px 28px;
        font-size: 0.95rem;
        min-width: 180px;
    }

    .btn-primary-lg {
        padding: 20px 36px;
        font-size: 1.1rem;
        min-width: 240px;
    }

    .btn-secondary, .secondary-cta {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-width: 140px;
    }

    .btn-group {
        gap: 10px;
        justify-content: center;
    }

    .nav-links a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .btn-icon {
        width: 44px;
        height: 44px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    /* View Calendar Button Tablet */
    .view-calendar-btn {
        padding: 18px 32px;
        font-size: 1rem;
        min-width: 240px;
        letter-spacing: 1px;
    }

    /* Enhanced Section Titles Tablet - All Sections */
    .section-title {
        font-size: 2.6rem;
        letter-spacing: 0.9px;
    }

    .section-subtitle {
        font-size: 1.3rem;
        max-width: 500px;
    }

    .title-underline {
        width: 100px;
        height: 4px;
    }

    .story-header-container,
    .products-header-container,
    .tasting-header-container {
        margin: 10px 0 15px 0;
    }

    /* Enhanced Story Section Tablet */
    .story-description {
        max-width: 700px;
        padding: 25px 25px;
        margin-bottom: 25px;
        border-radius: 16px;
    }

    .story-description p {
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .story-box {
        padding: 25px 15px;
        border-radius: 25px;
    }

    .story-inner {
        gap: 25px;
    }

    .story-item {
        width: 180px;
        height: 180px;
        margin: 10px;
        border-radius: 16px;
    }

    .story-item img {
        border-radius: 14px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .btn-primary, .primary-cta {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-width: 160px;
        letter-spacing: 0.6px;
    }

    .btn-primary-lg {
        padding: 18px 32px;
        font-size: 1rem;
        min-width: 200px;
        letter-spacing: 1px;
    }

    /* Tasting Experience Button Mobile */
    .book-tasting-btn {
        padding: 16px;
        width: 55px;
        height: 55px;
        border-radius: 50%;
    }

    .book-tasting-btn i {
        font-size: 1.3rem;
    }

    .btn-secondary, .secondary-cta {
        padding: 12px 20px;
        font-size: 0.85rem;
        min-width: 120px;
        letter-spacing: 0.5px;
    }

    .btn-tertiary {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .btn-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-group .btn-base {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .nav-links a {
        padding: 10px 16px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
    }

    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    /* Modal buttons on mobile */
    .modal-actions .btn-primary,
    .form-actions .btn-primary {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }

    .modal-actions .btn-secondary,
    .form-actions .btn-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 180px;
    }

    .modal-actions,
    .form-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    /* View Calendar Button Mobile */
    .view-calendar-btn {
        padding: 16px 28px;
        font-size: 0.95rem;
        min-width: 220px;
        letter-spacing: 1px;
    }

    .view-calendar-btn i {
        font-size: 1.1rem;
    }

    /* Enhanced Section Titles Mobile - All Sections */
    .section-title {
        font-size: 2rem;
        letter-spacing: 0.8px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
        max-width: 400px;
    }

    .title-underline {
        width: 80px;
        height: 3px;
    }

    .story-header-container,
    .products-header-container,
    .tasting-header-container {
        margin: 5px 0 15px 0;
        padding: 0 15px;
    }

    /* Enhanced Story Section Mobile */
    .story-description {
        max-width: 100%;
        padding: 20px 20px;
        margin: 0 15px 20px;
        border-radius: 14px;
    }

    .story-description p {
        font-size: 1.1rem;
        line-height: 1.6;
        letter-spacing: 0.2px;
    }

    .story-box {
        padding: 20px 10px;
        border-radius: 20px;
        margin: 0 10px;
    }

    .story-inner {
        gap: 20px;
        justify-content: center;
    }

    .story-item {
        width: 150px;
        height: 150px;
        margin: 8px;
        border-radius: 14px;
    }

    .story-item img {
        border-radius: 12px;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn-base {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .btn-base,
    .btn-primary,
    .btn-secondary,
    .btn-tertiary,
    .nav-links a,
    .nav-btn {
        transition: none !important;
        animation: none !important;
    }

    .btn-base::before,
    .btn-primary::before,
    .btn-secondary::before,
    .btn-shine::before {
        display: none !important;
    }

    .ripple {
        display: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary, .primary-cta {
        border: 2px solid #000;
        background: #FFD700;
        color: #000;
    }

    .btn-secondary, .secondary-cta {
        border: 2px solid #000;
        background: #FFF;
        color: #000;
    }

    .nav-links a {
        border: 1px solid #000;
    }
}



.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.primary-cta:hover {
    background: linear-gradient(135deg, #F7DC6F 0%, #FFE55C 50%, #FFED4E 100%);
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(244, 208, 63, 0.35),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:active {
    animation: buttonPress 0.2s ease;
    transform: translateY(-2px);
}

.primary-cta:focus {
    outline: none;
    box-shadow:
        0 15px 40px rgba(244, 208, 63, 0.35),
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(86, 116, 52, 0.3);
}

.primary-cta i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.primary-cta:hover i {
    transform: scale(1.1);
}

.secondary-cta {
    background: transparent;
    color: #567434;
    border: 2px solid #567434;
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #567434, #6B8E23);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.secondary-cta:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(86, 116, 52, 0.25);
}

.secondary-cta:hover::before {
    transform: scaleX(1);
}

.secondary-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(86, 116, 52, 0.3);
}

/* Loading State */
.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Statistics Section */
.tasting-stats {
    background: linear-gradient(135deg, #567434 0%, #6B8E23 25%, #8FBC8F 50%, #F4D03F 75%, #F7DC6F 100%);
    padding: 100px 0;
    margin: 120px 0;
    position: relative;
    overflow: hidden;
}

.tasting-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 50%, rgba(244, 208, 63, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 75% 50%, rgba(86, 116, 52, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 25%, rgba(247, 220, 111, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stats-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(244, 208, 63, 0.2);
    border-color: rgba(244, 208, 63, 0.4);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(244, 208, 63, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-icon i {
    font-size: 2.5rem;
    color: #F4D03F;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-item:hover .stat-icon i {
    color: #FFE55C;
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #F4D03F;
    margin-bottom: 15px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #FFE55C;
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced Feature Cards Grid */
.experience-features {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.06),
        0 8px 25px rgba(86, 116, 52, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid rgba(86, 116, 52, 0.05);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #567434 0%, #F4D03F 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.1),
        0 12px 40px rgba(86, 116, 52, 0.08);
    border-color: rgba(86, 116, 52, 0.1);
}

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

.card-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 50%, #FFE55C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow:
        0 12px 35px rgba(244, 208, 63, 0.25),
        0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow:
        0 18px 50px rgba(244, 208, 63, 0.35),
        0 8px 30px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #F7DC6F 0%, #FFE55C 50%, #FFED4E 100%);
}

.card-icon i {
    font-size: 3rem;
    color: #567434;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .card-icon i {
    color: #3E5A2A;
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.8rem;
    color: #567434;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Enhanced Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 40px 0;
    position: relative;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonial-header {
    margin-bottom: 60px;
}

.testimonial-header h3 {
    font-size: 3rem;
    color: #567434;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #567434 0%, #6B8E23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #567434, #F4D03F);
    margin: 0 auto;
    border-radius: 2px;
}

.testimonial-card {
    background: white;
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(86, 116, 52, 0.05);
    position: relative;
    border: 1px solid rgba(86, 116, 52, 0.05);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 15px 40px rgba(86, 116, 52, 0.08);
}

.testimonial-content {
    margin-bottom: 40px;
}

.quote-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow:
        0 10px 30px rgba(244, 208, 63, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quote-icon:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow:
        0 15px 40px rgba(244, 208, 63, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.quote-icon i {
    font-size: 2rem;
    color: #567434;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #567434, #6B8E23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(86, 116, 52, 0.2);
    transition: all 0.3s ease;
}

.author-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(86, 116, 52, 0.3);
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info h5 {
    font-size: 1.3rem;
    color: #567434;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.author-info span {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.testimonial-rating {
    margin-top: 25px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.stars i {
    font-size: 1.4rem;
    color: #F4D03F;
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stars i:hover {
    transform: scale(1.2);
    color: #F7DC6F;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .tasting-experience {
        padding: 30px 0;
    }

    .section-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .tasting-hero {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        margin-bottom: 80px;
    }

    .tasting-hero-image {
        max-width: 175px;
    }

    .image-frame {
        border-radius: 20px;
        transform: none;
    }

    .floating-element {
        width: 60px;
        height: 60px;
    }

    .floating-element i {
        font-size: 1.5rem;
    }

    .tasting-content-section {
        padding-left: 0;
    }

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

    .feature-highlights {
        justify-content: center;
        gap: 15px;
    }

    .cta-section {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .primary-cta, .secondary-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .testimonial-card {
        padding: 50px 40px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-title-wrapper {
        padding: 15px 0;
    }

    .tasting-hero-image {
        max-width: 140px;
    }

    .content-title {
        font-size: 2rem;
    }

    .feature-highlights {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-icon {
        width: 80px;
        height: 80px;
    }

    .stat-icon i {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .card-icon {
        width: 100px;
        height: 100px;
    }

    .card-icon i {
        font-size: 2.5rem;
    }

    .testimonial-header h3 {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 40px 25px;
    }

    .testimonial-content p {
        font-size: 1.2rem;
    }

    .primary-cta {
        padding: 18px 30px;
        font-size: 1rem;
        min-width: 250px;
    }

    .secondary-cta {
        padding: 16px 25px;
        font-size: 0.95rem;
    }
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.show {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-modal.show .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.video-modal-body {
    padding: 40px 30px 30px;
    text-align: center;
}

.video-modal-body h3 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.video-modal-body p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.video-placeholder {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 60px 20px;
    margin: 30px 0;
    border: 2px dashed #ddd;
}

.video-placeholder i {
    font-size: 48px;
    color: #8B4513;
    margin-bottom: 15px;
}

.video-placeholder p {
    color: #999;
    margin: 0;
    font-style: italic;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modal and Form Button Enhancements */
.modal-actions .btn-primary,
.form-actions .btn-primary,
.confirmation-modal .btn-primary {
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 30%, #FFE55C 70%, #FFED4E 100%);
    color: #567434;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    min-width: 140px;
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.25);
    position: relative;
    overflow: hidden;
}

.modal-actions .btn-primary:hover,
.form-actions .btn-primary:hover,
.confirmation-modal .btn-primary:hover {
    background: linear-gradient(135deg, #F7DC6F 0%, #FFE55C 30%, #FFED4E 70%, #FFF176 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.35);
    color: #3E5A2A;
}

.modal-actions .btn-secondary,
.form-actions .btn-secondary {
    background: transparent;
    color: #567434;
    border: 2px solid #567434;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.modal-actions .btn-secondary::before,
.form-actions .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #567434, #6B8E23);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.modal-actions .btn-secondary:hover,
.form-actions .btn-secondary:hover {
    color: white;
    border-color: #6B8E23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(86, 116, 52, 0.25);
}

.modal-actions .btn-secondary:hover::before,
.form-actions .btn-secondary:hover::before {
    transform: scaleX(1);
}

/* Calendar Navigation Buttons */
.nav-btn {
    background: linear-gradient(135deg, #567434, #6B8E23);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(86, 116, 52, 0.2);
    font-size: 1rem;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #6B8E23, #8FBC8F);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(86, 116, 52, 0.3);
}

.nav-btn:active {
    transform: scale(1.05);
    transition: all 0.1s ease;
}

.nav-btn:focus-visible {
    outline: 2px solid rgba(86, 116, 52, 0.5);
    outline-offset: 2px;
}

/* Calendar Modal Styles */
.calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.calendar-modal.show {
    opacity: 1;
    visibility: visible;
}

.calendar-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.calendar-modal.show .calendar-modal-content {
    transform: scale(1);
}

.calendar-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.calendar-modal-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.calendar-header {
    grid-column: 1 / -1;
    padding: 20px 20px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.calendar-header h3 {
    color: #8B4513;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.calendar-header p {
    color: #666;
    margin: 0;
}

.calendar-container {
    padding: 20px;
    border-right: 1px solid #eee;
}

.calendar-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.nav-btn {
    background: #8B4513;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #6d3410;
    transform: scale(1.1);
}

.current-month {
    font-size: 1.2rem;
    color: #8B4513;
    margin: 0;
}

.calendar-grid {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f8f8;
}

.calendar-weekdays div {
    padding: 8px 6px;
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    padding: 8px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 0.9rem;
}

.calendar-day:hover {
    background-color: #f0f0f0;
}

.calendar-day.empty {
    cursor: default;
    color: #ccc;
}

.calendar-day.has-events {
    background-color: #e8f5e8;
    color: #2d5a2d;
    font-weight: 600;
    cursor: pointer;
}

.calendar-day.has-events:hover {
    background-color: #d4f4d4;
}

.calendar-day.selected {
    background-color: #8B4513;
    color: white;
}

.calendar-day.today {
    border: 2px solid #F4D03F;
    font-weight: bold;
}

.calendar-day.has-events::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #2d5a2d;
    border-radius: 50%;
}

.calendar-day.selected.has-events::after {
    background: white;
}

/* Event Details Panel */
.event-details {
    padding: 20px;
    background: #f9f9f9;
}

.no-selection {
    text-align: center;
    color: #999;
    padding: 40px 15px;
}

.no-selection i {
    font-size: 36px;
    margin-bottom: 12px;
    color: #ddd;
}

.event-details-content h4 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



.event-info h5 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.event-info p {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #777;
}

.event-meta i {
    color: #8B4513;
}

.event-actions {
    text-align: right;
}



/* Booking Modal Styles */
.booking-modal, .confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-modal.show, .confirmation-modal.show {
    opacity: 1;
    visibility: visible;
}

.booking-modal-content, .confirmation-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.booking-modal.show .booking-modal-content,
.confirmation-modal.show .confirmation-modal-content {
    transform: scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1002;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.booking-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.booking-header h3 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.booking-event-info {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
}

.booking-event-info h4 {
    color: #333;
    margin-bottom: 10px;
}

.booking-event-info p {
    margin: 5px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.booking-summary {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.total-cost {
    text-align: center;
    font-size: 1.2rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Confirmation Modal Styles */
.confirmation-header {
    text-align: center;
    padding: 30px 30px 20px;
}

.confirmation-header i {
    font-size: 48px;
    color: #10b981;
    margin-bottom: 15px;
}

.confirmation-header h3 {
    color: #8B4513;
    margin: 0;
    font-size: 1.8rem;
}

.confirmation-details {
    padding: 0 30px 30px;
}

.confirmation-details p {
    margin-bottom: 15px;
    color: #666;
}

.booking-summary h4 {
    color: #8B4513;
    margin-bottom: 15px;
}

.booking-summary p {
    margin: 8px 0;
    color: #333;
}

.confirmation-note {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    font-style: italic;
    margin-top: 20px;
}

.confirmation-modal-content .btn-primary {
    display: block;
    margin: 0 auto 20px;
}

/* ===== ENHANCED SHEMLALI FOOTER ===== */
footer {
    background: linear-gradient(135deg,
        #0a1a0a 0%,
        #1a2e1a 25%,
        #2a3e2a 50%,
        #1a2e1a 75%,
        #0a1a0a 100%);
    color: #f0f4f0;
    padding: var(--space-5xl) 5% var(--space-xl);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #567434 0%, #6B8E23 25%, #8FBC8F 50%, #F4D03F 75%, #F7DC6F 100%) 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(86, 116, 52, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 208, 63, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="olivePattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(86,116,52,0.1)"/><circle cx="8" cy="8" r="0.8" fill="rgba(244,208,63,0.05)"/><circle cx="22" cy="22" r="0.8" fill="rgba(244,208,63,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23olivePattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
    animation: subtleFloat 20s ease-in-out infinite;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(86, 116, 52, 0.5) 25%,
        rgba(244, 208, 63, 0.8) 50%,
        rgba(86, 116, 52, 0.5) 75%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: 20px 16px;
    background: linear-gradient(135deg,
        rgba(26, 46, 26, 0.8) 0%,
        rgba(42, 62, 42, 0.6) 50%,
        rgba(26, 46, 26, 0.8) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(86, 116, 52, 0.3);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(86, 116, 52, 0.1),
        inset 0 1px 0 rgba(86, 116, 52, 0.2);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(244, 208, 63, 0.1),
        transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(86, 116, 52, 0.2),
        inset 0 1px 0 rgba(244, 208, 63, 0.3);
    border-color: rgba(244, 208, 63, 0.5);
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: #F4D03F;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 50%, #FFE55C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: footerGradientShift 4s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(244, 208, 63, 0.3);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #567434 0%, #F4D03F 100%);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(244, 208, 63, 0.4);
}

.footer-section:hover h3::after {
    width: 80px;
    background: linear-gradient(90deg, #F4D03F 0%, #F7DC6F 100%);
    box-shadow: 0 3px 12px rgba(244, 208, 63, 0.6);
}

.footer-section p {
    font-size: 0.9rem;
    color: #c8d4c8;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-section p:hover {
    color: #e0f0e0;
    transition: color 0.3s ease;
}

/* ===== CONTACT ICONS STYLING ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.contact-item:hover {
    transform: translateX(5px);
    color: #e0f0e0;
}

.contact-icon {
    width: 18px;
    height: 18px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #567434 0%, #6B8E23 50%, #F4D03F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: contactIconGradient 3s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle,
        rgba(86, 116, 52, 0.2) 0%,
        rgba(244, 208, 63, 0.1) 50%,
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 50%, #FFE55C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(244, 208, 63, 0.3));
}

.contact-item:hover .contact-icon::before {
    transform: translate(-50%, -50%) scale(1);
    background: radial-gradient(circle,
        rgba(244, 208, 63, 0.3) 0%,
        rgba(244, 208, 63, 0.1) 50%,
        transparent 70%);
}

.contact-item span {
    font-size: 0.95rem;
    color: #c8d4c8;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.contact-item:hover span {
    color: #e0f0e0;
    letter-spacing: 0.4px;
}

/* Specific icon styling for better visual hierarchy */
.contact-item:nth-child(1) .contact-icon {
    animation-delay: 0s;
}

.contact-item:nth-child(2) .contact-icon {
    animation-delay: 0.5s;
}

.contact-item:nth-child(3) .contact-icon {
    animation-delay: 1s;
}

@keyframes contactIconGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    padding: 0;
    margin-top: var(--space-lg);
}

.social-icons li {
    position: relative;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--font-size-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    color: var(--color-gray-900);
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

/* ===== COMPACT CONNECT COMPONENT ===== */
.connect-component {
    background: linear-gradient(135deg,
        rgba(86, 116, 52, 0.08) 0%,
        rgba(244, 208, 63, 0.05) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(86, 116, 52, 0.2);
    border-radius: 16px;
    padding: 20px 16px;
    max-width: 230px;
    margin: 0 auto;
    box-shadow:
        0 8px 32px rgba(86, 116, 52, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.connect-component::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(244, 208, 63, 0.1),
        transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.connect-component:hover::before {
    left: 100%;
}

.connect-component:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(86, 116, 52, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(244, 208, 63, 0.3);
}

.connect-header {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.connect-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #567434;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #567434 0%, #6B8E23 50%, #F4D03F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: connectGradientShift 4s ease-in-out infinite;
}

.connect-accent {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #567434 0%, #F4D03F 100%);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(86, 116, 52, 0.3);
}

.social-links-compact {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%);
    border: 2px solid rgba(86, 116, 52, 0.2);
    border-radius: 50%;
    color: #567434;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(86, 116, 52, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #567434 0%, #F4D03F 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(244, 208, 63, 0.5);
    box-shadow:
        0 8px 24px rgba(86, 116, 52, 0.25),
        0 4px 12px rgba(244, 208, 63, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.social-link i {
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* ===== SIMPLE SOCIAL LINKS ===== */
.social-links-simple {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: var(--space-md);
    position: relative;
    z-index: 2;
}

.social-link-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%);
    border: 2px solid rgba(86, 116, 52, 0.2);
    border-radius: 50%;
    color: #567434;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(86, 116, 52, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.social-link-simple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #567434 0%, #F4D03F 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-link-simple:hover::before {
    width: 100%;
    height: 100%;
}

.social-link-simple:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(244, 208, 63, 0.5);
    box-shadow:
        0 8px 24px rgba(86, 116, 52, 0.25),
        0 4px 12px rgba(244, 208, 63, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.social-link-simple i {
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link-simple:hover i {
    transform: scale(1.1);
}

@keyframes connectGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ===== ENHANCED NEWSLETTER FORM ===== */
.newsletter-form {
    margin-top: var(--space-md);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: var(--space-md);
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 45px 14px 18px;
    border: 2px solid rgba(86, 116, 52, 0.3);
    border-radius: 10px;
    background: linear-gradient(135deg,
        rgba(26, 46, 26, 0.8) 0%,
        rgba(42, 62, 42, 0.6) 100%);
    color: #f0f4f0;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(86, 116, 52, 0.2);
    letter-spacing: 0.3px;
}

.newsletter-form input::placeholder {
    color: rgba(200, 212, 200, 0.7);
    font-style: italic;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(244, 208, 63, 0.6);
    background: linear-gradient(135deg,
        rgba(42, 62, 42, 0.9) 0%,
        rgba(26, 46, 26, 0.8) 100%);
    box-shadow:
        0 8px 25px rgba(244, 208, 63, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(244, 208, 63, 0.3);
    transform: translateY(-2px);
}

.newsletter-form input.valid {
    border-color: rgba(143, 188, 143, 0.6);
    box-shadow:
        0 4px 15px rgba(143, 188, 143, 0.2),
        inset 0 1px 0 rgba(143, 188, 143, 0.3);
}

.newsletter-form input.invalid {
    border-color: rgba(220, 53, 69, 0.6);
    box-shadow:
        0 4px 15px rgba(220, 53, 69, 0.2),
        inset 0 1px 0 rgba(220, 53, 69, 0.3);
    animation: inputShake 0.5s ease-in-out;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(86, 116, 52, 0.6);
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.newsletter-form input:focus + .input-icon {
    color: rgba(244, 208, 63, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.newsletter-form input.valid + .input-icon {
    color: rgba(143, 188, 143, 0.8);
}

.newsletter-form input.invalid + .input-icon {
    color: rgba(220, 53, 69, 0.8);
}

.newsletter-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #567434 0%, #6B8E23 25%, #8FBC8F 50%, #F4D03F 75%, #F7DC6F 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 6px 20px rgba(86, 116, 52, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2);
    background-size: 200% 200%;
    animation: newsletterGradientShift 4s ease-in-out infinite;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.6s ease;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(86, 116, 52, 0.4),
        0 6px 20px rgba(244, 208, 63, 0.3);
    background: linear-gradient(135deg, #F4D03F 0%, #F7DC6F 25%, #FFE55C 50%, #567434 75%, #6B8E23 100%);
}

.newsletter-btn:focus {
    outline: 3px solid rgba(244, 208, 63, 0.5);
    outline-offset: 2px;
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-btn:disabled:hover {
    transform: none;
    box-shadow:
        0 6px 20px rgba(86, 116, 52, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Error and Success Messages */
.error-message,
.success-message {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.error-message {
    background: linear-gradient(135deg,
        rgba(220, 53, 69, 0.15) 0%,
        rgba(220, 53, 69, 0.1) 100%);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}

.success-message {
    background: linear-gradient(135deg,
        rgba(143, 188, 143, 0.15) 0%,
        rgba(143, 188, 143, 0.1) 100%);
    border: 1px solid rgba(143, 188, 143, 0.3);
    color: #90c695;
}

.error-message.show,
.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Button State Animations */
@keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes newsletterGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg,
        transparent 0%,
        rgba(86, 116, 52, 0.5) 25%,
        rgba(244, 208, 63, 0.8) 50%,
        rgba(86, 116, 52, 0.5) 75%,
        transparent 100%) 1;
    position: relative;
    z-index: 1;
    margin-top: var(--space-lg);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0b4a0;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #a0b4a0 0%, #c8d4c8 50%, #a0b4a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.footer-bottom p:hover {
    background: linear-gradient(135deg, #c8d4c8 0%, #F4D03F 50%, #c8d4c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Animations */
@keyframes footerGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Form Validation States - Disabled to remove red highlighting */
.form-group.valid input {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-group.invalid input {
    /* Removed red highlighting - keeping normal border */
    border-color: #ddd;
    box-shadow: none;
}

/* Performance Optimizations */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Page Loading State */
body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded) .animate-on-scroll {
    opacity: 0;
}

body.loaded .animate-on-scroll {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Pause animations when page is not visible */
body.paused * {
    animation-play-state: paused !important;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-controls {
        order: 2;
    }

    .logo {
        order: 1;
    }

    nav {
        padding: 15px 4%;
        min-height: 85px;
        flex-wrap: wrap;
    }

    .header {
        padding: 0;
    }

    /* Enhanced Enlarged Circular Logo Mobile */
    .logo {
        padding: 0;
        border-radius: 50%;
        width: 75px;
        height: 75px;
        border: 2px solid rgba(86, 116, 52, 0.2);
        box-shadow:
            0 6px 24px rgba(86, 116, 52, 0.12),
            0 3px 12px rgba(0, 0, 0, 0.05);
    }

    .logo img {
        height: 120%;
        width: 120%;
        margin: 0;
        border-radius: 50%;
        transform: scale(1.1);
    }

    .logo:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow:
            0 12px 36px rgba(86, 116, 52, 0.2),
            0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .logo:hover img {
        transform: scale(1.12) rotate(3deg);
    }

    /* Enhanced Carousel Text Tablet */
    .carousel-text {
        max-width: 700px;
        padding: 50px 30px;
        border-radius: 16px;
    }

    .carousel-text h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        letter-spacing: 0.8px;
    }

    .carousel-text h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        letter-spacing: 0.6px;
    }

    .carousel-text::after {
        width: 100px;
        margin: 30px auto 0;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        padding: var(--space-3xl) 5%;
    }

    .feature-item {
        padding: var(--space-lg);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: var(--space-lg);
    }

    .feature-icon i {
        font-size: var(--font-size-xl);
    }

    .feature-item h3 {
        font-size: var(--font-size-md);
        margin-bottom: var(--space-sm);
    }

    .feature-item p {
        font-size: var(--font-size-sm);
        line-height: 1.5;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0 5%;
    }

    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-section {
        padding: 16px 12px;
    }

    .contact-item {
        gap: 10px;
        padding: 6px 0;
    }

    .contact-icon {
        width: 16px;
        height: 16px;
        font-size: 14px;
    }

    .contact-item span {
        font-size: 0.9rem;
    }

    /* Simple Social Links Mobile */
    .social-links-simple {
        gap: 12px;
    }

    .social-link-simple {
        width: 40px;
        height: 40px;
    }

    .social-link-simple i {
        font-size: 16px;
    }

    /* Newsletter Form Mobile */
    .newsletter-form input {
        padding: 14px 45px 14px 16px;
        font-size: 0.9rem;
    }

    .newsletter-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* Hero Section Mobile */
    .carousel-text {
        padding: 40px 20px;
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .carousel-text h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .carousel-text h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .story-inner {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .story-item {
        width: 280px;
        height: 280px;
        margin: 0;
    }

    /* Mobile: Stack vertically */
    .tasting-hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }

    .tasting-hero-image {
        max-width: 75px;
        width: 100%;
    }

    .tasting-content-section {
        text-align: center;
        padding-left: 0;
    }

    .content-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .content-description {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .play-button {
        width: 40px;
        height: 40px;
    }

    .play-button i {
        font-size: 14px;
    }

    .view-calendar-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Mobile Calendar Styles */
    .calendar-modal-content {
        grid-template-columns: 1fr;
        max-width: 95%;
        margin: 10px;
        max-height: 80vh;
    }

    .calendar-container {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px;
    }

    .calendar-navigation {
        margin-bottom: 15px;
    }

    .current-month {
        font-size: 1rem;
    }

    .nav-btn {
        width: 30px;
        height: 30px;
    }

    .calendar-weekdays div {
        padding: 8px 4px;
        font-size: 0.8rem;
    }

    .calendar-day {
        padding: 6px 3px;
        min-height: 30px;
        font-size: 0.85rem;
    }

    .event-details {
        padding: 20px;
    }

    .event-item {
        padding: 15px;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
    }

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

    .booking-form {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .confirmation-details {
        padding: 0 20px 20px;
    }
}

/* Very Small Mobile Screens */
@media (max-width: 320px) {
    nav {
        padding: 12px 3%;
        min-height: 75px;
    }

    .logo {
        width: 55px;
        height: 55px;
    }

    .logo img {
        height: 110%;
        width: 110%;
        transform: scale(1.05);
    }

    .carousel-text {
        padding: 25px 10px;
        margin: 5px;
        max-width: calc(100% - 10px);
    }

    .carousel-text h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .carousel-text h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

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

    .product-card {
        max-width: 280px;
    }

    .newsletter-form input {
        padding: 12px 40px 12px 14px;
        font-size: 0.85rem;
    }

    .newsletter-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .social-link-simple {
        width: 36px;
        height: 36px;
    }

    .social-link-simple i {
        font-size: 14px;
    }

    .footer-content {
        gap: var(--space-md);
        padding: 0 3%;
    }
}

/* Extra Small Mobile Screens */
@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-2xl) 5%;
    }

    .feature-item {
        padding: var(--space-xl);
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: var(--space-lg);
    }

    .feature-icon i {
        font-size: var(--font-size-xl);
    }

    .feature-item h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-md);
        letter-spacing: 1px;
    }

    .feature-item h3::after {
        width: 40px;
        height: 2px;
    }

    .feature-item:hover h3::after {
        width: 60px;
    }

    .feature-item p {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
        padding: var(--space-4xl) 5%;
    }

    .feature-item {
        padding: var(--space-xl);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon i {
        font-size: var(--font-size-xl);
    }

    .feature-item h3 {
        font-size: var(--font-size-lg);
    }

    .feature-item p {
        font-size: var(--font-size-sm);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
        padding: 0 5%;
    }

    .product-card {
        max-width: none;
    }

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

    .story-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .story-item {
        width: 200px;
        height: 200px;
        margin: 10px;
    }

    /* Enhanced Enlarged Circular Logo Tablet */
    .logo {
        padding: 0;
        border-radius: 50%;
        width: 90px;
        height: 90px;
        border: 2px solid rgba(86, 116, 52, 0.2);
        box-shadow:
            0 8px 32px rgba(86, 116, 52, 0.14),
            0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .logo img {
        height: 120%;
        width: 120%;
        margin: 0;
        border-radius: 50%;
        transform: scale(1.1);
    }

    .logo:hover {
        transform: translateY(-5px) scale(1.025);
        box-shadow:
            0 16px 48px rgba(86, 116, 52, 0.25),
            0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .logo:hover img {
        transform: scale(1.15) rotate(4deg);
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .features {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        margin: 0 auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        margin: 0 auto;
        gap: var(--space-2xl);
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* ===== ADDITIONAL RESPONSIVE BREAKPOINTS ===== */

/* Small Tablets and Large Phones */
@media (min-width: 481px) and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        padding: 0 4%;
    }

    .product-card {
        max-width: none;
    }

    .carousel-text {
        padding: 45px 25px;
        max-width: 600px;
    }

    .carousel-text h1 {
        font-size: 3rem;
    }

    .carousel-text h2 {
        font-size: 1.6rem;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .footer-section {
        padding: 18px 14px;
    }
}

/* Extra Large Screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        margin: 0 auto;
    }

    .product-grid {
        max-width: 1200px;
        gap: var(--space-3xl);
    }

    .features {
        max-width: 1600px;
        grid-template-columns: repeat(4, 1fr);
    }

    .carousel-text {
        max-width: 1000px;
        padding: 80px 60px;
    }

    .carousel-text h1 {
        font-size: 5rem;
    }

    .carousel-text h2 {
        font-size: 2.5rem;
    }
}

/* Ultra-wide Screens */
@media (min-width: 1920px) {
    .product-grid {
        max-width: 1400px;
    }

    .features {
        max-width: 1800px;
    }

    .footer-content {
        max-width: 1600px;
        margin: 0 auto;
    }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #000000;
        --color-secondary: #ffff00;
        --color-text-primary: #000000;
        --color-text-secondary: #000000;
        --glass-bg: rgba(255, 255, 255, 0.9);
        --glass-border: rgba(0, 0, 0, 0.5);
    }

    [data-theme="dark"] {
        --color-primary: #ffffff;
        --color-secondary: #ffff00;
        --color-text-primary: #ffffff;
        --color-text-secondary: #ffffff;
        --glass-bg: rgba(0, 0, 0, 0.9);
        --glass-border: rgba(255, 255, 255, 0.5);
    }
}

/* Focus Management */
.focus-visible,
*:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Skip Links */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: var(--z-tooltip);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Keyboard Navigation Indicators */
.keyboard-user *:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* Touch Target Sizing */
@media (pointer: coarse) {
    button,
    a,
    input,
    .carousel-dot {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-links a {
        padding: var(--space-md);
    }

    .social-icons a {
        width: 56px;
        height: 56px;
    }
}



/* Enhanced Carousel Text - Small Mobile */
@media (max-width: 480px) {
    .carousel-text {
        padding: 30px 15px;
        margin: 15px;
        max-width: calc(100% - 30px);
    }

    .carousel-text h1 {
        font-size: 2rem;
        margin-bottom: 12px;
        letter-spacing: 0.4px;
        line-height: 1.2;
    }

    .carousel-text h2 {
        font-size: 1.2rem;
        margin-bottom: 18px;
        letter-spacing: 0.3px;
        line-height: 1.3;
    }

    .carousel-text::after {
        width: 60px;
        height: 3px;
        margin: 20px auto 0;
    }

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

.full-background {
    height: 400px;
    background-size: cover;
    background-position: center;
}

/* ===== CALENDAR MODAL STYLES ===== */

.calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.calendar-modal.show {
    opacity: 1;
    visibility: visible;
}

.calendar-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.calendar-modal.show .calendar-modal-content {
    transform: scale(1);
}

.calendar-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.calendar-header {
    padding: var(--space-lg);
    text-align: center;
    border-bottom: 1px solid #eee;
}

.calendar-header h3 {
    color: #567434;
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.calendar-header p {
    color: #666;
    font-size: 1rem;
}

.calendar-container {
    padding: var(--space-lg);
}

.calendar-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.calendar-navigation .nav-btn {
    background: #567434;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-navigation .nav-btn:hover {
    background: #6B8E23;
    transform: scale(1.1);
}

.current-month {
    color: #567434;
    font-size: 1.2rem;
    font-weight: 700;
}

.calendar-grid {
    margin-bottom: var(--space-lg);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: var(--space-xs);
}

.calendar-weekdays div {
    padding: var(--space-xs);
    text-align: center;
    font-weight: 600;
    color: #567434;
    background: #f8f9fa;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #eee;
}

.calendar-day {
    background: white;
    padding: var(--space-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.calendar-day:hover {
    background: #f0f8f0;
}

.calendar-day.empty {
    background: #f8f9fa;
    cursor: default;
}

.calendar-day.has-events {
    background: #e8f5e8;
    color: #567434;
    font-weight: 600;
}

.calendar-day.has-events:hover {
    background: #567434;
    color: white;
}

.calendar-day.selected {
    background: #567434;
    color: white;
}

.calendar-day.today {
    border: 2px solid #6B8E23;
}

.event-details {
    padding: var(--space-lg);
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.no-selection {
    text-align: center;
    color: #666;
    padding: var(--space-lg);
}

.no-selection i {
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: var(--space-sm);
}

.event-details-content h4 {
    color: #567434;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    text-align: center;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.event-item {
    background: white;
    border-radius: 10px;
    padding: var(--space-md);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    min-height: 200px;
}

.event-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.event-actions {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: var(--space-sm);
    border-top: 1px solid #f0f0f0;
}

/* Mobile responsive adjustments for event items */
@media (max-width: 768px) {
    .event-item {
        min-height: 180px;
        padding: var(--space-sm);
    }

    .event-actions {
        padding-top: var(--space-xs);
    }

    .book-btn {
        width: 100%;
        max-width: 200px;
    }
}

.event-time {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: #567434;
    font-weight: 600;
}

.event-info h5 {
    color: #333;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.event-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.event-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.85rem;
    color: #888;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.book-btn {
    background: linear-gradient(135deg, #567434 0%, #6B8E23 50%, #8FBC8F 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 6px 16px rgba(86, 116, 52, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.book-btn:hover {
    background: linear-gradient(135deg, #6B8E23 0%, #8FBC8F 50%, #F4D03F 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(86, 116, 52, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 2px rgba(244, 208, 63, 0.3);
    border-color: rgba(244, 208, 63, 0.4);
}

.book-btn.disabled {
    background: linear-gradient(135deg, #999 0%, #bbb 50%, #ccc 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.05);
    opacity: 0.7;
}

.book-btn.disabled:hover {
    background: linear-gradient(135deg, #999 0%, #bbb 50%, #ccc 100%);
    transform: none;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-modal-content {
        margin: var(--space-sm);
        max-height: 90vh;
        width: 95%;
    }

    .calendar-container,
    .event-details {
        padding: var(--space-md);
    }

    .calendar-header {
        padding: var(--space-md);
    }

    .calendar-header h3 {
        font-size: 1.3rem;
    }

    .calendar-day {
        min-height: 35px;
        font-size: 0.85rem;
    }

    .event-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xs);
        padding: var(--space-sm);
    }

    .event-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-xs);
    }

    .book-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* ===== RECIPES SECTION STYLES ===== */

.recipes-section {
    padding: 40px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.recipes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.recipe-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.recipe-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-recipe-btn {
    background: linear-gradient(135deg, #567434 0%, #6B8E23 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-recipe-btn:hover {
    background: linear-gradient(135deg, #6B8E23 0%, #8FBC8F 100%);
    transform: translateY(-2px);
}

.recipe-content {
    padding: var(--space-lg);
}

.recipe-content h3 {
    color: #567434;
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.recipe-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.recipe-meta {
    display: flex;
    gap: var(--space-md);
    color: #888;
    font-size: 0.9rem;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.recipe-meta i {
    color: #567434;
}

/* Recipe Modal Styles */
.recipe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.recipe-modal.show {
    opacity: 1;
    visibility: visible;
}

.recipe-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.recipe-modal.show .recipe-modal-content {
    transform: scale(1);
}

.recipe-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.recipe-modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.recipe-header {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.recipe-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: var(--space-xl);
    color: white;
}

.recipe-header h2 {
    font-size: 2.2rem;
    margin-bottom: var(--space-sm);
}

.recipe-details {
    padding: var(--space-xl);
}

.recipe-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: #f8f9fa;
    border-radius: 12px;
}

.recipe-info-item {
    text-align: center;
}

.recipe-info-item i {
    color: #567434;
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.recipe-info-item .label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.recipe-info-item .value {
    color: #666;
    font-size: 0.9rem;
}

.ingredients-section,
.instructions-section {
    margin-bottom: var(--space-xl);
}

.ingredients-section h3,
.instructions-section h3 {
    color: #567434;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.ingredients-list li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.ingredients-list li:before {
    content: "•";
    color: #567434;
    font-weight: bold;
    font-size: 1.2rem;
}

.instructions-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.instructions-list li {
    counter-increment: step-counter;
    padding: var(--space-md) 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50px;
}

.instructions-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: var(--space-md);
    background: #567434;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recipes-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .recipe-modal-content {
        margin: var(--space-md);
        max-height: 95vh;
    }

    .recipe-details {
        padding: var(--space-lg);
    }

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

    .instructions-list li {
        padding-left: 40px;
    }

    .instructions-list li:before {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

/* ===== EMAIL FUNCTIONALITY STYLES ===== */

/* Enhanced Booking Confirmation Modal */
.confirmation-modal.enhanced .confirmation-modal-content {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Compact Booking Confirmation Modal */
.confirmation-modal.compact .confirmation-modal-content {
    max-width: 400px;
    padding: 30px;
    text-align: center;
}

.confirmation-modal.compact .confirmation-header {
    margin-bottom: 25px;
}

.confirmation-modal.compact .success-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.confirmation-modal.compact .success-icon-small i {
    font-size: 1.5rem;
    color: white;
}

.confirmation-modal.compact h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #567434;
}

.confirmation-modal.compact .thank-you {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.confirmation-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

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

.booking-id {
    font-family: var(--font-family-mono);
    background: var(--color-gray-100);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-top: var(--space-sm);
}

.booking-id span {
    font-weight: bold;
    color: var(--color-primary);
}

.thank-you {
    font-size: var(--font-size-lg);
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text-primary);
}

.detail-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

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

.detail-item.special-requests {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
}

.detail-item .label {
    font-weight: 600;
    color: var(--color-text-secondary);
    min-width: 140px;
}

.detail-item .value {
    color: var(--color-text-primary);
    text-align: right;
    flex: 1;
}

.detail-item.special-requests .value {
    text-align: left;
    font-style: italic;
    background: var(--color-gray-50);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    width: 100%;
}

/* Email Status Indicators */
.email-status {
    background: var(--color-gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
}

.email-status h4 {
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.email-status-grid {
    display: grid;
    gap: var(--space-sm);
}

.email-status-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
}

.email-status-item.success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.email-status-item.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.email-status-item i {
    font-size: 1rem;
}

.email-note {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-top: var(--space-sm);
    font-style: italic;
}

/* Next Steps Section */
.next-steps {
    background: linear-gradient(135deg, rgba(86, 116, 52, 0.05), rgba(244, 208, 63, 0.05));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.next-steps h4 {
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.next-steps ul {
    margin: 0;
    padding-left: var(--space-lg);
}

.next-steps li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

/* Confirmation Actions */
.confirmation-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-200);
}

/* Error Modal Styles */
.error-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.error-modal.show {
    opacity: 1;
    visibility: visible;
}

.error-modal-content {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-2xl);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.error-modal.show .error-modal-content {
    transform: scale(1);
}

.error-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.error-header i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: var(--space-md);
}

.error-header h3 {
    color: var(--color-text-primary);
    margin: 0;
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #721c24;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
}

.error-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
}

/* Newsletter Enhanced Success */
.newsletter-success-content {
    text-align: center;
}

.email-status-mini {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.email-status-mini small {
    opacity: 0.9;
}

.text-success {
    color: #28a745;
}

.text-warning {
    color: #ffc107;
}

/* Booking Progress Indicator */
.booking-progress {
    animation: slideInFromRight 0.3s ease-out;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design for Email Modals */
@media (max-width: 768px) {
    .confirmation-modal.enhanced .confirmation-modal-content {
        max-width: 95%;
        margin: var(--space-md);
        padding: var(--space-lg);
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }

    .detail-item .value {
        text-align: left;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .email-status-grid {
        gap: var(--space-xs);
    }

    .booking-progress {
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 13px;
        padding: 12px 15px;
    }
}
