/* ==========================================
   Hillside Walk - Premium Design System
   ========================================== */

:root {
    /* Color Palette */
    --primary: #123c2d;       /* Premium Forest Green */
    --primary-light: #1b4d3e;
    --primary-dark: #0b251b;
    --accent: #f2a61f;        /* Energetic Gold/Amber */
    --accent-hover: #d99114;
    --text-dark: #0f172a;     /* Slate Dark */
    --text-muted: #475569;    /* Slate Gray */
    --bg-light: #f8fafc;      /* Crisp Off-White */
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    
    /* Layout Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.05), 0 6px 6px rgba(0,0,0,0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 25px 40px rgba(18, 60, 45, 0.12);
    --border-radius: 16px;
    --header-height: 80px;
}

/* ==========================================
   Resets & Base Styles
   ========================================== */

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

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

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Common Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 16px auto;
    border-radius: 2px;
}

.title-underline.left {
    margin: 16px 0;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 166, 31, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ==========================================
   Header & Navigation
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background-color: rgba(18, 60, 45, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

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

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

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

.instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.instagram-btn:hover {
    background-color: #e1306c;
    border-color: #e1306c;
    transform: scale(1.08);
}

.contact-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.contact-cta:hover {
    background-color: #ffffff;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.25);
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 1010;
}

/* ==========================================
   Mobile Menu Drawer
   ========================================== */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    padding: 100px 24px 40px 24px;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--accent);
    padding-left: 8px;
}

.mobile-drawer-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-drawer-cta {
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 14px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-drawer-social {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 37, 27, 0.95) 0%, rgba(18, 60, 45, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.rating-badge .stars {
    color: var(--accent);
    font-weight: 700;
}

.rating-badge .rating-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-features-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.preview-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.preview-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.preview-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.preview-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ==========================================
   Stats Banner
   ========================================== */

.stats-banner {
    background-color: var(--primary);
    color: #ffffff;
    padding: 30px 0;
    border-bottom: 4px solid var(--accent);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   Attractions Section (Cards Grid)
   ========================================== */

.attractions-section {
    background-color: var(--bg-light);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.attraction-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
}

.card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.card-price {
    background-color: rgba(18, 60, 45, 0.08);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 6px;
}

.card-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-features {
    list-style: none;
    margin-bottom: 24px;
    margin-top: auto;
}

.card-features li {
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
}

.check-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.card-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.card-btn:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
}

/* ==========================================
   Services Section (Alternating Blocks)
   ========================================== */

.services-section {
    background-color: #ffffff;
}

.services-row {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.service-box.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.service-image-box {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-md);
}

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

.service-box:hover .service-img {
    transform: scale(1.04);
}

.service-info {
    padding: 10px;
}

.service-tag {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-info p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.service-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-bullets .bullet {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* ==========================================
   About Section
   ========================================== */

.about-section {
    background-color: var(--bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 16px;
}

.about-highlights {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 16px;
}

.highlight-icon {
    font-size: 24px;
    background-color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.about-media {
    position: relative;
}

.media-stack {
    position: relative;
    padding-bottom: 40px;
}

.media-stack img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.media-accent-box {
    position: absolute;
    bottom: 0;
    right: 20px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 24px;
    border-radius: var(--border-radius);
    max-width: 280px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent);
}

.accent-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    font-size: 15px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.media-accent-box p {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
}

/* ==========================================
   Testimonials Section (Interactive Slider)
   ========================================== */

.testimonials-section {
    background-color: #ffffff;
}

.slider-outer {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.slider-container {
    position: relative;
    min-height: 260px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    position: relative;
}

.review-stars {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 24px;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.reviewer-info {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    background-color: var(--bg-light);
    color: var(--primary);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   Contact & Lead Form Section
   ========================================== */

.contact-section {
    background-color: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

a.method-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.method-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon.whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.method-icon.location {
    background-color: rgba(18, 60, 45, 0.1);
    color: var(--primary);
}

.method-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.method-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.hours-table-wrapper {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid var(--border-color);
}

.hours-table-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

/* Form Styling */
.contact-form-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-light);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(242, 166, 31, 0.1);
}

.submit-btn {
    background-color: #25d366; /* WhatsApp Green */
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.25);
}

.send-icon {
    flex-shrink: 0;
}

/* Mock Map styling */
.mock-map {
    margin-top: 30px;
    height: 150px;
    background-color: #e2e8f0;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 10 L100 10 M0 50 L100 50 M0 90 L100 90 M20 0 L20 100 M60 0 L60 100' stroke='%23cbd5e1' stroke-width='1.5'/%3E%3C/svg%3E");
}

.map-details {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background-color: rgba(18, 60, 45, 0.95);
    padding: 12px 18px;
    border-radius: 10px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.map-details h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
}

.map-details p {
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.map-link {
    font-size: 11px;
    font-weight: 700;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.map-link:hover {
    background-color: #ffffff;
    color: var(--primary);
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    transform: scale(1.05);
}

.footer-links h3,
.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

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

.footer-links ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Animations & Scroll Reveal Classes
   ========================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

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

/* Scroll reveal utility classes handled by JS Intersection Observer */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-box, .service-box.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-box.reverse .service-image-box {
        order: -1;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

/* Small Tablet / Large Mobile (768px) */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none; /* Hide on mobile - drawer used */
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 12px);
    }
    
    .stat-divider {
        display: none;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-features-preview {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .service-box {
        padding: 20px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .testimonial-slide {
        padding: 0 10px;
    }
    
    .review-text {
        font-size: 16px;
    }
}

/* ==========================================
   Menu Page Styles
   ========================================== */

.menu-banner {
    position: relative;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    background-image: url('assets/hero_banner.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.menu-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 37, 27, 0.95) 0%, rgba(18, 60, 45, 0.85) 100%);
    z-index: 1;
}

.menu-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.menu-banner-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.menu-banner-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

/* Search bar */
.menu-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

#menuSearch {
    width: 100%;
    padding: 16px 24px 16px 50px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

#menuSearch::placeholder {
    color: rgba(255,255,255,0.6);
}

#menuSearch:focus {
    border-color: var(--accent);
    background-color: rgba(255,255,255,0.15);
    box-shadow: 0 0 15px rgba(242, 166, 31, 0.2);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

/* Tabs */
.menu-tabs-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px; /* Right below header */
    z-index: 900;
}

.menu-tabs-scroll {
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.menu-tabs-scroll::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
    min-width: max-content;
}

.tab-btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Listings layout */
.menu-list-section {
    padding: 60px 0 100px 0;
}

.menu-category-block {
    margin-bottom: 60px;
}

.category-header {
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
    padding-left: 16px;
}

.category-header h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}

.category-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-item-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.menu-item-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(18, 60, 45, 0.15);
}

.menu-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-item-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.menu-item-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--primary);
    background-color: var(--bg-light);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Badges */
.item-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.item-badge.chef {
    background-color: rgba(242, 166, 31, 0.1);
    color: #c97d02;
}

.item-badge.bestseller {
    background-color: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.item-badge.category-badge {
    background-color: rgba(18, 60, 45, 0.08);
    color: var(--primary);
}

/* Empty State search */
.no-results {
    text-align: center;
    padding: 60px 0;
}

.no-results-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.no-results h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.no-results p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Floating WhatsApp Action */
.menu-floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.menu-floating-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-floating-cta a:hover {
    background-color: #128c7e;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

.hidden {
    display: none !important;
}

/* Responsive Menu styles */
@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-banner-content h1 {
        font-size: 36px;
    }
    
    .menu-tabs {
        padding: 16px;
    }
}

