/* 
 * The Shetkari Village - Premium Restaurant Website Stylesheet
 * Brand Color System: Rustic Green (#5BC043) & Golden Yellow (#F7C600)
 * Design Style: Luxury Rustic Dark Mode, Glassmorphism, Earthy Gradients & Micro-interactions
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   1. DESIGN SYSTEM & ROOT VARIABLES
   ========================================================================== */

:root {
    /* Brand Colors */
    --primary-green: #5BC043;
    --primary-yellow: #F7C600;
    --primary-green-glow: rgba(91, 192, 67, 0.25);
    --primary-yellow-glow: rgba(247, 198, 0, 0.25);
    
    /* Earthy Dark Surfaces */
    --dark-bg: #0b0d0a;
    --dark-surface: #121510;
    --dark-surface-card: rgba(22, 27, 20, 0.75);
    --dark-surface-border: rgba(255, 255, 255, 0.08);

    /* Text Color Scale */
    --text-primary: #f5f6f4;
    --text-secondary: #c0c4be;
    --text-muted: #8c9288;

    /* Gradients */
    --earthy-gradient: linear-gradient(135deg, #0b0d0a 0%, #171b14 100%);
    --accent-gradient: linear-gradient(135deg, #5BC043 0%, #F7C600 100%);
    --accent-gradient-hover: linear-gradient(135deg, #4da339 0%, #d9ad00 100%);
    --charcoal-gradient: linear-gradient(to bottom, rgba(11, 13, 10, 0.8) 0%, rgba(18, 21, 16, 0.98) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Glassmorphism Specs */
    --glass-bg: rgba(18, 21, 16, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur: blur(15px);
    --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* ==========================================================================
   2. GENERAL STYLES & LAYOUT
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--dark-bg);
    background-image: var(--earthy-gradient);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

a:hover {
    color: var(--primary-yellow);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-surface);
    border-radius: 4px;
    border: 2px solid var(--dark-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

/* Section Spacing & Headings */
section {
    padding: 100px 0;
    position: relative;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-yellow);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 1.2rem + 3.2vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 4rem auto;
    font-size: 1.05rem;
}

/* Helper Utilities & Blur effects */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-blur-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 192, 67, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   3. PRELOADER & SCROLL-INDICATOR
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
    width: 120px;
    margin-bottom: 2rem;
    animation: loaderPulse 2s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(91, 192, 67, 0.1);
    border-top-color: var(--primary-green);
    border-bottom-color: var(--primary-yellow);
    border-radius: 50%;
    animation: loaderSpin 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
}

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

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* ==========================================================================
   4. NAVIGATION HEADER
   ========================================================================== */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    z-index: 1050;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.sticky {
    padding: 0.85rem 0;
    background: rgba(11, 13, 10, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--dark-surface-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--text-primary) !important;
}

.navbar-brand img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar.sticky .navbar-brand img {
    height: 45px;
}

.navbar-brand span {
    letter-spacing: -0.02em;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary) !important;
    padding: 0.5rem 1.25rem !important;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Navbar Toggle Button (Custom Hamburger) */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    outline: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 26px;
    height: 2px;
    background-color: var(--text-primary);
    display: inline-block;
    transition: background 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 2px;
    background-color: var(--text-primary);
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ==========================================================================
   5. PREMIUM BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */
.btn-premium {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-premium {
    background: var(--accent-gradient);
    color: #000;
    border: none;
    box-shadow: 0 6px 20px var(--primary-green-glow);
}

.btn-primary-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient-hover);
    transition: opacity 0.3s ease;
    z-index: -1;
    opacity: 0;
}

.btn-primary-premium:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 192, 67, 0.4);
}

.btn-primary-premium:hover::before {
    opacity: 1;
}

.btn-outline-premium {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline-premium:hover {
    border-color: var(--primary-green);
    background: rgba(91, 192, 67, 0.05);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-green-glow);
}

.btn-nav-premium {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    background: var(--accent-gradient);
    color: #000 !important;
    border: none;
    box-shadow: 0 4px 15px var(--primary-green-glow);
}

.btn-nav-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 192, 67, 0.4);
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
    animation: zoomBackground 20s ease-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal-gradient);
}

@keyframes zoomBackground {
    0% { transform: scale(1.03); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(247, 198, 0, 0.05) 0%, transparent 60%);
    z-index: -1;
}

