/* =============================================
   لكمة الصياد - مطعم سمك مسكوف
   Heritage Theme - Ahwar Inspired Design
   ============================================= */

/* ===== CSS Variables ===== */
:root {
    --gold: #c8956c;
    --gold-light: #e8c4a0;
    --gold-dark: #a67347;
    --brown-dark: #2c1810;
    --brown: #3d2517;
    --brown-medium: #5a3a28;
    --brown-light: #8b6348;
    --cream: #f5ede4;
    --cream-dark: #e8d8c8;
    --cream-light: #faf6f1;
    --marsh-green: #4a6741;
    --marsh-dark: #2e4228;
    --water-blue: #5a8fa8;
    --reed-color: #8b7355;
    --font-heading: 'Aref Ruqaa Ink', serif;
    --font-body: 'Cairo', sans-serif;
    --font-accent: 'Amiri', serif;
    --shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
    --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream-light);
    color: var(--brown-dark);
    overflow-x: hidden;
    line-height: 1.8;
}

::selection {
    background-color: var(--gold);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brown-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.fish-loader {
    margin-bottom: 20px;
}

.fish-svg {
    width: 120px;
    height: 72px;
    animation: fishSwim 2s ease-in-out infinite;
}

@keyframes fishSwim {
    0%, 100% { transform: translateX(-10px) scaleX(-1); }
    50% { transform: translateX(10px) scaleX(-1); }
}

.loading-text {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotPulse 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ===== Navbar ===== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(15px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 15px rgba(200, 149, 108, 0.4);
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(15deg) scale(1.1);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    display: block;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold) !important;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.btn-outline-gold {
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 149, 108, 0.4);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(44, 24, 16, 0.85), rgba(61, 37, 23, 0.75)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%232c1810" width="800" height="600"/><g fill-opacity="0.15"><circle fill="%23c8956c" cx="400" cy="300" r="200"/><circle fill="%23a67347" cx="200" cy="150" r="150"/><circle fill="%238b6348" cx="600" cy="450" r="180"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center top, rgba(200, 149, 108, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(90, 143, 168, 0.08) 0%, transparent 50%);
    z-index: 1;
}

/* Pattern overlay - heritage geometric pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 149, 108, 0.5) 50px, rgba(200, 149, 108, 0.5) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 149, 108, 0.5) 50px, rgba(200, 149, 108, 0.5) 51px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Marsh Reeds Animation */
.marsh-reeds {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: 2;
    pointer-events: none;
}

.reed {
    position: absolute;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to top, var(--reed-color), rgba(139, 115, 85, 0.3));
    border-radius: 2px 2px 0 0;
    transform-origin: bottom center;
    animation: reedSway 4s ease-in-out infinite;
}

.reed::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -8px;
    width: 20px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(139, 115, 85, 0.6), transparent);
    border-radius: 50%;
}

.reed-1 { left: 5%; height: 180px; animation-delay: 0s; }
.reed-2 { left: 10%; height: 150px; animation-delay: 0.5s; }
.reed-3 { left: 15%; height: 200px; animation-delay: 1s; }
.reed-4 { right: 5%; height: 170px; animation-delay: 0.3s; }
.reed-5 { right: 12%; height: 190px; animation-delay: 0.8s; }
.reed-6 { right: 18%; height: 140px; animation-delay: 1.2s; }

@keyframes reedSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Water Effect */
.water-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23f5ede4" fill-opacity="0.15" d="M0,50 C360,100 720,0 1080,50 C1260,75 1440,50 1440,50 L1440,100 L0,100 Z"/></svg>');
    background-size: 50% 100%;
    animation: waveMove 8s linear infinite;
}

.wave-2 {
    opacity: 0.5;
    animation: waveMove 12s linear infinite reverse;
    bottom: -5px;
}

.wave-3 {
    opacity: 0.3;
    animation: waveMove 15s linear infinite;
    bottom: -10px;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(33.33%); }
}

