/* ==========================================================================
   Food'Amour Ltd - Stylesheet - Lively, Warm & Secure Design System
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FDFBF7; /* Warm Champagne Cream - soft and welcoming */
    --bg-dark: #1C1516; /* Balanced Charcoal-Plum for footer & heavy sections - dilutes the red */
    --bg-card-dark: #2A1F21;
    
    --primary-color: #7D1623; /* Softened Wine Burgundy - elegant and diluted */
    --primary-light: #9C2738;
    --accent-gold: #D4AF37; /* Warm Vibrant Gold - prestige & quality */
    --accent-gold-hover: #C59B27;
    --accent-gold-light: rgba(212, 175, 55, 0.08);
    --accent-gold-glow: rgba(212, 175, 55, 0.3);
    
    --accent-coral: #DF4D43; /* Softer Sunset Coral - brings life, energy, and appetite */
    --accent-coral-hover: #CD3D34;
    
    --text-main: #332729; /* Warm dark brown-charcoal */
    --text-muted: #726264; /* Soft warm gray */
    --text-light: #FFFFFF;
    --text-light-muted: #E2C6C9;
    
    --border-color: #EFE8E2;
    --border-gold: rgba(212, 175, 55, 0.4);
    --border-burgundy: rgba(125, 22, 35, 0.1);
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 4px 15px rgba(125, 22, 35, 0.02);
    --shadow-md: 0 10px 30px rgba(125, 22, 35, 0.04);
    --shadow-lg: 0 20px 50px rgba(125, 22, 35, 0.08);
}

/* --- Base & Reset Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

p {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-muted);
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 100px 0;
}

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

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

.text-muted {
    color: var(--text-muted);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

/* --- Section Headers --- */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.7rem;
    margin-bottom: 16px;
    position: relative;
    color: var(--primary-color);
}

/* Gradient Titles - lively, balanced and prestigious */
.gradient-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 60%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.15rem;
    font-weight: 300;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    border: none;
    box-shadow: 0 4px 15px rgba(125, 22, 35, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-hover) 100%);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(223, 77, 67, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(125, 22, 35, 0.1);
}

.btn-whatsapp-hero {
    background-color: #25D366;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp-hero:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-block {
    display: flex;
    width: 100%;
}

.icon-svg {
    margin-right: 10px;
}

/* --- Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    max-height: 48px;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

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

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background-color: var(--bg-dark);
    background-image: linear-gradient(135deg, rgba(28,21,22,0.85) 0%, rgba(125,22,35,0.6) 100%), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: 4.2rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 44px;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse-icon {
    display: block;
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 13px;
}

.wheel {
    display: block;
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    margin: 6px auto 0 auto;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* --- Trust / Assurance Section --- */
.assurance-section {
    background-color: var(--bg-primary);
}

.trust-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.trust-card:hover .trust-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--accent-gold);
    transform: rotate(360deg);
}

.trust-icon {
    width: 34px;
    height: 34px;
}

.trust-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Services Section --- */
.service-card {
    background-color: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

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

.service-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
}

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

.service-info {
    padding: 35px 30px;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-bullets {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.service-bullets li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.service-bullets li::before {
    content: '✓';
    color: var(--accent-coral);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* --- Menus Preview Section --- */
.tabs-container {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.tabs-headers {
    display: flex;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    padding: 22px;
    background: transparent;
    border: none;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    text-align: center;
}

.tab-btn:hover {
    color: var(--primary-color);
    background-color: rgba(125, 22, 35, 0.02);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: var(--bg-primary);
    font-weight: 600;
}

.tabs-contents {
    padding: 50px 40px;
    background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.menu-item {
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 24px;
}

.menu-item.complete-width {
    grid-column: span 2;
    border-bottom-style: solid;
    border-bottom-color: var(--border-color);
    padding-bottom: 30px;
}

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

.menu-item-header h4 {
    font-size: 1.35rem;
    color: var(--primary-color);
}

.menu-price {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    background-color: var(--accent-gold-light);
    border-radius: 50px;
    border: 1px solid var(--border-gold);
}

.menu-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-note text-center {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--primary-color);
}

/* --- Gallery Section --- */
.gallery-filters {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(125, 22, 35, 0.15);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    background-image: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 21, 22, 0.85); /* Diluted dark burgundy overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    border: 1px solid var(--border-gold);
    box-sizing: border-box;
    border-radius: 8px;
}

.gallery-overlay span {
    font-family: var(--font-serif);
    color: var(--text-light);
    font-size: 1.25rem;
    text-align: center;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-overlay span::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 10px auto 0 auto;
}

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

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

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

/* --- About Us Section --- */
.about-img-wrapper {
    position: relative;
    padding-right: 30px;
}

.about-img {
    height: 580px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-dark) 100%);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent-gold);
    animation: float 4s ease-in-out infinite;
}

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

.experience-badge .number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    color: var(--text-light-muted);
}

