/* --- Custom Variables & Reset --- */
:root {
    --primary: #4A260F;
    --primary-light: #755039;
    --primary-dark: #2B1407;
    --accent: #C39B7C;
    --accent-light: #E5D5C5;
    --bg-warm: #F4EFE8;
    --bg-card: #FFFDF9;
    --text-dark: #2B211C;
    --text-muted: #6B5547;
    --white: #FFFDF9;
    --white-pure: #ffffff;
    --success: #2e7d32;
    --error: #c62828;
    
    --font-main: 'Cairo', 'Tajawal', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(74, 38, 15, 0.05), 0 2px 4px -1px rgba(74, 38, 15, 0.03);
    --shadow: 0 10px 30px -10px rgba(74, 38, 15, 0.12), 0 1px 3px rgba(74, 38, 15, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(74, 38, 15, 0.2), 0 5px 15px rgba(74, 38, 15, 0.08);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-warm);
    color: var(--text-dark);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

/* --- Button Component --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 38, 15, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #b58d6e;
    color: var(--white-pure);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(195, 155, 124, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

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

.btn-whatsapp-header {
    background-color: #25d366;
    color: white;
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 50px;
}

.btn-whatsapp-header i {
    margin-left: 6px;
    font-size: 1.1rem;
}

.btn-whatsapp-header:hover {
    background-color: #20ba5a;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.w-full {
    width: 100%;
}

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

.ml-2 {
    margin-left: 8px;
}

.mt-12 {
    margin-top: 3rem;
}

/* --- Section Layout --- */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Floating Whatsapp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(10deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* --- 1. HEADER & NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: rgba(244, 239, 232, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(74, 38, 15, 0.05);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

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

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

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

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

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 30px;
    padding: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 1050;
    box-shadow: var(--shadow-lg);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.close-drawer {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

.drawer-logo {
    display: flex;
    flex-direction: column;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
}

.drawer-link:hover {
    color: var(--primary);
    padding-right: 8px;
}

.drawer-footer {
    margin-top: auto;
}

/* --- 2. HERO SECTION --- */
.hero-section {
    min-height: 90vh;
    padding-top: 150px;
    display: flex;
    align-items: center;
    background-color: var(--bg-warm);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-bg-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(195, 155, 124, 0.15);
    top: -50px;
    left: -50px;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(74, 38, 15, 0.05);
    bottom: -100px;
    right: -100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(74, 38, 15, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 540px;
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
}

.hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-frame:hover .hero-img {
    transform: scale(1.05);
}

.hero-image-overlay-card {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 4px solid var(--accent);
}

.hero-image-overlay-card i {
    font-size: 24px;
    color: var(--primary);
}

.hero-image-overlay-card h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.hero-image-overlay-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- 3. ABOUT THE PLACE --- */
.about-section {
    background-color: var(--bg-card);
}

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

.about-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 20px;
}

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

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-card {
    background-color: var(--bg-warm);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(74, 38, 15, 0.05);
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-stat-card i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 12px;
}

.about-stat-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.about-stat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-image-column {
    position: relative;
}

.about-image-collage {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white-pure);
}

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

.about-image-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.about-image-badge .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.about-image-badge .text {
    font-size: 0.8rem;
}

/* --- 4. SERVICES AND FEATURES --- */
.services-section {
    background-color: var(--bg-warm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 30px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(74, 38, 15, 0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--accent-light);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(195, 155, 124, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    font-size: 22px;
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- 5 & 6. PRICING SECTION --- */
.pricing-section {
    background-color: var(--bg-card);
}

.pricing-subsection {
    margin-bottom: 60px;
}

.pricing-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    border-right: 4px solid var(--accent);
    padding-right: 12px;
    display: flex;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--bg-warm);
    border-radius: var(--border-radius-lg);
    padding: 35px 24px 30px 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(195, 155, 124, 0.4);
}

.pricing-card.popular {
    border-color: var(--primary);
    background-color: var(--white-pure);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: -35px;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 35px;
    transform: rotate(-45deg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-card-header h4 {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.pricing-card.popular .pricing-card-header h4 {
    color: var(--primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.price .currency {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.pricing-card-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-card-features ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card-features li {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card-features li i {
    color: var(--success);
    font-size: 14px;
}

.btn-book-pricing {
    margin-top: auto;
}

/* Group Card Specifics */
.group-info-alert {
    background-color: rgba(195, 155, 124, 0.15);
    border-right: 4px solid var(--accent);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.group-info-icon {
    font-size: 22px;
    color: var(--primary);
}

.group-info-text {
    font-size: 0.95rem;
    color: var(--primary-light);
}

.pricing-card.group-card {
    background-color: var(--bg-warm);
    border-color: rgba(74, 38, 15, 0.05);
}

.pricing-card.group-card.popular {
    border-color: var(--accent);
    background-color: var(--white-pure);
}

.group-badge {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(195, 155, 124, 0.2);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* --- 7. DRINKS MENU --- */
.menu-section {
    background-color: var(--bg-warm);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.menu-tab-btn {
    font-family: var(--font-main);
    background-color: var(--bg-card);
    border: 1px solid rgba(74, 38, 15, 0.08);
    color: var(--text-muted);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.menu-tab-btn i {
    font-size: 18px;
}

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

.menu-tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

/* Tab Pane Styling */
.menu-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.menu-item {
    background-color: var(--bg-card);
    padding: 20px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(74, 38, 15, 0.02);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent-light);
}

.menu-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(195, 155, 124, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.menu-item:hover .menu-item-icon {
    background-color: var(--primary);
    color: var(--white);
}

.menu-item-details {
    flex-grow: 1;
}

.menu-item-name-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6px;
}

.menu-item-name-price .name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-item-name-price .dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(117, 80, 57, 0.25);
    margin: 0 15px;
}

.menu-item-name-price .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.menu-item-details .desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- 8. PLACE INSTRUCTIONS --- */
.instructions-section {
    background-color: var(--bg-card);
}

.instructions-card {
    background-color: var(--bg-warm);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 38, 15, 0.05);
    position: relative;
}

.instructions-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.instructions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.instruction-item {
    display: flex;
    gap: 20px;
}

.instruction-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.instruction-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.instruction-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 9. RESERVATION FORM --- */
.reservation-section {
    background-color: var(--bg-warm);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.reservation-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.reservation-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.reservation-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 20px;
    color: var(--accent);
    margin-top: 4px;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.info-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.reservation-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(74, 38, 15, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-main);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid rgba(74, 38, 15, 0.15);
    background-color: var(--white-pure);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 38, 15, 0.08);
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: var(--error);
}

.error-msg {
    color: var(--error);
    font-size: 0.75rem;
    display: none;
    position: absolute;
    bottom: -18px;
    right: 0;
}

.form-group.invalid .error-msg {
    display: block;
}

.btn-submit-booking {
    padding: 15px;
    font-size: 1.05rem;
    margin-top: 10px;
}

/* --- 10. MONTHLY SUBSCRIPTION CTA --- */
.subscription-cta-section {
    background-color: var(--bg-card);
    padding: 40px 0;
}

.subscription-cta-card {
    background-color: var(--primary);
    border-radius: var(--border-radius-lg);
    padding: 50px 60px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    background-image: radial-gradient(circle at 10% 20%, rgba(117, 80, 57, 0.15) 0%, transparent 80%);
}

.subscription-content {
    max-width: 600px;
}

.sub-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(195, 155, 124, 0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 12px;
}

.subscription-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.subscription-content p {
    color: var(--accent-light);
    font-size: 1rem;
}

.subscription-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 250px;
}

.subscription-actions .btn {
    text-align: center;
}

/* --- 11. CONTACT SECTION --- */
.contact-section {
    background-color: var(--bg-warm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Defaults to single column, will adjust dynamically if map shown */
    gap: 40px;
}

/* Dynamic grid layout when map is active */
.contact-grid.has-map {
    grid-template-columns: 1.1fr 0.9fr;
}

.contact-info-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 38, 15, 0.04);
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 35px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-method-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(74, 38, 15, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

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

.contact-method-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-method-item a.phone-link,
.contact-method-item a.whatsapp-link,
.contact-method-item .working-hours-text,
.contact-method-item .address-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-method-item a:hover {
    color: var(--accent);
}

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

/* Map Card styles */
.map-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 38, 15, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-card h3 {
    font-size: 1.3rem;
}

.map-iframe-container {
    width: 100%;
    flex-grow: 1;
    min-height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(74, 38, 15, 0.1);
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- 12. FOOTER --- */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding-top: 70px;
    border-top: 4px solid var(--accent);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-title {
    color: var(--white);
    font-size: 2rem;
}

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

.brand-description {
    font-size: 0.9rem;
    color: var(--accent-light);
    line-height: 1.6;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--accent-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover i {
    transform: translateX(-5px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    font-size: 0.9rem;
    color: var(--accent-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-list li i {
    color: var(--accent);
    font-size: 14px;
}

.footer-contact-list a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 25px 0;
    font-size: 0.85rem;
    color: var(--accent-light);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.developer-tag {
    font-weight: 500;
}

/* --- Reveal Animations on Scroll --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-2 {
    transition-delay: 0.15s;
}

.delay-3 {
    transition-delay: 0.3s;
}


/* --- RESPONSIVENESS (MEDIA QUERIES) --- */

/* Desktop Extra Large */
@media (min-width: 1200px) {
    .container {
        padding: 0;
    }
}

/* Tablets and below (Laptop and Smaller) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-img {
        height: 380px;
    }
    
    .about-grid {
        gap: 45px;
    }
    
    .footer-grid {
        gap: 30px;
    }
}

/* Tablet (Portrait) */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Header mobile navigation hide */
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-whatsapp-header span {
        display: none; /* Hide text, keep icon on mobile header */
    }
    
    .btn-whatsapp-header {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .btn-whatsapp-header i {
        margin: 0;
    }
    
    /* Hero layout stack */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-frame {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-img {
        height: 320px;
    }
    
    /* About layout stack */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-collage {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Grid stack */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .instructions-card {
        padding: 40px 24px;
    }
    
    /* Reservation form stack */
    .reservation-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Subscription CTA stack */
    .subscription-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .subscription-actions {
        width: 100%;
    }
    
    /* Contact grid stack */
    .contact-grid.has-map {
        grid-template-columns: 1fr;
    }
    
    /* Footer layout stack */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-contact {
        align-items: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .brand-description {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .menu-tabs {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .menu-tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-quick-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-quick-actions .btn {
        width: 100%;
    }
    
    .reservation-card {
        padding: 24px 16px;
    }
}
