/* 
   🍽️ Modern Restaurant Website Template
   Core Stylesheet - style.css
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- Root CSS Variables --- */
:root {
    /* Color Palette */
    --primary-color: #C0392B;     /* Burgundy */
    --primary-light: #E74C3C;
    --secondary-color: #F4A261;   /* Warm Terracotta Sand */
    --secondary-light: #F6B57E;
    --background-color: #FFF8F0;  /* Creamy Off-white */
    --dark-color: #2C3E50;        /* Slate Dark */
    --dark-muted: #4F5D73;
    --light-color: #FFFFFF;       /* Pure White */
    --success-color: #27AE60;     /* Soft Success Green */
    --gray-bg: #F9EFE5;
    
    /* Layout & Box Settings */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow-sm: 0 4px 10px rgba(44, 62, 80, 0.05);
    --box-shadow-md: 0 10px 30px rgba(44, 62, 80, 0.08);
    --box-shadow-lg: 0 20px 50px rgba(44, 62, 80, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Responsive Typography using clamp() */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --font-size-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --font-size-md: clamp(1.125rem, 1.05rem + 0.375vw, 1.35rem);
    --font-size-lg: clamp(1.35rem, 1.2rem + 0.75vw, 1.75rem);
    --font-size-xl: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
    --font-size-xxl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Layout Constants */
    --navbar-height: 80px;
    --max-width: 1200px;
}

/* --- Base Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.nav-active {
    overflow: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

h1 { font-size: var(--font-size-xxl); }
h2 { font-size: var(--font-size-xl); margin-bottom: var(--space-sm); }
h3 { font-size: var(--font-size-lg); }
h4 { font-size: var(--font-size-md); }

p {
    font-size: var(--font-size-base);
    color: var(--dark-muted);
    font-weight: var(--font-weight-regular);
    margin-bottom: var(--space-sm);
}

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

img, video {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* --- Global Utilities --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-padding {
    padding: var(--space-lg) 0;
}

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

.section-title {
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.section-title h2 {
    margin-bottom: var(--space-xs);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: var(--space-sm) auto 0 auto;
    border-radius: 2px;
}

/* --- Buttons & Action Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    outline: none;
    gap: 8px;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.15);
}

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

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.15);
}

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

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--dark-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

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

.btn-light:hover, .btn-light:focus {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: transparent;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.sticky {
    background-color: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow-sm);
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

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

.nav-link {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

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

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

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

.btn-nav-call {
    font-size: 1.1rem;
    color: var(--dark-color);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-bg);
}

.btn-nav-call:hover {
    color: var(--light-color);
    background-color: var(--primary-color);
    transform: rotate(15deg);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    background: transparent;
    border: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.75)), url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--light-color);
    padding-top: var(--navbar-height);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
}

.hero h1 {
    color: var(--light-color);
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-img-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
}

.about-img-container::before {
    content: '';
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    pointer-events: none;
    z-index: 2;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-container:hover .about-img {
    transform: scale(1.05);
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-badge {
    align-self: flex-start;
    background-color: var(--gray-bg);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.about-content h2 {
    margin-bottom: var(--space-sm);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

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

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background-color: var(--gray-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-text h4 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.stat-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Why Choose Us Section --- */
.why-us {
    background-color: var(--gray-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.why-card {
    background-color: var(--light-color);
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(44, 62, 80, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--secondary-color);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    display: inline-block;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--secondary-color);
}

.why-card h3 {
    margin-bottom: var(--space-sm);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
}

.why-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Menu Preview / Menu Section --- */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.tab-btn {
    background-color: var(--light-color);
    border: 1px solid rgba(44, 62, 80, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--dark-color);
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.menu-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(44, 62, 80, 0.05);
}

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

.menu-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.badge-veg-non {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge-veg-non.veg {
    background-color: rgba(39, 174, 96, 0.9);
    color: var(--light-color);
}

.badge-veg-non.non-veg {
    background-color: rgba(192, 57, 43, 0.9);
    color: var(--light-color);
}

.menu-info {
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: var(--space-xs);
}

.menu-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: var(--font-weight-semibold);
}

.menu-price {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.menu-desc {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.menu-cta-container {
    margin-top: var(--space-lg);
}

/* --- Gallery Page / Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 240px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--box-shadow-sm);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.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-color: rgba(44, 62, 80, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--light-color);
    padding: var(--space-sm);
    text-align: center;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

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

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

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: var(--light-color);
    font-family: var(--font-primary);
    margin-top: 15px;
    font-size: var(--font-size-base);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-color);
    font-size: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 10px;
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--secondary-color);
}

/* --- Reservation Section / Form --- */
.reservation-section {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.95)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: var(--light-color);
}

.reservation-section .section-title h2,
.reservation-section .section-title p {
    color: var(--light-color);
}

.reservation-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg) var(--space-md);
    box-shadow: var(--box-shadow-lg);
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(44, 62, 80, 0.4);
    color: var(--light-color);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    background-color: rgba(44, 62, 80, 0.7);
    box-shadow: 0 0 8px rgba(244, 162, 97, 0.3);
}

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

.form-group select option {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.error-text {
    font-size: 0.75rem;
    color: #FF6B6B;
    margin-top: 2px;
    display: none;
}

.form-group input.error + .error-text,
.form-group select.error + .error-text,
.form-group textarea.error + .error-text {
    display: block;
}

.reservation-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: var(--space-sm);
}

.reservation-submit .btn {
    width: 100%;
    max-width: 300px;
}

/* Success Modal Notification */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-box {
    background-color: var(--background-color);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    border: 1px solid rgba(44, 62, 80, 0.05);
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--success-color);
    margin-bottom: var(--space-sm);
}

