/* ==========================================
   MOON ELEGANCE - Premium Coffee Experience
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;700&display=swap');

/* ===== CSS Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #C4956A;
    --primary-light: #D4AB82;
    --primary-dark: #A67B52;
    --secondary: #E8D5B8;
    --accent: #5D4037;
    --bg: #FDF8F2;
    --bg-card: #FFFFFF;
    --bg-alt: #FAF5EE;
    --text: #3D2B1F;
    --text-light: #8B7A6B;
    --text-heading: #2C1810;
    --border: #E8E0D4;
    --shadow: rgba(62, 39, 35, 0.08);
    --shadow-strong: rgba(62, 39, 35, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --overlay: rgba(44, 24, 16, 0.85);
    --success: #4CAF50;
    --error: #E53935;
    --hero-overlay: rgba(44, 24, 16, 0.7);
    --footer-bg: #2C1810;
    --footer-text: #D4B996;
    --logo-color: #C4956A;
}

[data-theme="dark"] {
    --primary: #D4B996;
    --primary-light: #E8D5B8;
    --primary-dark: #C4956A;
    --secondary: #8B7355;
    --accent: #A0896E;
    --bg: #1A1410;
    --bg-card: #2C221C;
    --bg-alt: #221B16;
    --text: #E8E0D4;
    --text-light: #B0A090;
    --text-heading: #F5F1E8;
    --border: #3E2E22;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-strong: rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --overlay: rgba(26, 20, 16, 0.92);
    --success: #66BB6A;
    --error: #EF5350;
    --hero-overlay: rgba(26, 20, 16, 0.8);
    --footer-bg: #0D0A08;
    --footer-text: #B0A090;
    --logo-color: #D4B996;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    background-image: 
        radial-gradient(ellipse at 10% 20%, rgba(196, 149, 106, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(196, 149, 106, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-heading);
    transition: color 0.4s ease;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 1rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.8rem; }

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    transition: color 0.4s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.text-center { text-align: center; }

.bg-light {
    background: var(--bg-alt);
    transition: background 0.4s ease;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-wrapper h2 {
    display: inline-block;
    position: relative;
    margin-bottom: 0.5rem;
}

.section-title-wrapper h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.section-title-wrapper .subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 600px;
    margin: 0.8rem auto 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

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

.btn:hover::before { left: 100%; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--shadow-strong); }
.btn:active { transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
}

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

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

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

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

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

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes slideInDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes bounceIn { 0% { opacity: 0; transform: scale(0.3); } 50% { transform: scale(1.05); } 70% { transform: scale(0.9); } 100% { opacity: 1; transform: scale(1); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

header.scrolled {
    background: var(--bg-card);
    box-shadow: 0 4px 30px var(--shadow);
    padding: 0.6rem 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header.scrolled .logo, header.scrolled nav a { color: var(--text-heading); }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.4s ease;
}

header.scrolled .logo { color: var(--logo-color); }
.logo i { font-size: 1.3em; color: var(--primary); }

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
}

nav ul li { margin: 0; }

nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

header.scrolled nav ul li a { color: var(--text); }
nav ul li a:hover { color: var(--primary); background: rgba(139, 115, 85, 0.1); }
nav ul li a.active { color: var(--primary); background: rgba(139, 115, 85, 0.12); }

.theme-toggle {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

header.scrolled .theme-toggle { border-color: var(--border); color: var(--text); }

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(139, 115, 85, 0.1);
    transform: rotate(15deg);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.3rem;
}

header.scrolled .mobile-menu-btn { color: var(--text-heading); }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hero-overlay), var(--hero-overlay)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 0 1.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 185, 150, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(196, 149, 106, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg), transparent);
    transition: background 0.4s ease;
    z-index: 2;
}

.hero .container { position: relative; z-index: 3; }

.hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary), #F5E6CC);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .hero-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.1s forwards;
    opacity: 0;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero .btn-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero .btn-outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.hero .btn-outline:hover { background: var(--primary); border-color: var(--primary); }

.hero-decoration {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.hero-decoration span {
    position: absolute;
    width: 20px; height: 20px;
    background: rgba(212, 185, 150, 0.12);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration span:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; width: 40px; height: 40px; }
.hero-decoration span:nth-child(2) { top: 65%; left: 88%; animation-delay: 1s; width: 25px; height: 25px; }
.hero-decoration span:nth-child(3) { top: 25%; left: 78%; animation-delay: 2s; width: 35px; height: 35px; }
.hero-decoration span:nth-child(4) { top: 75%; left: 15%; animation-delay: 3s; width: 20px; height: 20px; }
.hero-decoration span:nth-child(5) { top: 10%; left: 52%; animation-delay: 4s; width: 15px; height: 15px; }
.hero-decoration span:nth-child(6) { top: 85%; left: 60%; animation-delay: 5s; width: 28px; height: 28px; }
.hero-decoration span:nth-child(7) { top: 45%; left: 5%; animation-delay: 2.5s; width: 12px; height: 12px; }
.hero-decoration span:nth-child(8) { top: 40%; left: 92%; animation-delay: 3.5s; width: 18px; height: 18px; }

.hero .hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

.hero .hero-scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.page-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--text-heading) 50%, #1A0E0A 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: #fff;
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 185, 150, 0.12), transparent 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.15), transparent 60%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.page-header .page-header-decoration {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-header .page-header-decoration span {
    position: absolute;
    width: 6px; height: 6px;
    background: rgba(212, 185, 150, 0.2);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
}

.page-header .page-header-decoration span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; width: 10px; height: 10px; }
.page-header .page-header-decoration span:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; }
.page-header .page-header-decoration span:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; width: 8px; height: 8px; }
.page-header .page-header-decoration span:nth-child(4) { top: 70%; left: 15%; animation-delay: 3s; }
.page-header .page-header-decoration span:nth-child(5) { top: 15%; left: 50%; animation-delay: 4s; }

.page-header h1 { 
    color: #fff; 
    font-size: clamp(2rem, 4vw, 3.2rem); 
    position: relative; 
    z-index: 1; 
    animation: fadeInUp 0.8s ease forwards;
}

.page-header .breadcrumb {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.page-header .breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover { color: #fff; }

.page-header p { 
    color: var(--secondary); 
    font-size: 1.15rem; 
    position: relative; 
    z-index: 1; 
    max-width: 500px; 
    margin: 0.5rem auto 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-strong);
    border-color: var(--border);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px var(--shadow-strong);
    border-color: var(--border);
}

.feature-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1), rgba(212, 185, 150, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 { margin-bottom: 0.8rem; }
.feature-card p { font-size: 0.95rem; margin-bottom: 0; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-item:hover { transform: translateY(-8px); box-shadow: 0 16px 48px var(--shadow-strong); }
.menu-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s ease; }
.menu-item:hover img { transform: scale(1.08); }

.menu-item .menu-item-img-wrapper {
    overflow: hidden;
    position: relative;
}

.menu-item .menu-item-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.menu-item-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-header h3 { font-size: 1.2rem; margin-bottom: 0; }

.menu-item .menu-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.1), rgba(232, 213, 184, 0.15));
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price { 
    color: var(--primary); 
    font-weight: 700; 
    font-size: 1.3rem; 
    white-space: nowrap; 
    font-family: 'Inter', sans-serif;
}

.price::before {
    content: '$';
    font-size: 0.8em;
    opacity: 0.7;
}

.menu-item p { font-size: 0.9rem; margin-bottom: 0; flex: 1; color: var(--text-light); }

/* ===== Menu Search Bar ===== */
.menu-search-wrapper {
    max-width: 500px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-search {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.menu-search-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.menu-search:focus-within .menu-search-icon {
    color: var(--primary);
}

.menu-search input {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 3rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    transition: all 0.3s ease;
}

.menu-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 149, 106, 0.1);
}

