/* Amaris Beach Bar & Tavern - Premium Styling Sheet */

/* ==========================================================================
   1. Design System & CSS Variables
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #0B2545;       /* Deep Ocean Blue */
    --color-primary-rgb: 11, 37, 69;
    --color-secondary: #D4AF37;     /* Golden Sand */
    --color-secondary-hover: #C5A059;
    --color-bg-light: #F8F9FA;      /* Pure Soft Off-White */
    --color-bg-dark: #050C1A;       /* Deep Night Blue */
    --color-bg-dark-rgb: 5, 12, 26;
    --color-text-dark: #222222;
    --color-text-light: #F8F9FA;
    --color-text-muted-dark: #777777;
    --color-text-muted-light: #A0AAB5;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-bg-dark: rgba(5, 12, 26, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(15px);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transition & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    
    /* Layout */
    --header-height: 80px;
    --border-radius-premium: 16px;
}

/* ==========================================================================
   2. Reset & Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary-hover);
}

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

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

button {
    font-family: var(--font-body);
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

/* Language Visibility Controller */


/* Section Utilities */
.py-section {
    padding: 100px 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.text-center {
    text-align: center;
}
.dark-bg {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

/* Loader Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s var(--transition-smooth), visibility 0.6s var(--transition-smooth);
}
.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--color-secondary);
    margin-bottom: 20px;
    animation: pulseGlow 2s infinite ease-in-out;
}
.loader-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.loader-line::after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 40px;
    background: var(--color-text-light);
    animation: loaderMove 1.5s infinite linear;
}

@keyframes loaderMove {
    0% { left: -40px; }
    100% { left: 120px; }
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1.03); }
}

/* ==========================================================================
   3. Header & Navigation (PC & Mobile)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}
.main-header.scrolled {
    background-color: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    width: 90%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-indent: 4px;
    color: var(--color-text-light);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease, text-shadow 0.4s ease;
    display: inline-block;
}
.logo-link:hover .logo-text {
    color: var(--color-secondary);
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
}

.nav-menu {
    display: flex;
    gap: 35px;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link:hover {
    color: var(--color-secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Language Toggle */
.lang-toggle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}
.lang-toggle-btn:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Social Media */
.header-socials {
    display: flex;
    gap: 15px;
}
.header-socials a {
    color: var(--color-text-light);
    font-size: 1rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.header-socials a:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    background-color: rgba(212, 175, 55, 0.08);
}

/* Hamburger button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    z-index: 1010;
}
.hamburger-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition-smooth);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 1005;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.open {
    right: 0;
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-close {
    font-size: 1.5rem;
    color: var(--color-text-light);
}
.drawer-close:hover {
    color: var(--color-secondary);
}
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0;
}
.drawer-link {
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-light);
}
.drawer-link:hover {
    color: var(--color-secondary);
    padding-left: 10px;
}
.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.drawer-socials {
    display: flex;
    gap: 20px;
}
.drawer-socials a {
    font-size: 1.2rem;
    color: var(--color-text-light);
}
.drawer-lang {
    display: flex;
    gap: 15px;
}
.lang-select-btn {
    color: var(--color-text-muted-light);
    font-size: 0.9rem;
    font-weight: 600;
}
.lang-select-btn.active {
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}

/* ==========================================================================
   4. Hero Section (Visual Opener)
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-text-light);
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(5, 12, 26, 0.5) 0%, 
        rgba(5, 12, 26, 0.4) 50%, 
        rgba(5, 12, 26, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 700;
    letter-spacing: 12px;
    text-indent: 12px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: linear-gradient(180deg, #FFFFFF 30%, #E2D1A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-wrapper {
    margin-bottom: 40px;
}
.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-secondary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.hero-desc {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button UI Components */
.btn {
    display: inline-block;
    padding: 16px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}
.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-bg-dark);
}
.btn-primary:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-dark);
    border-color: var(--color-text-light);
    transform: translateY(-3px);
}
.btn-block {
    display: block;
    width: 100%;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.scroll-arrow {
    font-size: 1.2rem;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100%, 20% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ==========================================================================
   5. About Us Section (Storyteller layout)
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--color-primary);
}
.dark-bg .section-title {
    color: var(--color-text-light);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted-dark);
    margin-bottom: 35px;
}
.dark-bg .section-desc {
    color: var(--color-text-muted-light);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.feature-item {
    display: flex;
    gap: 20px;
}
.feature-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.feature-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-primary);
}
.feature-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted-dark);
}