.modal-box h3 {
    margin-bottom: var(--space-sm);
}

.modal-box p {
    color: var(--dark-muted);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
}

/* --- Customer Reviews Section (Swiper) --- */
.reviews-section {
    background-color: var(--light-color);
    overflow: hidden;
}

.reviews-slider {
    padding-bottom: 50px !important;
}

.review-card {
    background-color: var(--background-color);
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    margin: 15px auto;
    max-width: 600px;
    border: 1px solid rgba(44, 62, 80, 0.03);
}

.reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--space-sm) auto;
    border: 3px solid var(--secondary-color);
    object-fit: cover;
}

.review-stars {
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--dark-muted);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-sm);
}

.reviewer-name {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 1.05rem;
    color: var(--dark-color);
}

.reviewer-title {
    font-size: 0.8rem;
    color: var(--dark-muted);
}

/* Swiper styling customization */
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* --- FAQ Accordion Section --- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(44, 62, 80, 0.05);
}

.faq-header {
    padding: 20px var(--space-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.faq-header:hover {
    background-color: var(--gray-bg);
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1rem;
    transition: var(--transition-smooth);
    color: var(--dark-muted);
}

.faq-item.active .faq-header {
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content {
    padding: 0 var(--space-sm) 20px var(--space-sm);
    font-size: 0.95rem;
    color: var(--dark-muted);
}

/* --- Contact & Map Section --- */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-lg);
    align-items: flex-start;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-info-card {
    background-color: var(--light-color);
    padding: var(--space-sm);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(44, 62, 80, 0.05);
}

.contact-info-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background-color: var(--gray-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card h4 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--dark-muted);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Opening Hours Card */
.hours-card {
    background-color: var(--light-color);
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid rgba(44, 62, 80, 0.05);
}

.hours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.status-indicator {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.status-indicator.open {
    background-color: rgba(39, 174, 96, 0.15);
    color: var(--success-color);
}

.status-indicator.closed {
    background-color: rgba(192, 57, 43, 0.15);
    color: var(--primary-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(44, 62, 80, 0.1);
    padding-bottom: 8px;
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    font-weight: var(--font-weight-medium);
}

.hours-time {
    color: var(--dark-muted);
}

.map-wrapper {
    margin-top: var(--space-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    height: 400px;
}

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

/* Contact Form Specifics */
.contact-form-wrapper {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    box-shadow: var(--box-shadow-md);
    border: 1px solid rgba(44, 62, 80, 0.05);
}

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

.contact-form .form-group input,
.contact-form .form-group textarea {
    background-color: var(--background-color);
    border: 1.5px solid rgba(44, 62, 80, 0.15);
    color: var(--dark-color);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--light-color);
    box-shadow: 0 0 8px rgba(192, 57, 43, 0.15);
}

.contact-form .form-group label {
    color: var(--dark-color);
}

/* --- Footer --- */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--space-lg);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

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

.footer-logo {
    color: var(--light-color);
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    color: var(--secondary-color);
}

.footer-col h3 {
    color: var(--light-color);
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 5px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    margin-top: 5px;
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

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

.footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--secondary-color);
    margin-top: 4px;
}

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

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Newsletter Styles */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    outline: none;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: scale(1.05);
}

/* Bottom Bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

/* --- Secondary Page Headers --- */
.page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.75), rgba(44, 62, 80, 0.85)), url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: var(--light-color);
    padding: calc(var(--navbar-height) + 50px) 0 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--light-color);
    margin-bottom: var(--space-xs);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb a:hover {
    color: var(--light-color);
}

.breadcrumb i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}