.menu-search input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.menu-search-clear {
    position: absolute;
    right: 0.6rem;
    width: 32px; height: 32px;
    border: none;
    background: none;
    color: var(--text-light);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.menu-search-clear:hover {
    background: rgba(196, 149, 106, 0.1);
    color: var(--primary);
}

.menu-search-clear.visible {
    display: flex;
}

.menu-search-stats {
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
    font-weight: 500;
    flex-shrink: 0;
}

.menu-search-stats span {
    color: var(--primary);
    font-weight: 700;
}

.menu-section-hidden {
    display: none !important;
}

.menu-no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.menu-no-results.visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.menu-no-results i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.menu-no-results h3 {
    margin-bottom: 0.5rem;
}

.menu-no-results p {
    font-size: 0.95rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .menu-search-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
    position: relative;
}

.menu-categories::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin-top: 1rem;
}

.category-btn {
    padding: 0.7rem 1.8rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.category-btn::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 0.5s ease;
}

.category-btn:hover::before { left: 100%; }
.category-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.category-btn.active { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border-color: transparent; box-shadow: 0 4px 15px rgba(196, 149, 106, 0.3); }

.menu-section { margin-bottom: 4rem; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--border); }

/* ===== Stats Counter Section ===== */
.stats-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--text-heading) 50%, #1A0E0A 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 185, 150, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(196, 149, 106, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%; right: -1rem;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212, 185, 150, 0.3), transparent);
}

