/* ==========================================================================
   MUDRA SHARBAT JUICE BAR - PREMIUM STYLE SHEET
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    --primary-yellow: #FAD02C;
    --primary-yellow-hover: #E4BD22;
    --primary-green: #3CAE42;
    --primary-green-hover: #318F36;
    --orange: #FF9F43;
    --orange-hover: #E0852B;
    
    --bg-white: #FFFFFF;
    --bg-cream: #F5FAF4; /* Soft fresh green-tinted cream background */
    --bg-light-green: #E8F5E9;
    --bg-light-yellow: #FFFDE7;
    
    --text-dark: #0A3215; /* Premium Dark Green text for natural brand vibe */
    --text-muted: #486A50; /* Muted soft green text */
    --text-white: #FFFFFF;
    
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(10, 50, 21, 0.02);
    --shadow-md: 0 10px 30px rgba(10, 50, 21, 0.05);
    --shadow-lg: 0 20px 40px rgba(10, 50, 21, 0.08);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-round: 50%;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

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

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

/* --- Reusable Components & Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.highlight {
    color: var(--primary-green);
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--primary-green);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(250, 208, 44, 0.4);
    z-index: -1;
    border-radius: 4px;
}

/* Section Common Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-tag {
    font-family: var(--font-title);
    color: var(--primary-green);
    background-color: var(--bg-light-green);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* --- Glassmorphism Card Style --- */
.glassmorphism-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

/* --- Buttons with Glow Effect --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(60, 174, 66, 0.45);
}

.btn-secondary {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(250, 208, 44, 0.5);
}

.btn-accent {
    background-color: var(--orange);
    color: var(--text-white);
}

.btn-accent:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 159, 67, 0.45);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.btn-phone {
    background-color: rgba(10, 50, 21, 0.05);
    color: var(--text-dark);
    border: 1px solid rgba(10, 50, 21, 0.1);
}

.btn-phone:hover {
    background-color: var(--text-dark);
    color: var(--text-white);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-shadow {
    box-shadow: var(--shadow-md);
}

/* --- 3D Floating Background Fruits, Ice Cubes & Leaves --- */
.floating-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    color: rgba(60, 174, 66, 0.09);
    font-size: 2.5rem;
    user-select: none;
}

.float-lemon-1 {
    top: 12%;
    left: 4%;
    color: rgba(250, 208, 44, 0.12);
    font-size: 3.5rem;
    animation: float-rotate-3d 20s linear infinite;
}

.float-leaf-1 {
    top: 35%;
    left: 6%;
    font-size: 2rem;
    animation: float-rotate-3d 14s ease-in-out infinite alternate;
}

.float-ice-1 {
    top: 22%;
    left: 15%;
    color: rgba(135, 206, 235, 0.15);
    font-size: 2.2rem;
    animation: float-rotate-3d 12s linear infinite;
}

.float-orange-1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px dashed rgba(255, 159, 67, 0.15);
    background: radial-gradient(circle, rgba(255, 159, 67, 0.03) 0%, rgba(255, 159, 67, 0.08) 80%);
    top: 72%;
    left: 3%;
    animation: float-rotate-3d 25s linear infinite;
}

.float-lemon-2 {
    top: 25%;
    right: 5%;
    color: rgba(250, 208, 44, 0.12);
    font-size: 4rem;
    animation: float-rotate-3d 18s linear infinite reverse;
}

.float-leaf-2 {
    top: 58%;
    right: 4%;
    font-size: 2.8rem;
    animation: float-rotate-3d 16s ease-in-out infinite alternate-reverse;
}

.float-ice-2 {
    top: 45%;
    right: 14%;
    color: rgba(135, 206, 235, 0.15);
    font-size: 2.5rem;
    animation: float-rotate-3d 15s linear infinite reverse;
}

.float-orange-2 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 5px dashed rgba(255, 159, 67, 0.15);
    background: radial-gradient(circle, rgba(255, 159, 67, 0.03) 0%, rgba(255, 159, 67, 0.08) 80%);
    top: 85%;
    right: 7%;
    animation: float-rotate-3d 28s linear infinite reverse;
}