/* Collaged Images */
.about-images-column {
    position: relative;
    height: 520px;
}
.image-wrapper {
    position: absolute;
    border-radius: var(--border-radius-premium);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.image-wrapper img:hover {
    transform: scale(1.05);
}
.img-1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 350px;
    z-index: 2;
}
.img-2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 320px;
    z-index: 1;
}
.experience-badge {
    position: absolute;
    bottom: 50px;
    left: 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    border: 4px solid var(--color-secondary);
}
.experience-badge .num {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 5px;
}
.experience-badge .text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   6. Interactive Menu Section
   ========================================================================== */
.menu-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
}
.min-consumption-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 15px;
    color: var(--color-secondary);
    text-align: left;
}
.tavern-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 15px;
    color: var(--color-text-muted-light);
    text-align: left;
    margin-left: 10px;
}

.menu-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.menu-tabs {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
}
.menu-tab-btn {
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.menu-tab-btn.active {
    background-color: var(--color-secondary);
    color: var(--color-bg-dark);
}

/* Menu Search */
.menu-search-wrapper {
    max-width: 500px;
    margin: 0 auto 40px auto;
}
.search-input-container {
    position: relative;
    width: 100%;
}
.menu-search-input {
    width: 100%;
    padding: 15px 50px 15px 50px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}
.menu-search-input:focus {
    border-color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}
.search-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--color-text-muted-light);
    font-size: 1.1rem;
}
.clear-search-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--color-text-muted-light);
    font-size: 1.1rem;
    display: none;
}
.clear-search-btn.show {
    display: block;
}

/* Category Filters Quick Nav */

.cat-filter-pill {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted-light);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.cat-filter-pill:hover,
.cat-filter-pill.active {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background-color: rgba(212, 175, 55, 0.05);
}

/* Menu Content Grid */
.menu-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
    margin-bottom: 60px;
}

/* Dynamic category headers in list */
.menu-category-section-header {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    margin-top: 30px;
    letter-spacing: 2px;
}

/* Menu Item Card (Dotted Price List Style) */
.menu-item-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition-smooth);
}
.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.menu-item-title-wrapper {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
}
.menu-item-separator {
    flex-grow: 1;
    height: 1px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 0 15px 4px 15px;
}
.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
}
.menu-item-description {
    font-size: 0.85rem;
    color: var(--color-text-muted-light);
    line-height: 1.4;
}

/* Menu Notes */
.menu-notes {
    margin-top: 40px;
    font-size: 0.8rem;
    color: var(--color-text-muted-light);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ==========================================================================
   7. Contact Section & Forms
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 35px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.form-group {
    position: relative;
    width: 100%;
}

/* Floating Label Input Style */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid rgba(11, 37, 69, 0.15);
    background-color: var(--color-bg-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}
.form-group textarea {
    resize: none;
}
.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted-dark);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition-smooth);
    background-color: var(--color-bg-light);
    padding: 0 6px;
}
.form-group textarea ~ label {
    top: 28px;
}

/* Floating Label Trigger States */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    color: var(--color-secondary);
    font-weight: 600;
}

.form-feedback {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    min-height: 20px;
}
.form-feedback.success {
    color: #2e7d32;
}
.form-feedback.error {
    color: #c62828;
}

/* Contact Details Info Card */
.info-card {
    background: #FFFFFF;
    border-radius: var(--border-radius-premium);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 40px;
}
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.info-item:last-child {
    margin-bottom: 0;
}
.info-icon {
    font-size: 1.3rem;
    color: var(--color-secondary);
    width: 45px;
    height: 45px;
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-primary);
}
.info-text p,
.info-text a {
    font-size: 0.95rem;
    color: var(--color-text-muted-dark);
}
.info-text a:hover {
    color: var(--color-secondary);
}

.map-container {
    border-radius: var(--border-radius-premium);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 250px;
}