.stat-icon {
    width: 64px; height: 64px;
    background: rgba(212, 185, 150, 0.12);
    border: 1px solid rgba(212, 185, 150, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--secondary);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(212, 185, 150, 0.2);
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.stat-number .counter {
    background: linear-gradient(135deg, var(--secondary), #F5E6CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-item { padding: 1.5rem 1rem; }
    .stats-section { padding: 3.5rem 0; }
}

/* ===== Blog Section ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-strong);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-heading);
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-meta i {
    color: var(--primary);
    font-size: 0.75rem;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

.blog-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 576px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ===== Blog Listing Page ===== */
.blog-grid-full {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.blog-main {
    min-width: 0;
}

/* Featured Post */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

.featured-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--shadow-strong);
}

.featured-post-image {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-category {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-post-content {
    padding: 2rem 2.5rem 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-post-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0;
}

.featured-post-content p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.8;
}

.featured-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.08), rgba(232, 213, 184, 0.12));
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px var(--shadow);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sidebar-widget-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--accent), var(--text-heading));
    border-color: transparent;
    text-align: center;
    padding: 2rem 1.5rem;
}

.sidebar-cta h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

/* Sidebar Search */
.sidebar-search {
    display: flex;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sidebar-search:focus-within {
    border-color: var(--primary);
}

.sidebar-search input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    outline: none;
}

.sidebar-search input::placeholder {
    color: var(--text-light);
}