/* 3D Rotations Keyframes */
@keyframes float-rotate-3d {
    0% { transform: translate3d(0, 0, 0) rotate3d(1, 1, 1, 0deg); }
    50% { transform: translate3d(15px, -25px, 40px) rotate3d(1, 1, 1, 180deg); }
    100% { transform: translate3d(0, 0, 0) rotate3d(1, 1, 1, 360deg); }
}

/* --- Header & Navbar --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all var(--transition-normal);
    background-color: rgba(232, 245, 233, 0.8); /* Very light mint green with transparency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(60, 174, 66, 0.08);
}

.main-header.scrolled {
    background-color: rgba(232, 245, 233, 0.95); /* Slightly less transparent light green on scroll */
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(60, 174, 66, 0.12);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding var(--transition-normal);
}

.main-header.scrolled .header-container {
    padding: 0.8rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-dark);
}

.logo-icon {
    color: var(--primary-green);
    font-size: 1.8rem;
    animation: pulse-slow 3s ease-in-out infinite;
}

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

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 10px;
    transition: width var(--transition-normal);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: all var(--transition-normal);
}

/* --- Mobile Navigation Drawer --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: #E8F5E9; /* Very light mint green matching header */
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

.drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--primary-green);
    padding-left: 0.5rem;
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid rgba(10, 50, 21, 0.08);
    padding-top: 1.5rem;
}

.drawer-footer p {
    font-family: var(--font-title);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.drawer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.drawer-contact-buttons .btn {
    width: 100%;
    padding: 0.8rem;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 50, 21, 0.3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    backdrop-filter: blur(4px);
}

.drawer-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* --- Hero Section & Juice Splash --- */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem 0;
    background: linear-gradient(135deg, var(--bg-cream) 50%, rgba(76, 175, 80, 0.06) 100%);
    overflow: hidden;
    z-index: 2;
}

/* Animated splash droplets behind glass image */
.juice-splash-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.splash-drop {
    position: absolute;
    background: radial-gradient(circle, rgba(250, 208, 44, 0.3) 0%, rgba(250, 208, 44, 0) 70%);
    border-radius: 50%;
    filter: blur(10px);
}

.drop-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation: splash-drift 15s ease-in-out infinite alternate;
}

.drop-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 20%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.22) 0%, rgba(76, 175, 80, 0) 70%);
    animation: splash-drift 12s ease-in-out infinite alternate-reverse;
}

.drop-3 {
    width: 150px;
    height: 150px;
    top: 38%;
    right: 35%;
    animation: splash-drift 9s ease-in-out infinite alternate;
}

.drop-4 {
    width: 250px;
    height: 250px;
    top: -5%;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.15) 0%, rgba(255, 159, 67, 0) 70%);
    animation: splash-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes splash-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(35px, -30px) scale(1.15); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-family: var(--font-title);
    color: var(--primary-green);
    background-color: var(--bg-light-green);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 850;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(10, 50, 21, 0.08);
    padding-top: 2rem;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Media */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: var(--border-radius-lg);
}

.media-glow {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(250, 208, 44, 0.25) 0%, rgba(76, 175, 80, 0.15) 70%);
    filter: blur(24px);
    z-index: -1;
    border-radius: var(--border-radius-lg);
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    border: 8px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
}

/* Floating Glass Animation Badge */
.floating-glass-badge {
    position: absolute;
    bottom: 25px;
    left: -35px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    animation: badge-float 4s ease-in-out infinite;
    z-index: 3;
}