/* ==========================================================================
   8. Footer Section
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--glass-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand .logo-text {
    display: block;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
    max-width: 350px;
}
.footer-links h4,
.footer-social-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--color-secondary);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
}
.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-social-column .social-icons {
    display: flex;
    gap: 15px;
}
.footer-social-column .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}
.footer-social-column .social-icons a:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted-light);
}

/* ==========================================================================
   9. Scroll Animation Classes (Intersection Observer)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero animations on load */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1.2s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.2s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   10. Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images-column {
        height: 450px;
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .menu-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    /* Navigation drawer reveal */
    .nav-menu,
    .header-socials {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .py-section {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        left: 0;
    }
    .experience-badge .num {
        font-size: 1.4rem;
    }
    .experience-badge .text {
        font-size: 0.55rem;
    }
    .menu-tabs {
        width: 100%;
    }
    .menu-tab-btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Language Hiding Rules for 6 Languages
   ========================================================================== */
.de, .sr, .uk, .ru {
    display: none;
}

body.lang-el .en, body.lang-el .de, body.lang-el .sr, body.lang-el .uk, body.lang-el .ru { display: none !important; }
body.lang-en .el, body.lang-en .de, body.lang-en .sr, body.lang-en .uk, body.lang-en .ru { display: none !important; }
body.lang-de .el, body.lang-de .en, body.lang-de .sr, body.lang-de .uk, body.lang-de .ru { display: none !important; }
body.lang-sr .el, body.lang-sr .en, body.lang-sr .de, body.lang-sr .uk, body.lang-sr .ru { display: none !important; }
body.lang-uk .el, body.lang-uk .en, body.lang-uk .de, body.lang-uk .sr, body.lang-uk .ru { display: none !important; }
body.lang-ru .el, body.lang-ru .en, body.lang-ru .de, body.lang-ru .sr, body.lang-ru .uk { display: none !important; }

body.lang-el .el { display: inline; }
body.lang-en .en { display: inline; }
body.lang-de .de { display: inline; }
body.lang-sr .sr { display: inline; }
body.lang-uk .uk { display: inline; }
body.lang-ru .ru { display: inline; }

body.lang-el p.el, body.lang-el div.el, body.lang-el h2.el, body.lang-el h3.el, body.lang-el h4.el { display: block; }
body.lang-en p.en, body.lang-en div.en, body.lang-en h2.en, body.lang-en h3.en, body.lang-en h4.en { display: block; }
body.lang-de p.de, body.lang-de div.de, body.lang-de h2.de, body.lang-de h3.de, body.lang-de h4.de { display: block; }
body.lang-sr p.sr, body.lang-sr div.sr, body.lang-sr h2.sr, body.lang-sr h3.sr, body.lang-sr h4.sr { display: block; }
body.lang-uk p.uk, body.lang-uk div.uk, body.lang-uk h2.uk, body.lang-uk h3.uk, body.lang-uk h4.uk { display: block; }
body.lang-ru p.ru, body.lang-ru div.ru, body.lang-ru h2.ru, body.lang-ru h3.ru, body.lang-ru h4.ru { display: block; }

/* ==========================================================================
   Desktop Language Dropdown Selector
   ========================================================================== */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-text-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    backdrop-filter: var(--glass-blur);
}

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-glow);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(5, 12, 26, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-premium);
    padding: 8px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1100;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-premium);
}

/* Show dropdown on hover */
.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown:focus-within .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu button {
    background: transparent;
    border: none;
    color: var(--color-text-muted-light);
    padding: 10px 14px;
    border-radius: 8px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.lang-dropdown-menu button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-secondary);
}

/* ==========================================================================
   Sticky Categories Bar
   ========================================================================== */
.category-filters-container {
    position: sticky;
    top: 70px;
    z-index: 500;
    background: rgba(5, 12, 26, 0.95);
    padding: 16px 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    border-radius: var(--border-radius-premium);
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Offset for mobile header height */
@media (max-width: 768px) {
    .category-filters-container {
        position: sticky;
        top: 70px;
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px 15px;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 30px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    
    .category-filters-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }
    
    .category-filters-container .cat-filter-pill {
        white-space: nowrap; /* Prevent text wrapping */
        flex-shrink: 0;
    }
}

/* ==========================================================================
   Testimonials / Reviews Section
   ========================================================================== */
.reviews-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(5, 12, 26, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.rating-summary-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px 40px;
    border-radius: var(--border-radius-premium);
    backdrop-filter: var(--glass-blur);
    margin-top: 20px;
    box-shadow: var(--shadow-premium);
}

.rating-score-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.rating-stars {
    font-size: 1.2rem;
    color: var(--color-secondary);
    display: flex;
    gap: 3px;
    text-shadow: var(--shadow-glow);
}

.rating-count {
    font-size: 0.85rem;
    color: var(--color-text-muted-light);
    letter-spacing: 0.5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-premium);
    padding: 35px;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.review-stars-active {
    font-size: 0.95rem;
    color: var(--color-secondary);
    display: flex;
    gap: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-text-muted-light);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
    font-style: italic;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}

.author-avatar {
    font-size: 2.2rem;
    color: var(--color-secondary);
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.review-source {
    font-size: 0.8rem;
    color: var(--color-text-muted-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-source i {
    font-size: 0.9rem;
}

/* Adjust responsiveness */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rating-summary-card {
        padding: 15px 25px;
    }
}