.sidebar-search button {
    padding: 0.7rem 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.sidebar-search:focus-within button {
    color: var(--primary);
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
}

.sidebar-categories li {
    margin-bottom: 0.3rem;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.sidebar-categories li:last-child a {
    border-bottom: none;
}

.sidebar-categories li a:hover,
.sidebar-categories li a.active {
    color: var(--primary);
    padding-left: 4px;
}

.sidebar-categories li a span {
    color: var(--text-light);
    font-size: 0.8rem;
    background: var(--bg-alt);
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
}

.sidebar-categories li a:hover span,
.sidebar-categories li a.active span {
    background: rgba(196, 149, 106, 0.1);
    color: var(--primary);
}

/* Sidebar Recent Posts */
.sidebar-recent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-recent-item {
    display: flex;
    gap: 0.8rem;
    text-decoration: none;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.sidebar-recent-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-recent-item:hover {
    opacity: 0.8;
}

.sidebar-recent-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-recent-item h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.2rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-recent-item span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Sidebar Tags */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(196, 149, 106, 0.3);
}

.pagination-btn.next {
    width: auto;
    padding: 0 1.2rem;
    gap: 0.5rem;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.blog-pagination-info {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.blog-no-results.visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.blog-no-results i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.blog-no-results h3 {
    margin-bottom: 0.5rem;
}

.blog-no-results p {
    font-size: 0.95rem;
    max-width: 400px;
    margin: 0 auto;
}

.pagination-ellipsis {
    color: var(--text-light);
    font-size: 1rem;
    padding: 0 0.3rem;
}

@media (max-width: 992px) {
    .blog-layout { grid-template-columns: 1fr; gap: 2rem; }
    .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .featured-post { grid-template-columns: 1fr; }
    .featured-post-image { min-height: 250px; }
    .featured-post-content { padding: 0 2rem 2rem; }
}

@media (max-width: 768px) {
    .blog-sidebar { grid-template-columns: 1fr; }
    .blog-pagination { flex-wrap: wrap; }
}

/* ===== Single Article Page ===== */
.article-meta-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.article-meta-header span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-meta-header i {
    color: var(--secondary);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-featured-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 30px var(--shadow);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.article-body {
    max-width: 750px;
}

.article-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.article-body h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.article-body blockquote {
    margin: 2rem 0;
    padding: 2rem 2rem 2rem 3rem;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.05), rgba(232, 213, 184, 0.08));
    border-left: 4px solid var(--primary);
    border-radius: 0 16px 16px 0;
    position: relative;
}

.article-body blockquote::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.article-body blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.article-body blockquote cite {
    font-size: 0.85rem;
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.article-tip {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.06), rgba(76, 175, 80, 0.03));
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 16px;
    margin: 1.5rem 0;
    align-items: flex-start;
}

.article-tip i {
    font-size: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.article-tip strong {
    color: var(--success);
    font-size: 0.9rem;
}

.article-tip div {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}

/* Comparison Table */
.article-comparison {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.article-comparison h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-item {
    display: contents;
}

.comparison-item strong,
.comparison-item span {
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.comparison-item:first-child strong,
.comparison-item:first-child span {
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.06), rgba(232, 213, 184, 0.08));
    font-weight: 700;
    color: var(--text-heading);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-item strong:first-child {
    border-left: none;
}

/* Share Buttons */
.article-share {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.article-share span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-right: 0.5rem;
}

.article-share a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.article-share a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(196, 149, 106, 0.3);
}

/* Author Bio */
.article-author {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 16px;
    margin-top: 2rem;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.article-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--primary);
    padding: 2px;
}

.article-author h4 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.2rem;
}

.article-author .author-role {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.article-author p {
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 0.5rem;
}

.author-social a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
}

/* Comments */
.article-comments {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.article-comments h3 {
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.comment:last-child {
    border-bottom: none;
}

.comment img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.comment-header strong {
    font-size: 0.9rem;
    color: var(--text-heading);
}

.comment-header span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.comment-badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-content p {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.comment-reply-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    padding: 0;
}

.comment-reply-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.comment-reply {
    margin-left: 3rem;
}

.comment-form {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.comment-form h4 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.2rem;
}

.comment-form .form-group {
    margin-bottom: 1rem;
}

/* Related Posts */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

@media (max-width: 992px) {
    .article-layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 576px) {
    .article-author { flex-direction: column; align-items: center; text-align: center; }
    .comment-reply { margin-left: 1.5rem; }
    .article-share { flex-wrap: wrap; }
    .comment-form { padding: 1.5rem; }
    .comparison-grid { font-size: 0.7rem; }
    .comparison-item strong,
    .comparison-item span { padding: 0.5rem 0.6rem; }
    .article-comparison { padding: 1rem; overflow-x: auto; }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--bg-alt);
    transition: background 0.4s ease;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

/* Rating Summary */
.testimonial-rating-summary {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border-radius: 100px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px var(--shadow);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.rating-big {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #F4B942);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.rating-stars {
    color: #F4B942;
    font-size: 1rem;
    letter-spacing: 2px;
    display: flex;
    gap: 2px;
}

.rating-stars i {
    animation: starPop 0.3s ease forwards;
    opacity: 0;
    transform: scale(0);
}

.rating-stars i:nth-child(1) { animation-delay: 0.1s; }
.rating-stars i:nth-child(2) { animation-delay: 0.2s; }
.rating-stars i:nth-child(3) { animation-delay: 0.3s; }
.rating-stars i:nth-child(4) { animation-delay: 0.4s; }
.rating-stars i:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPop {
    0% { opacity: 0; transform: scale(0) rotate(-30deg); }
    70% { transform: scale(1.3) rotate(5deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
}

/* Layout Toggle */
.testimonial-layout-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.layout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.3rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.layout-btn:hover {
    border-color: var(--primary-light);
    color: var(--text);
}

.layout-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(196, 149, 106, 0.3);
}

/* Slider Container */
.testimonial-slider-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    min-height: 320px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide.active .testimonial-card {
    animation: cardSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardSlideIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Testimonial Card — Main Design */
.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem 2.8rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--shadow-strong);
    border-color: rgba(196, 149, 106, 0.2);
}

/* Animated gradient glow behind card */
.card-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.6s ease;
}

.testimonial-card:hover .card-glow {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.12), transparent 70%);
}

/* Card Top: Avatar + Name + Date */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .reviewer-avatar img {
    transform: scale(1.05);
}

.avatar-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary-dark));
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    z-index: 0;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-heading);
    font-family: 'Inter', sans-serif;
}