.hero-content {
    z-index: 10;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 0.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw + 1.2rem, 5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: clamp(1.05rem, 0.3vw + 1rem, 1.3rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 3rem;
}

/* Floating visual mockup for Hero */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    border: 4px solid rgba(255, 255, 255, 0.05);
    animation: blobMorph 12s ease-in-out infinite alternate;
    width: 440px;
    height: 440px;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes blobMorph {
    0% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
    33% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
    66% { border-radius: 60% 40% 60% 40% / 40% 50% 50% 60%; }
    100% { border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; }
}

.hero-glow-circle {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 2px dashed rgba(247, 198, 0, 0.2);
    animation: spinGlow 40s linear infinite;
    pointer-events: none;
}

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* ==========================================================================
   7. ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--dark-surface);
}

.about-story {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.story-highlight {
    font-size: 1.3rem;
    color: var(--text-primary);
    border-left: 4px solid var(--primary-green);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.5;
}

/* Collage style about images */
.about-images-collage {
    position: relative;
    height: 480px;
    width: 100%;
}

.about-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img.img-1 {
    width: 65%;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img.img-2 {
    width: 55%;
    height: 260px;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.about-img:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 5;
    border-color: var(--primary-green);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--accent-gradient);
    color: #000;
    border-radius: 16px;
    padding: 1.25rem 2rem;
    box-shadow: 0 10px 25px rgba(91, 192, 67, 0.3);
    z-index: 4;
    text-align: center;
    font-family: var(--font-heading);
}

.about-badge .years {
    font-size: 2.25rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.about-badge .label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   8. SPECIALTIES SECTION
   ========================================================================== */
.spec-card {
    padding: 3rem 2.25rem;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 192, 67, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.spec-card:hover {
    transform: translateY(-8px);
    border-color: rgba(91, 192, 67, 0.3) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(91, 192, 67, 0.05);
}

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

.spec-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: var(--primary-green);
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.spec-card:hover .spec-icon-wrapper {
    background: var(--primary-green);
    color: #000;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px var(--primary-green-glow);
}

.spec-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.spec-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   9. MENU PREVIEW SECTION
   ========================================================================== */
.menu-section {
    background-color: var(--dark-bg);
}

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

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    background: var(--dark-surface);
    color: var(--text-secondary);
    border: 1px solid var(--dark-surface-border);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: #000;
    border-color: var(--primary-green);
    box-shadow: 0 6px 18px var(--primary-green-glow);
}

/* Menu Card Layout */
.menu-card {
    height: 100%;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
    position: relative;
    border-radius: 20px;
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 198, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(247, 198, 0, 0.04);
}

.menu-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.menu-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* Food tags and Badges */
.menu-category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(11, 13, 10, 0.8);
    backdrop-filter: blur(5px);
    color: var(--primary-yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    border: 1px solid rgba(247, 198, 0, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-green);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px var(--primary-green-glow);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(11, 13, 10, 0.85);
    backdrop-filter: blur(5px);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 0.45rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-info {
    padding: 1.75rem;
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.food-type-icon {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.food-type-icon.veg {
    color: #4CAF50; /* Veg green dot */
}

.food-type-icon.nonveg {
    color: #F44336; /* Non-veg red dot */
}

.menu-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.menu-item-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Thali Spec Info */
.thali-specs {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.thali-spec-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.thali-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.thali-spec-list li {
    margin-bottom: 0.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.thali-spec-list li::before {
    content: "•";
    color: var(--primary-green);
    font-weight: bold;
}

/* ==========================================================================
   10. EXPERIENCE SECTION (CHUL COOKING)
   ========================================================================== */
.experience-section {
    background-color: var(--dark-surface);
    overflow: hidden;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.experience-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.experience-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-green-glow);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.experience-list-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.experience-list-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.experience-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    height: 450px;
}

.experience-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 13, 10, 0.9) 0%, rgba(11, 13, 10, 0.2) 60%, transparent 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.experience-tag {
    color: var(--primary-yellow);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.experience-caption {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
}

/* ==========================================================================
   11. COUNTER / STATS SECTION
   ========================================================================== */
.counter-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 13, 10, 0.88);
}

.counter-card {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px var(--primary-green-glow));
}

.counter-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ==========================================================================
   12. GALLERY SECTION
   ========================================================================== */
.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 13, 10, 0.95) 0%, rgba(11, 13, 10, 0.3) 70%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
}

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

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

.gallery-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    font-size: 0.8rem;
    color: var(--primary-yellow);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

@media (max-width: 991px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* ==========================================================================
   13. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--dark-surface);
}