.glass-inner {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.juice-icon-animate {
    color: var(--primary-green);
    font-size: 1.5rem;
    animation: glass-shake 1.5s ease-in-out infinite alternate;
    display: inline-block;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-family: var(--font-title);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-mint-leaf {
    position: absolute;
    top: 20px;
    right: -20px;
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.8;
    transform: rotate(25deg);
    animation: leaf-sway 6s ease-in-out infinite alternate;
}

/* Animations for Badge & Mint */
@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes glass-shake {
    0% { transform: rotate(-8deg); }
    100% { transform: rotate(8deg); }
}

@keyframes leaf-sway {
    0% { transform: rotate(15deg) translateY(0); }
    100% { transform: rotate(35deg) translateY(-8px); }
}

/* Wave Divider */
.wave-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.waves {
    position: relative;
    width: 100%;
    height: 80px;
    margin-bottom: -7px;
    min-height: 40px;
    max-height: 100px;
}

.wave-parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.wave-parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.wave-parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.wave-parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.wave-parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* --- About Us Section --- */
.about-section {
    background-color: var(--bg-white);
    z-index: 2;
}

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

.about-media {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.about-glow {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, rgba(250, 208, 44, 0.08) 70%);
    filter: blur(20px);
    z-index: 1;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
    position: relative;
    z-index: 2;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-yellow);
    padding: 1.5rem 1.8rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    border: 3px solid #fff;
    animation: badge-float 4.5s ease-in-out infinite alternate;
}

.badge-years {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    text-transform: uppercase;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.about-text strong {
    color: var(--text-dark);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* --- Menu Section --- */
.menu-section {
    background-color: var(--bg-cream);
    z-index: 2;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background-color: var(--bg-white);
    color: var(--text-muted);
    border: 1px solid rgba(10, 50, 21, 0.05);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.tab-btn:hover {
    background-color: var(--bg-light-green);
    color: var(--primary-green);
    border-color: rgba(60, 174, 66, 0.1);
}

.tab-btn.active {
    background-color: var(--primary-green);
    color: var(--text-white);
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(60, 174, 66, 0.25);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.menu-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(250, 208, 44, 0.25);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: var(--font-title);
    letter-spacing: 0.5px;
}

.tag-best {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.tag-seasonal {
    background-color: var(--orange);
    color: var(--text-white);
}

.tag-popular {
    background-color: var(--primary-green);
    color: var(--text-white);
}

.tag-special {
    background-color: #9b59b6;
    color: var(--text-white);
}

.card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Custom Pill Selector inside Cards */
.pill-selector {
    display: flex;
    background-color: rgba(10, 50, 21, 0.05);
    padding: 0.25rem;
    border-radius: 50px;
    margin: 0.8rem 0 1.25rem 0;
    border: 1px solid rgba(10, 50, 21, 0.04);
}

.pill-label {
    flex: 1;
    text-align: center;
    padding: 0.4rem 0.8rem;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.pill-label input {
    display: none;
}

.pill-label.active {
    background-color: var(--bg-white);
    color: var(--primary-green);
    box-shadow: 0 2px 8px rgba(10, 50, 21, 0.08);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(10, 50, 21, 0.06);
    padding-top: 1rem;
    margin-top: auto;
}

.card-price {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 850;
    color: var(--primary-green);
}

.btn-order {
    background-color: #E8F5E9;
    color: var(--primary-green);
    padding: 0.5rem 1rem;
}

.btn-order:hover {
    background-color: var(--primary-green);
    color: var(--text-white);
}

.menu-card.hidden {
    display: none;
}

/* --- Features Section --- */
.features-section {
    background-color: var(--bg-white);
    z-index: 2;
}

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

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(60, 174, 66, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light-green);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    transition: all var(--transition-normal);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 750;
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Photo Gallery Section --- */
.gallery-section {
    background-color: var(--bg-cream);
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 50, 21, 0.95) 10%, rgba(10, 50, 21, 0.2) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--text-white);
}

.gallery-icon {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-white);
    transform: translateY(20px);
    transition: transform var(--transition-normal) 0.05s;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(20px);
    transition: transform var(--transition-normal) 0.1s;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon,
.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* --- Reviews Section --- */
.reviews-section {
    background-color: var(--bg-white);
    z-index: 2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.review-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 6rem;
    font-family: var(--font-title);
    color: rgba(76, 175, 80, 0.08);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(250, 208, 44, 0.25);
}

.review-stars {
    color: var(--primary-yellow);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    z-index: 2;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-light-green);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Contact & Location --- */
.contact-section {
    background-color: var(--bg-cream);
    z-index: 2;
}

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

.contact-info-panel {
    padding: 3rem 2.5rem;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 3rem;
    width: 100%;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    color: var(--primary-green);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(10, 50, 21, 0.03);
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-text a:hover {
    color: var(--primary-green);
}

.contact-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-action-buttons .btn {
    padding: 0.9rem 1.8rem;
}

/* Google Maps Widget Style */
.contact-map-panel {
    position: relative;
}

.map-card {
    padding: 1.5rem;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.map-header i {
    color: var(--primary-green);
    font-size: 1.8rem;
}

.map-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
}

.map-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-embed-container {
    height: 350px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(10, 50, 21, 0.08);
}

.map-overlay-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 2;
}

.map-overlay-btn .btn {
    white-space: nowrap;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 5rem 0 2rem 0;
    z-index: 2;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-about .logo {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-about h3, .footer-about h4 {
    color: var(--text-white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 350px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--primary-green);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--text-white);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 5px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 0.4rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.footer-contact p i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact p a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.heart-beat {
    color: #e74c3c;
    animation: heartbeat 1.2s infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* --- Lightbox Modal Styles --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 40, 20, 0.96);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid #fff;
    transform: scale(0.95);
    transition: transform var(--transition-normal);
}

.lightbox.open img {
    transform: scale(1);
}

.lightbox-content h4 {
    color: var(--text-white);
    margin-top: 1.5rem;
    font-size: 1.35rem;
    font-family: var(--font-title);
}

.lightbox-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary-yellow);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-green);
    color: var(--text-white);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
    section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .reviews-grid > .review-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-actions .btn-phone {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-media {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-content {
        align-items: center;
        text-align: center;
    }
    
    .about-media {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.85rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .menu-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid > .review-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .contact-action-buttons .btn {
        width: 100%;
    }
    
    .map-embed-container {
        height: 280px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .experience-badge {
        padding: 1rem;
        right: -10px;
        bottom: -15px;
    }
    
    .badge-years {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   INTERACTIVE ANIMATIONS & PAGE LOADER
   ========================================================================== */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-cream);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-content h3 {
    font-family: var(--font-title);
    color: var(--primary-green);
    margin-top: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 1px;
    animation: pulse-text 1.5s ease-in-out infinite alternate;
}
.liquid-glass {
    width: 60px;
    height: 80px;
    border: 4px solid var(--text-dark);
    border-top: none;
    border-radius: 0 0 15px 15px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, var(--primary-yellow), var(--orange));
    animation: fill-liquid 2.5s ease-in-out infinite alternate;
}
.liquid::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 40%;
    top: -10px;
    left: -50%;
    animation: wave-liquid 2s linear infinite;
}
@keyframes fill-liquid {
    0% { height: 0%; }
    100% { height: 85%; }
}
@keyframes wave-liquid {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes pulse-text {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Reveal-on-Scroll Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}
.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.15s; }
.delay-3 { transition-delay: 0.25s; }
.delay-4 { transition-delay: 0.35s; }

/* Hero Entrance Animations */
.hero-content, .hero-media {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-content.hero-revealed, .hero-media.hero-revealed {
    opacity: 1;
    transform: translateY(0);
}
.hero-media {
    transition-delay: 0.2s;
}

/* Micro-interactions: Feature Icons bounce */
.feature-card:hover .feature-icon i {
    animation: bounce-icon 0.6s ease-in-out;
}
@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px) scale(1.1); }
}

/* Micro-interactions: Star sparkle */
.review-card:hover .review-stars i {
    animation: star-sparkle 0.8s ease-in-out;
}
@keyframes star-sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); text-shadow: 0 0 8px var(--primary-yellow); }
}

/* Micro-interactions: active nav glow */
.nav-link.active::after {
    box-shadow: 0 0 10px var(--primary-green);
}