.reviewer-title {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.05rem;
}

.reviewer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 0.25rem;
    background: rgba(76, 175, 80, 0.08);
    padding: 0.1rem 0.5rem;
    border-radius: 50px;
}

.reviewer-badge i {
    font-size: 0.65rem;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-light);
    white-space: nowrap;
    padding: 0.3rem 0.8rem;
    background: var(--bg-alt);
    border-radius: 50px;
    transition: background 0.4s ease;
}

/* Stars */
.testimonial-card .testimonial-stars {
    color: #F4B942;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 3px;
}

.testimonial-card .testimonial-stars i {
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
    animation: starPulse 0.6s ease forwards;
}

.testimonial-card:hover .testimonial-stars i:nth-child(2) { animation-delay: 0.05s; }
.testimonial-card:hover .testimonial-stars i:nth-child(3) { animation-delay: 0.1s; }
.testimonial-card:hover .testimonial-stars i:nth-child(4) { animation-delay: 0.15s; }
.testimonial-card:hover .testimonial-stars i:nth-child(5) { animation-delay: 0.2s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); color: #FFD700; }
}

/* Floating quote icon */
.testimonial-quote-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 0.1;
    transform: translateY(-4px) scale(1.05);
}

/* Quote text */
.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    transition: border-color 0.4s ease;
}

.review-purchase {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 500;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.06), rgba(232, 213, 184, 0.08));
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
}

.review-purchase i {
    font-size: 0.75rem;
}

.helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-light);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(196, 149, 106, 0.05);
    transform: translateY(-1px);
}

.helpful-btn.liked {
    border-color: var(--primary);
    background: rgba(196, 149, 106, 0.1);
    color: var(--primary);
}

.helpful-btn.liked i {
    animation: likePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes likePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* Progress Bar */
.testimonial-progress {
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
    transition: background 0.4s ease;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.testimonial-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: #fff;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 149, 106, 0.3);
}

.testimonial-btn:active {
    transform: scale(0.95) translateY(0);
}

.testimonial-dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scaleX(2.8);
    transform-origin: center;
    box-shadow: 0 0 12px rgba(196, 149, 106, 0.4);
    width: 10px;
    border-radius: 5px;
}

.testimonial-dot:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

.testimonial-dot.active:hover {
    transform: scale(1);
}

/* Grid Layout */
.testimonial-grid-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.testimonial-grid .testimonial-card {
    padding: 2rem 1.8rem;
}

.testimonial-grid .testimonial-card .card-glow {
    display: none;
}

.testimonial-grid .testimonial-card .testimonial-quote-icon {
    font-size: 3rem;
    bottom: 1rem;
    right: 1.2rem;
}

.testimonial-grid .testimonial-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    .card-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .review-date {
        align-self: flex-start;
        margin-left: 3.5rem;
    }
    .testimonial-rating-summary {
        border-radius: 20px;
        padding: 0.8rem 1.5rem;
        gap: 0.8rem;
    }
    .rating-count {
        padding-left: 0.8rem;
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
        border-left: none;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border);
    }
    .rating-stars i {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .testimonial-card p {
        font-size: 0.95rem;
    }
    .testimonial-controls {
        gap: 1rem;
    }
    .testimonial-btn {
        width: 42px;
        height: 42px;
        font-size: 0.85rem;
    }
}

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }

.service-card { 
    background: var(--bg-card); 
    padding: 2.5rem; 
    border-radius: 20px; 
    box-shadow: 0 4px 20px var(--shadow); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    border: 1px solid var(--border); 
    position: relative; 
    overflow: hidden; 
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }

.service-card:hover::after { transform: scaleX(1); }

.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px var(--shadow-strong); }

.service-icon { 
    width: 64px; height: 64px; 
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.1), rgba(232, 213, 184, 0.15)); 
    border-radius: 18px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.6rem; 
    color: var(--primary); 
    margin-bottom: 1.5rem; 
    transition: all 0.4s ease; 
}

.service-card:hover .service-icon { 
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
    color: #fff; 
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(196, 149, 106, 0.3);
}