/* Hero Content */
.hero-badge {
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid rgba(200, 149, 108, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 2px;
    backdrop-filter: blur(5px);
    background: rgba(200, 149, 108, 0.08);
    margin-bottom: 20px;
}

.hero-badge .fa-star {
    font-size: 0.7rem;
    margin: 0 5px;
    color: var(--gold);
}

.hero-title {
    color: white;
    margin-bottom: 20px;
}

.title-accent {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--gold-light);
    display: block;
    margin-bottom: 5px;
    letter-spacing: 5px;
}

.title-main {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.2;
    display: inline-block;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    gap: 15px;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.hero-divider::after {
    background: linear-gradient(to left, transparent, var(--gold));
}

.divider-fish {
    color: var(--gold);
    font-size: 1.5rem;
    animation: fishFloat 3s ease-in-out infinite;
}

@keyframes fishFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.hero-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 2;
    font-family: var(--font-body);
}

.hero-buttons {
    margin-bottom: 60px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 149, 108, 0.5);
    color: white;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-outline-light {
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--gold);
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== Section Styles ===== */
.section-padding {
    padding: 100px 0;
}

.bg-warm {
    background-color: var(--cream);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 5px 20px;
    border-radius: 50px;
    background: rgba(200, 149, 108, 0.1);
    border: 1px solid rgba(200, 149, 108, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--brown-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-desc {
    color: var(--brown-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--brown), var(--brown-medium));
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.about-experience {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(200, 149, 108, 0.4);
    z-index: 2;
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.about-pattern {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: 20px;
    opacity: 0.3;
    z-index: 0;
}

.about-text {
    color: var(--brown-medium);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 2;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(200, 149, 108, 0.15);
    transition: var(--transition);
}

.feature-item:hover {
    padding-right: 10px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.15), rgba(200, 149, 108, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.4rem;
    margin-left: 15px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    transform: rotate(5deg);
}

.feature-info h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 2px;
    color: var(--brown-dark);
}

.feature-info p {
    margin: 0;
    color: var(--brown-light);
    font-size: 0.9rem;
}

/* ===== Stats Section ===== */
.stats-section {
    position: relative;
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(44, 24, 16, 0.9), rgba(61, 37, 23, 0.85)),
        linear-gradient(45deg, var(--brown-dark), var(--brown));
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(200,149,108,.5) 30px, rgba(200,149,108,.5) 31px);
}

.stat-card {
    padding: 30px 15px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    color: white;
    font-size: 2.8rem;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===== Menu Section ===== */
.menu-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--cream-dark);
    color: var(--brown-medium);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 149, 108, 0.3);
}

.menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    position: relative;
    overflow: hidden;
}

.menu-placeholder {
    background: linear-gradient(135deg, var(--brown), var(--brown-medium));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.menu-card:hover .menu-placeholder {
    transform: scale(1.05);
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.menu-badge.special {
    background: linear-gradient(135deg, var(--marsh-green), var(--marsh-dark));
}

.menu-card-body {
    padding: 25px;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin: 0;
}

.menu-price {
    background: rgba(200, 149, 108, 0.1);
    color: var(--gold-dark);
    padding: 4px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.menu-desc {
    color: var(--brown-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.menu-meta {
    display: flex;
    gap: 20px;
    color: var(--brown-light);
    font-size: 0.85rem;
}

.menu-meta i {
    color: var(--gold);
    margin-left: 5px;
}

/* Menu filter animation */
.menu-item {
    transition: all 0.5s ease;
}

.menu-item.hidden {
    display: none;
}

/* ===== Special Offer ===== */
.special-offer {
    position: relative;
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(200, 149, 108, 0.9), rgba(166, 115, 71, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><rect fill="none" width="80" height="80"/><path fill="rgba(255,255,255,0.05)" d="M0 0h40v40H0zM40 40h40v40H40z"/></svg>');
    overflow: hidden;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.offer-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
}

.offer-price-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.offer-old-price {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.offer-new-price {
    display: block;
    color: white;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

/* ===== Gallery Section ===== */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 220px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item.tall {
    height: 460px;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brown), var(--brown-medium));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    gap: 10px;
    font-family: var(--font-heading);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ===== Testimonials ===== */
.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--brown-medium);
    line-height: 2;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.author-info h5 {
    font-family: var(--font-heading);
    margin-bottom: 0;
    color: var(--brown-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gold-dark);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--gold);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* ===== Contact Section ===== */
.contact-info-card {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    border-radius: 20px;
    padding: 40px;
    color: white;
    height: 100%;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(200, 149, 108, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-text h5 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--gold-light);
}

.contact-text p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(200, 149, 108, 0.2);
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(200, 149, 108, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-control,
.form-select {
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    padding: 12px 15px;
    font-family: var(--font-body);
    transition: var(--transition);
    background-color: var(--cream-light);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
    background-color: white;
}

.form-floating > label {
    color: var(--brown-light);
    font-family: var(--font-body);
}

.form-message.success {
    background: rgba(74, 103, 65, 0.1);
    color: var(--marsh-green);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(74, 103, 65, 0.2);
    text-align: center;
}

.form-message.error {
    background: rgba(200, 50, 50, 0.1);
    color: #c83232;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(200, 50, 50, 0.2);
    text-align: center;
}

/* ===== Map Section ===== */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-light), var(--cream));
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.map-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid var(--gold-light);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 15px 60px rgba(200, 149, 108, 0.3);
    transform: translateY(-5px);
}

.map-header {
    text-align: center;
    padding: 30px 20px 25px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--brown-dark);
}

.map-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 10px;
    color: var(--brown-dark);
}

.map-header p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(44, 24, 16, 0.7);
}

.map-container {
    height: 500px;
    position: relative;
    background: var(--cream);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-footer {
    padding: 25px;
    background: var(--cream-light);
    text-align: center;
    border-top: 2px solid var(--gold-light);
}

.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 149, 108, 0.3);
}