.testimonial-card {
    padding: 3rem 2.5rem;
    margin: 1rem;
    height: auto;
    position: relative;
}

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

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-green);
    background: var(--dark-bg);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.swiper-pagination-bullet {
    background: var(--text-muted) !important;
    opacity: 0.4;
    transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
    background: var(--primary-green) !important;
    opacity: 1 !important;
    width: 20px !important;
    border-radius: 5px !important;
}

/* ==========================================================================
   14. CONTACT SECTION & CONTACT FORM
   ========================================================================== */
.contact-card {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    height: 100%;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: rgba(91, 192, 67, 0.25);
    transform: translateY(-3px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: var(--primary-green-glow);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-card-info a {
    font-size: 0.95rem;
    font-weight: 600;
}

.map-container {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Form Styles */
.form-glass {
    padding: 3rem 2.5rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.form-group-custom {
    position: relative;
    margin-bottom: 1.75rem;
}

.form-control-custom {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 15px rgba(91, 192, 67, 0.1);
}

textarea.form-control-custom {
    min-height: 150px;
    resize: none;
}

.form-label-custom {
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-control-custom:focus ~ .form-label-custom,
.form-control-custom:not(:placeholder-shown) ~ .form-label-custom {
    top: -0.65rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--primary-green);
    background: var(--dark-surface);
    padding: 0 0.5rem;
    border-radius: 4px;
}

/* Select Form Element styling */
.form-select-custom {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    outline: none;
    transition: var(--transition-fast);
}

.form-select-custom:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(91, 192, 67, 0.1);
}

.form-select-custom option {
    background: var(--dark-surface);
    color: var(--text-primary);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "\F229"; /* Bootstrap Icon Chevron Down */
    font-family: "bootstrap-icons";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

/* ==========================================================================
   15. FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: #060705;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.footer-hours-list li .day {
    font-weight: 600;
    color: var(--text-primary);
}

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

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background: var(--primary-green);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-green-glow);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ==========================================================================
   16. FLOATING WHATSAPP & BACK TO TOP BUTTONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    z-index: 1000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.float-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.float-btn-whatsapp:hover {
    color: #fff;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.float-btn-backtotop {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: var(--primary-green);
    opacity: 0;
    visibility: hidden;
}

.float-btn-backtotop.show {
    opacity: 1;
    visibility: visible;
}

.float-btn-backtotop:hover {
    background: var(--primary-green);
    color: #000;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 25px var(--primary-green-glow);
}

/* WhatsApp Mobile Sticky CTA */
.mobile-whatsapp-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 21, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--dark-surface-border);
    padding: 0.75rem 1.25rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
    transform: translateY(100%);
}

.mobile-whatsapp-cta.show {
    transform: translateY(0);
}

.btn-whatsapp-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    width: 100%;
    border-radius: 30px;
    padding: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
}

/* Hide on desktop, show on mobile */
@media (min-width: 768px) {
    .mobile-whatsapp-cta {
        display: none !important;
    }
}

/* ==========================================================================
   17. FRANCHISE PAGE TIMELINE & CARDS
   ========================================================================== */
.timeline-horizontal {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(255,255,255,0.06);
    z-index: 1;
}

.timeline-horizontal-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 15%;
}

.timeline-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dark-surface);
    border: 2px solid var(--dark-surface-border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem auto;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.timeline-horizontal-step:hover .timeline-step-number,
.timeline-horizontal-step.active .timeline-step-number {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #000;
    box-shadow: 0 0 20px var(--primary-green-glow);
    transform: scale(1.1);
}

.timeline-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .timeline-horizontal {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
        gap: 2.5rem;
    }
    
    .timeline-horizontal::before {
        top: 2rem;
        bottom: 2rem;
        left: 50px;
        width: 4px;
        height: auto;
    }
    
    .timeline-horizontal-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }
    
    .timeline-step-number {
        margin: 0;
        flex-shrink: 0;
    }
}

/* Accordion Custom Styling */
.accordion-custom .accordion-item {
    background: rgba(22, 27, 20, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-custom .accordion-item:hover {
    border-color: rgba(91, 192, 67, 0.2);
}

.accordion-custom .accordion-header {
    margin: 0;
}

.accordion-custom .accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.5rem 1.75rem;
    box-shadow: none;
    border: none;
    transition: var(--transition-fast);
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--primary-green);
    background: rgba(91, 192, 67, 0.03);
}

.accordion-custom .accordion-button::after {
    background-image: none;
    content: "\F282"; /* Bootstrap Icon plus */
    font-family: "bootstrap-icons";
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    color: var(--primary-green);
}

.accordion-custom .accordion-body {
    padding: 1.5rem 1.75rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
    background: rgba(91, 192, 67, 0.01);
}