.service-card ul { list-style: none; margin-top: 1rem; padding: 0; }
.service-card li { 
    padding: 0.5rem 0; 
    color: var(--text-light); 
    font-size: 0.9rem; 
    display: flex; 
    align-items: center; 
    gap: 0.7rem; 
    transition: all 0.3s ease;
}

.service-card li:hover {
    color: var(--text);
    transform: translateX(4px);
}

.service-card li::before { 
    content: '\2713'; 
    color: var(--primary); 
    font-weight: 700; 
    font-size: 0.85rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.1), rgba(232, 213, 184, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.about-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px var(--shadow-strong); position: relative; }

.about-image::before { content: ''; position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px; border: 2px solid var(--primary); border-radius: 20px; z-index: -1; opacity: 0.3; }

.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; }

.values-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin: 2rem 0; }

.value-item { text-align: center; padding: 1.5rem; background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); transition: all 0.3s ease; }

.value-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px var(--shadow); }
.value-icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.value-item h4 { margin-bottom: 0.5rem; }
.value-item p { font-size: 0.85rem; margin-bottom: 0; }

.team-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }

.team-member { text-align: center; padding: 2.5rem 2rem; background: var(--bg-card); border-radius: 20px; box-shadow: 0 4px 20px var(--shadow); transition: all 0.4s ease; border: 1px solid transparent; }

.team-member:hover { transform: translateY(-8px); box-shadow: 0 16px 48px var(--shadow-strong); border-color: var(--border); }

.team-member img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 1.2rem; border: 3px solid var(--primary); padding: 3px; transition: transform 0.4s ease; }

.team-member:hover img { transform: scale(1.05); }
.position { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.8rem; }
.team-member p { font-size: 0.9rem; margin-bottom: 0; }

.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

.contact-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 1rem; 
    margin-bottom: 1.5rem; 
    padding: 1.3rem; 
    background: var(--bg-card); 
    border-radius: 16px; 
    border: 1px solid var(--border); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

.contact-item:hover { 
    transform: translateX(6px) translateY(-2px); 
    box-shadow: 0 8px 24px var(--shadow); 
    border-color: var(--primary-light);
}

.contact-icon { 
    width: 52px; height: 52px; 
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.1), rgba(232, 213, 184, 0.15)); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.3rem; 
    color: var(--primary); 
    flex-shrink: 0; 
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}

.contact-item h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.contact-item p { font-size: 0.9rem; margin-bottom: 0; line-height: 1.5; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; color: var(--text-heading); }

.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.9rem 1rem; background: var(--bg-card); border: 2px solid var(--border); border-radius: 12px; font-size: 0.95rem; font-family: 'Inter', sans-serif; color: var(--text); transition: all 0.3s ease; }

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1); }

.form-group input.error, .form-group textarea.error { border-color: var(--error); box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1); }

.form-group .error-message { color: var(--error); font-size: 0.8rem; margin-top: 0.4rem; display: none; }
.form-group .error-message.visible { display: block; }

.form-group textarea { height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.map-section { padding: 4rem 0; }

.map-wrapper {
    position: relative;
    margin-top: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    position: relative;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    transition: height 0.4s ease;
}

/* Floating marker overlay on the map */
.map-marker-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    animation: bounceMarker 2s ease-in-out infinite;
}

.map-marker-overlay i {
    font-size: 3rem;
    color: var(--primary);
    filter: drop-shadow(0 4px 12px rgba(196, 149, 106, 0.5));
    -webkit-text-stroke: 2px rgba(255,255,255,0.6);
}

.map-marker-overlay .map-marker-info {
    background: var(--bg-card);
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-strong);
    border: 1px solid var(--border);
    text-align: center;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.map-marker-overlay .map-marker-info strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-heading);
    font-family: 'Inter', sans-serif;
}

.map-marker-overlay .map-marker-info span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.1rem;
}

/* Map action buttons */
.map-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Animated bounce for marker */
@keyframes bounceMarker {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@media (max-width: 768px) {
    .map-container iframe { height: 300px; }
    .map-marker-overlay i { font-size: 2.2rem; }
    .map-marker-overlay .map-marker-info { padding: 0.4rem 0.8rem; }
    .map-marker-overlay .map-marker-info strong { font-size: 0.75rem; }
    .map-marker-overlay .map-marker-info span { font-size: 0.65rem; }
    .map-actions { flex-direction: column; align-items: center; }
    .map-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}

.map-placeholder { 
    height: 400px; 
    background: linear-gradient(135deg, var(--bg-card), var(--bg-alt)); 
    border-radius: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px dashed var(--border); 
    margin-top: 2rem; 
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.06), transparent);
    border-radius: 50%;
    top: -50px; right: -50px;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.04), transparent);
    border-radius: 50%;
    bottom: -30px; left: -30px;
}