.btn-map:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 149, 108, 0.5);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-heading);
}

.map-placeholder p {
    color: var(--gold-light);
    margin-top: 5px;
}

/* ===== Footer ===== */
.main-footer {
    background: var(--brown-dark);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(200, 149, 108, 0.1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-brand h4 {
    font-family: var(--font-heading);
    color: var(--gold);
}

.footer-brand small {
    color: var(--gold-light);
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: 8px;
}

.footer-schedule {
    list-style: none;
    padding: 0;
}

.footer-schedule li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 149, 108, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(200, 149, 108, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    font-size: 1.1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 149, 108, 0.5);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6); }
}

/* ===== Particles ===== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200, 149, 108, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .title-main {
        font-size: 4rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 70px 0;
    }

    .title-main {
        font-size: 3.5rem;
    }

    .title-accent {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 12px 30px !important;
    }

    .navbar-collapse {
        background: rgba(44, 24, 16, 0.98);
        border-radius: 15px;
        padding: 20px;
        margin-top: 15px;
        backdrop-filter: blur(15px);
    }

    .about-image-placeholder {
        height: 350px;
    }

    .gallery-item.tall {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .title-main {
        font-size: 2.8rem;
    }

    .title-accent {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
    }

    .offer-title {
        font-size: 1.8rem;
    }

    .offer-new-price {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }

    .marsh-reeds {
        height: 150px;
    }

    .reed-1 { height: 120px; }
    .reed-2 { height: 100px; }
    .reed-3 { height: 130px; }
    .reed-4 { height: 110px; }
    .reed-5 { height: 125px; }
    .reed-6 { height: 95px; }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .menu-card-header {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .title-main {
        font-size: 2.2rem;
    }

    .title-accent {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 20px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .gallery-item {
        height: 160px;
    }

    .gallery-item.tall {
        height: 160px;
    }

    .about-image-placeholder {
        height: 280px;
    }

    .about-experience {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 15px;
        display: inline-block;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .map-section {
        padding: 50px 0;
    }

    .map-header h3 {
        font-size: 1.5rem;
    }

    .map-header p {
        font-size: 0.95rem;
    }

    .map-container {
        height: 350px;
    }

    .map-wrapper:hover {
        transform: none;
    }

    .btn-map {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* ===== Animation Classes ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Heritage Pattern Animations */
@keyframes patternShift {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

/* Glowing text effect for headings */
.glow-text {
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px rgba(200, 149, 108, 0.3); }
    to { text-shadow: 0 0 40px rgba(200, 149, 108, 0.6); }
}

/* ===== Review Form Section ===== */
.review-section-title {
    font-family: 'Aref Ruqaa Ink', serif;
    color: var(--gold);
}
