/* ==========================================================================
   CSS ARCHITECTURE: DESIGN SYSTEM ROOT CONSTANTS
   ========================================================================== */
:root {
    /* Color Architectural Matrix */
    --primary-blue: #1565C0;
    --primary-green: #2E7D32;
    --accent-red: #D32F2F;
    --bg-light: #F8FAFC;
    --bg-dark: #111827;
    --bg-dark-card: #1F2937;
    --card-light: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #F9FAFB;
    
    /* Linear Button Gradient */
    --btn-gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    --btn-gradient-hover: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    
    /* Structural Typography Core */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Corner Radius Constraints */
    --radius-standard: 22px;
    --radius-pill: 50px;
    
    /* Box Elevation Shadows */
    --shadow-soft: 0 10px 30px -5px rgba(31, 41, 55, 0.05);
    --shadow-medium: 0 20px 40px -10px rgba(31, 41, 55, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(21, 101, 192, 0.06);
    
    /* Performance Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   GLOBAL RESET BASE & RESETS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button, input, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.bg-dark {
    background-color: var(--bg-dark) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Reusable Dynamic Grid Matrix */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-light) !important; }
.row-gap-30 { row-gap: 30px; }
.row-gap-40 { row-gap: 40px; }
.row-gap-50 { row-gap: 50px; }
.column-gap-15 { column-gap: 15px; }
.column-gap-60 { column-gap: 60px; }

/* Micro Badge UI Assets */
.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.section-badge.badge-accent {
    color: var(--primary-green);
}

.badge-red {
    background-color: var(--accent-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 6px;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 50px;
}

/* ==========================================================================
   PERFORMANCE LOADER & PROGRESS MONITOR
   ========================================================================== */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.loader-bar {
    width: 140px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--btn-gradient);
    animation: loadingAnim 1.4s infinite ease-in-out;
}

@keyframes loadingAnim {
    0% { left: -50%; }
    100% { left: 100%; }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--btn-gradient);
    z-index: 10001;
    transition: width 0.1s linear;
}

/* ==========================================================================
   PREMIUM STICKY NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 10000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 14px 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.navbar.scrolled .logo {
    color: var(--text-primary);
}

.logo span {
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    column-gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 6px 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-light);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-blue);
}

/* Modern Gradient Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--btn-gradient);
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.25);
}

.btn-primary:hover {
    background: var(--btn-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    column-gap: 8px;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-btn {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    background: var(--btn-gradient);
    color: var(--text-light);
}

.nav-btn:hover {
    background: var(--btn-gradient-hover);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.2);
}

.res-mobile-btn {
    display: none;
}

/* Hamburger Mechanical Architecture */
.hamburger {
    display: none;
    flex-direction: column;
    row-gap: 6px;
    background: transparent;
    cursor: pointer;
}

.hamburger .bar {
    width: 26px;
    height: 2.5px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .hamburger .bar {
    background-color: var(--text-primary);
}

/* ==========================================================================
   PARALLAX HERO SECTION INTERFACE
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Pure CSS Parallax Engine */
    display: flex;
    justify-content: center;
    align-items: center;
    text-center: center;
    padding: 0 24px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.7) 0%, rgba(17, 24, 39, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    color: #FBBF24; /* Soft Gold Highlight */
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: rgba(243, 244, 246, 0.85);
    font-size: 17px;
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

/* Mechanical Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    display: block;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.6s infinite ease-in-out;
}

@keyframes mouseScroll {
    0% { opacity: 0; top: 8px; }
    20% { opacity: 1; }
    80% { opacity: 0; top: 24px; }
    100% { opacity: 0; top: 24px; }
}

/* ==========================================================================
   ABOUT SECTION ARCHITECTURE
   ========================================================================== */
.about-wrapper {
    display: flex;
    align-items: center;
    column-gap: 80px;
}

.about-content {
    flex: 1;
}

.about-text-highlight {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.about-description {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    column-gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.about-features li i {
    color: var(--primary-green);
    font-size: 18px;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-img-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-standard);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-img-frame img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-frame:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   WHY CHOOSE US: CLASSIC GLASSMORPHISM MATRIX
   ========================================================================== */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-standard);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(21, 101, 192, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
    border: 1px solid rgba(21, 101, 192, 0.2);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--btn-gradient);
    color: var(--text-light);
    border-color: transparent;
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   DYNAMIC GASTRONOMY MENU INTERFACE
   ========================================================================== */
.tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-pill);
    background-color: var(--card-light);
    color: var(--text-secondary);
    border: 1px solid rgba(21, 101, 192, 0.08);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--btn-gradient);
    color: var(--text-light);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.15);
}

.menu-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-item-card {
    background-color: var(--card-light);
    border-radius: var(--radius-standard);
    padding: 28px 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(21, 101, 192, 0.03);
    transition: var(--transition-smooth);
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(21, 101, 192, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    column-gap: 15px;
}

.menu-item-header h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.menu-item-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-green);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
}

/* ==========================================================================
   SPECIAL DISHES: CHEF'S SELECTION
   ========================================================================== */
.special-card {
    background-color: var(--card-light);
    border-radius: var(--radius-standard);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(21, 101, 192, 0.03);
    position: relative;
    transition: var(--transition-smooth);
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.special-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-red);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    z-index: 2;
}