.map-content { text-align: center; position: relative; z-index: 1; }
.map-content i { 
    font-size: 3.5rem; 
    color: var(--primary); 
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}
.map-content h3 { margin-bottom: 0.5rem; }
.map-content p { margin-bottom: 1.5rem; }

.booking-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.booking-image { 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: 0 20px 60px var(--shadow-strong); 
    position: relative;
}

.booking-image::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: 10px; bottom: 10px;
    border: 2px solid var(--primary);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.2;
}

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

.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 20px var(--shadow-strong); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999; }

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(139, 115, 85, 0.5); }

.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--bg-card); color: var(--text); padding: 1rem 2rem; border-radius: 12px; box-shadow: 0 8px 30px var(--shadow-strong); border: 1px solid var(--border); font-size: 0.9rem; font-weight: 500; opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 9999; display: flex; align-items: center; gap: 0.8rem; max-width: 90vw; }

.toast.visible { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast i { font-size: 1.2rem; }
.toast.success i { color: var(--success); }
.toast.error i { color: var(--error); }

footer { 
    background: var(--footer-bg); 
    color: var(--footer-text); 
    padding: 5rem 0 2rem; 
    position: relative; 
}

footer::before { 
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; 
    height: 4px; 
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary-dark), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
}

footer::after {
    content: '';
    position: absolute;
    top: -30px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.05), transparent);
    border-radius: 50%;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem; font-weight: 700; color: var(--secondary); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; transition: color 0.3s ease; }

.footer-logo:hover { color: #fff; }
.footer-logo i { color: var(--primary); }

footer > .container > .footer-grid > div > p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; max-width: 300px; }

.footer-heading { color: #fff; font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.8rem; }

.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-links li a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: all 0.3s ease; }
.footer-links li a:hover { color: var(--primary); padding-left: 4px; }
.footer-links li i { width: 16px; color: var(--primary); margin-top: 2px; }

.social-icons { display: flex; gap: 0.8rem; margin-top: 1.5rem; }

.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.08); border-radius: 12px; color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: all 0.3s ease; font-size: 1rem; }

.social-icons a:hover { background: var(--primary); color: #fff; transform: translateY(-4px); }

.copyright { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

.skeleton { background: linear-gradient(90deg, var(--bg-card) 25%, var(--border) 50%, var(--bg-card) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }

.spinner { width: 24px; height: 24px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; display: inline-block; }

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 1.5rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 149, 106, 0.1);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 149, 106, 0.3);
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-content, .booking-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-card); display: flex; align-items: center; justify-content: center; transform: translateX(100%); opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999; }
    nav.active { transform: translateX(0); opacity: 1; visibility: visible; }
    nav ul { flex-direction: column; align-items: center; gap: 0.8rem; }
    nav ul li a { font-size: 1.2rem; padding: 0.8rem 2rem; color: var(--text) !important; }
    .mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.8rem; color: var(--text); cursor: pointer; }
    .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero { background-attachment: scroll; }
    .hero .btn-group { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    section.section-padding { padding: 3rem 0; }
    .testimonial { padding: 2rem 1.5rem; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .features-container { grid-template-columns: 1fr; }
    .team-container { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-categories { flex-direction: column; align-items: stretch; }
    .category-btn { text-align: center; }
    .back-to-top { bottom: 1rem; right: 1rem; width: 42px; height: 42px; }
}

.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.glass { background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--glass-border); }

.newsletter-section {
    background: linear-gradient(135deg, var(--accent), var(--text-heading));
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 185, 150, 0.1), transparent),
        radial-gradient(ellipse at 80% 50%, rgba(196, 149, 106, 0.08), transparent);
}