.about-content h2 {
    font-size: 2.7rem;
    margin-bottom: 24px;
}

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

.about-content p {
    font-size: 1rem;
    margin-bottom: 18px;
}

.about-metrics {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.metric {
    flex: 1;
}

.metric-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --- Reviews Section --- */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.stars {
    color: var(--accent-coral);
    font-size: 1.15rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    color: var(--text-main);
}

.review-text::before {
    content: '“';
    font-family: var(--font-serif);
    font-size: 4.5rem;
    color: rgba(125, 22, 35, 0.08);
    position: absolute;
    top: -30px;
    left: -15px;
    line-height: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-initials {
    width: 46px;
    height: 46px;
    background-color: var(--accent-gold-light);
    border: 1px solid var(--accent-gold);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.05rem;
}

.reviewer-name {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

/* --- Contact & Form Section --- */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-details-wrapper h2 {
    font-size: 2.7rem;
    margin-bottom: 24px;
}

.contact-lead {
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.contact-info-list {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.info-item:hover .info-icon {
    color: var(--accent-coral);
    border-color: var(--accent-coral);
    transform: translateY(-2px);
}

.info-text h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.info-text p {
    font-size: 1rem;
}

.contact-link:hover {
    color: var(--accent-coral);
}

.map-placeholder {
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #E2DFD2;
    background-image: radial-gradient(var(--accent-gold) 1.5px, transparent 1.5px), radial-gradient(var(--accent-gold) 1.5px, #FDF9F2 1.5px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.map-overlay {
    background-color: rgba(28, 21, 22, 0.93); /* Dark warm slate map overlay */
    color: var(--text-light);
    padding: 30px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
}

.map-overlay span {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.map-overlay .small-text {
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

/* Form Card Styling */
.form-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-size: 1.9rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.form-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.quote-form.hidden {
    display: none;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.required {
    color: var(--accent-coral);
    margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.98rem;
    transition: var(--transition-fast);
    color: var(--text-main);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(125, 22, 35, 0.1);
}

/* Error highlight border */
input.input-error,
select.input-error,
textarea.input-error {
    border-color: var(--accent-coral) !important;
    background-color: #FFF8F7 !important;
}

/* Error inline message text */
.error-msg {
    display: none;
    color: var(--accent-coral);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 5px;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237d1623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 44px;
}

textarea {
    resize: vertical;
}

/* Success Card & Summary */
.form-success-msg {
    text-align: center;
    padding: 20px 10px;
}

.form-success-msg.hidden {
    display: none;
}

.success-icon {
    width: 76px;
    height: 76px;
    background-color: var(--accent-gold-light);
    color: var(--primary-color);
    font-size: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
    border: 1px solid var(--accent-gold);
}

.form-success-msg h3 {
    font-size: 1.9rem;
    margin-bottom: 12px;
}

.form-success-msg p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.success-summary {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 24px;
    text-align: left;
    margin-bottom: 30px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.success-summary h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.success-summary p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.success-summary p strong {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--bg-dark); /* Now rich deep warm charcoal-plum (#1C1516), diluting the red */
    color: var(--text-light);
    padding: 90px 0 35px 0;
    border-top: 5px solid var(--accent-gold);
    background-image: linear-gradient(180deg, var(--bg-dark) 0%, #110D0E 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-img {
    max-height: 70px;
    width: auto;
}

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

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-grid h4 {
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 10px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-grid ul li {
    margin-bottom: 12px;
}

.footer-grid ul li a {
    color: var(--text-light-muted);
    font-size: 0.95rem;
}

.footer-grid ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

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

/* --- Floating Elements --- */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-floating-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Lightbox Modal --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 21, 22, 0.97); /* Softened burgundy-charcoal transparent filter */
    overflow: auto;
    backdrop-filter: blur(8px);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--text-light);
    font-size: 42px;
    font-weight: 300;
    transition: var(--transition-fast);
    cursor: pointer;
    z-index: 2100;
}

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

.lightbox-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.lightbox-content {
    max-width: 85%;
    max-height: 75vh;
    object-fit: contain;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    animation: zoom 0.4s ease;
}

@keyframes zoom {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    font-family: var(--font-serif);
    color: var(--text-light);
    font-size: 1.25rem;
    margin-top: 20px;
    text-align: center;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 20px;
    margin-top: -30px;
    color: var(--text-light);
    font-weight: bold;
    font-size: 32px;
    transition: var(--transition-fast);
    user-select: none;
    z-index: 2050;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

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

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2.1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .grid-2, .grid-3, .grid-4, .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--bg-primary);
        border-top: 1px solid var(--border-color);
        transition: var(--transition-smooth);
        padding: 40px 24px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .about-img-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-img {
        height: 380px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item.complete-width {
        grid-column: span 1;
    }
    
    .tabs-contents {
        padding: 24px;
    }
    
    .tab-btn {
        font-size: 1.05rem;
        padding: 14px 6px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-metrics {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-lg {
        padding: 14px 28px;
    }
}