.special-img {
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.special-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.special-card:hover .special-img img {
    transform: scale(1.08);
}

.special-info {
    padding: 30px;
}

.special-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.special-info p {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    height: 64px;
    overflow: hidden;
}

.special-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
}

.special-footer .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.order-btn {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.order-btn:hover {
    color: var(--primary-blue);
}

/* ==========================================================================
   GALLERY & LIGHTBOX MATRIX
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-standard);
    overflow: hidden;
    height: 240px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 101, 192, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--text-light);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Mechanical UI Overlay */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100000;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 85%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 44px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   CUSTOMER REVIEWS SLIDER ARCHITECTURE
   ========================================================================== */
.slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-slide {
    min-width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 60px;
    border-radius: var(--radius-standard);
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.review-slide .rating {
    color: #FBBF24;
    font-size: 16px;
    margin-bottom: 24px;
}

.review-slide .review-text {
    font-family: var(--font-heading);
    color: #E5E7EB;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.review-slide .customer-name {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-slide .customer-status {
    color: var(--primary-green);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 0 20px;
}

.slider-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--btn-gradient);
    border-color: transparent;
}

.slider-dots {
    display: flex;
    column-gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--primary-blue);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   CONTACT CORE & RESERVATION ENGINE
   ========================================================================== */
.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-panel-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 40px;
}

.info-details-block {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.info-item {
    display: flex;
    column-gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background-color: rgba(21, 101, 192, 0.06);
    color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.info-item p {
    font-size: 14.5px;
    color: var(--text-secondary);
}

.info-item .phone-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 2px;
}

.maps-link-btn {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 8px;
}

.maps-link-btn:hover {
    color: var(--primary-blue);
}

/* Glassmorphism Reservation Panel */
.contact-form-panel {
    background-color: var(--card-light);
    border: 1px solid rgba(21, 101, 192, 0.05);
    border-radius: var(--radius-standard);
    padding: 45px;
    box-shadow: var(--shadow-medium);
}

.form-panel-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group textarea {
    padding: 14px 20px;
    border-radius: 12px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group textarea:focus {
    background-color: #FFFFFF;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.08);
}

.btn-submit {
    width: 100%;
    background: var(--btn-gradient);
    color: var(--text-light);
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    column-gap: 10px;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.15);
}

.btn-submit:hover {
    background: var(--btn-gradient-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER AREA ARCHITECTURE
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-col class {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary-green);
}

.footer-moto {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 360px;
}

.social-row {
    display: flex;
    column-gap: 12px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #D1D5DB;
    transition: var(--transition-smooth);
}

.social-row a:hover {
    background: var(--btn-gradient);
    color: var(--text-light);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.footer-links-col a {
    font-size: 14px;
    color: #9CA3AF;
}

.footer-links-col a:hover {
    color: var(--primary-blue);
    padding-left: 4px;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.footer-contact-col p {
    font-size: 14px;
    color: #9CA3AF;
    display: flex;
    align-items: flex-start;
    column-gap: 12px;
}

.footer-contact-col p i {
    color: var(--primary-green);
    margin-top: 4px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
    margin-bottom: 30px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-row p {
    font-size: 13px;
    color: #6B7280;
}

/* ==========================================================================
   FLOATING UTILITY SYSTEM LAYERS
   ========================================================================== */
.floating-cta-cluster {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    z-index: 9999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-2px);
}

.float-btn.whatsapp {
    background-color: #25D366;
}

.float-btn.call {
    background-color: var(--primary-blue);
}

.float-btn.back-to-top {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.float-btn.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE LAYOUT ENGINE (MOBILE FIRST MEDIA QUERY SHEETS)
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-title {
        font-size: 52px;
    }
    .about-wrapper {
        column-gap: 40px;
    }
    .footer-top-grid {
        grid-template-columns: 1.5fr 1fr 1.2fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    .section-title {
        font-size: 32px;
        margin-bottom: 36px;
    }
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    /* Navigation Layer Restructure */
    .hamburger {
        display: flex;
        z-index: 10002;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        row-gap: 30px;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-light) !important;
        font-size: 18px;
    }
    
    .res-desktop-btn {
        display: none;
    }
    
    .res-mobile-btn {
        display: inline-flex;
        margin-top: 10px;
    }
    
    /* Active Hamburger Cross Toggle State */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
        background-color: var(--text-light);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
        background-color: var(--text-light);
    }
    
    /* Hero Adjustments */
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-buttons {
        flex-direction: column;
        row-gap: 14px;
        padding: 0 20px;
    }
    
    /* About Restructure */
    .about-wrapper {
        flex-direction: column;
        row-gap: 40px;
    }
    .about-image-wrapper {
        order: 2;
    }
    .about-content {
        order: 1;
    }
    
    /* Tabs & Content UI adjustments */
    .tabs-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        white-space: nowrap;
    }
    .tab-btn {
        padding: 8px 18px;
    }
    
    /* Component Overrides */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-slide {
        padding: 40px 24px;
    }
    .review-slide .review-text {
        font-size: 16px;
    }
    .contact-form-panel {
        padding: 30px 20px;
    }
    .input-row-mobile {
        grid-template-columns: 1fr;
        row-gap: 0;
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .floating-cta-cluster {
        bottom: 20px;
        right: 20px;
    }
}