.newsletter-section h2 { color: #fff; }
.newsletter-section p { color: rgba(255, 255, 255, 0.7); }

.newsletter-section .newsletter-form input { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); color: #fff; }
.newsletter-section .newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-section .newsletter-form input:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(212, 185, 150, 0.1); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.gallery-grid .gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid .gallery-item.wide {
    grid-column: span 2;
}

.gallery-grid .gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: 3/4;
}

.gallery-grid .gallery-item.square {
    aspect-ratio: 1/1;
}

.gallery-grid .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow-strong);
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-grid .gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-grid .gallery-item .gallery-overlay h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.gallery-grid .gallery-item .gallery-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.gallery-grid .gallery-item .gallery-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-grid .gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-grid .gallery-item .gallery-icon i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox .lightbox-content {
    max-width: 900px;
    max-height: 85vh;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox .lightbox-content img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox .lightbox-caption {
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.lightbox .lightbox-caption h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.lightbox .lightbox-caption p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
    font-size: 0.85rem;
}

.lightbox .lightbox-close {
    position: absolute;
    top: -3rem; right: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    line-height: 1;
}

.lightbox .lightbox-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.lightbox .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lightbox .lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.lightbox .lightbox-nav.prev {
    left: -4rem;
}

.lightbox .lightbox-nav.next {
    right: -4rem;
}

.lightbox .lightbox-counter {
    position: absolute;
    top: -3rem; left: 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.8rem; }
    .gallery-grid .gallery-item.wide { grid-column: span 1; }
    .gallery-grid .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
    .lightbox { padding: 1rem; }
    .lightbox .lightbox-nav { display: none; }
    .lightbox .lightbox-close { top: -2.5rem; font-size: 1.5rem; }
    .lightbox .lightbox-counter { top: -2.5rem; }
    .lightbox .lightbox-content img { max-height: 60vh; }
}

/* ===== Booking / Reservation Form ===== */

.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 40px var(--shadow);
    border: 1px solid var(--border);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.booking-form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.booking-step.active {
    opacity: 1;
}

.booking-step.completed .booking-step-number {
    background: var(--success);
    color: #fff;
    border-color: var(--success);
}

.booking-step-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.booking-step.active .booking-step-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(196, 149, 106, 0.3);
}

.booking-step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.booking-step-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin: 0 1rem;
    position: relative;
    transition: background 0.4s ease;
}

.booking-step-connector.completed {
    background: var(--primary);
}

.booking-step-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.booking-step-content.active {
    display: block;
}

.booking-step-content h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-bottom: 0.5rem;
}

.booking-step-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Event Type Cards */
.event-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.event-type-card {
    position: relative;
    cursor: pointer;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.event-type-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow);
}

.event-type-card input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.event-type-card:has(input:checked) {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.05), rgba(232, 213, 184, 0.08));
    box-shadow: 0 0 0 4px rgba(196, 149, 106, 0.1);
}

.event-type-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.1), rgba(232, 213, 184, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.event-type-card:has(input:checked) .event-type-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.event-type-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* Guest Counter */
.guest-count-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.guest-count-btn {
    width: 48px; height: 48px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-count-btn:hover {
    background: rgba(196, 149, 106, 0.1);
}

.guest-count-btn:active {
    background: rgba(196, 149, 106, 0.2);
}

.guest-count-wrapper input {
    width: 80px;
    text-align: center;
    border: none;
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
    padding: 0.7rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--text);
    -moz-appearance: textfield;
}

.guest-count-wrapper input::-webkit-outer-spin-button,
.guest-count-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Time Hints */
.booking-time-hints {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.05), rgba(232, 213, 184, 0.08));
    border-radius: 12px;
    border: 1px solid var(--border);
}

.booking-time-hints p {
    font-size: 0.85rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-time-hints i {
    color: var(--primary);
    font-size: 1rem;
}

/* Booking Summary */
.booking-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.03), rgba(232, 213, 184, 0.05));
    border-radius: 16px;
    border: 1px solid var(--border);
}

.booking-summary h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-heading);
}

.booking-summary h4 i {
    color: var(--primary);
}

.booking-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.booking-summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.8rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.summary-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.summary-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
}

@media (max-width: 768px) {
    .booking-form-wrapper { padding: 1.5rem; }
    .booking-step-label { display: none; }
    .booking-step-connector { width: 30px; margin: 0 0.5rem; }
    .event-type-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.8rem; }
    .booking-summary-grid { grid-template-columns: 1fr; }
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
