/* ============================================
   RÉGAL FOOD - Main Stylesheet
   ============================================ */

/* ============================================
   CSS Variables - MODIFIEZ ICI LES COULEURS
   ============================================ */
:root {
    /* Couleurs principales - Modifiez ces valeurs pour changer les couleurs du site */
    --color-primary: #C41E3A;        /* Rouge principal */
    --color-primary-dark: #9B1B30;   /* Rouge foncé (hover) */
    --color-primary-light: #E63946; /* Rouge clair */
    
    /* Couleurs de fond */
    --color-cream: #FFF8F0;          /* Fond crème */
    --color-white: #FFFFFF;          /* Blanc */
    --color-dark: #1A1A1A;           /* Noir/Gris foncé */
    --color-gray: #4A4A4A;           /* Gris */
    --color-light-gray: #F5F5F5;     /* Gris clair */
    
    /* Couleurs du texte */
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;
    
    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Bordures arrondies */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Section */
.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* Utility Classes */
.text-accent {
    color: var(--color-primary);
}

.hidden-mobile {
    display: flex;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--text-dark);
    border-color: var(--color-white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(196, 30, 58, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-dark {
    background-color: rgba(196, 30, 58, 0.2);
}

/* ============================================
   Floating Badge
   ============================================ */
.floating-badge {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #22C55E;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.badge-separator {
    color: var(--text-light);
}

.badge-halal {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.header.scrolled .top-bar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.header.scrolled .logo-text {
    color: var(--color-primary);
}

.header.scrolled .nav-link {
    color: var(--text-gray);
}

.header.scrolled .nav-link:hover {
    color: var(--color-primary);
}

.header.scrolled .mobile-menu-toggle {
    color: var(--text-dark);
}

/* Top Bar */
.top-bar {
    transition: all var(--transition-normal);
    max-height: 50px;
    opacity: 1;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.top-bar-item:hover {
    color: var(--color-white);
}

.top-bar-separator {
    color: rgba(255, 255, 255, 0.5);
}

.icon-sm {
    width: 14px;
    height: 14px;
}

/* Main Navigation */
.main-nav {
    padding: 12px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    transition: color var(--transition-normal);
}

/* Nav Links */
.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

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

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

.nav-link:hover {
    color: var(--color-white);
}

/* Nav CTA */
.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: inline-flex;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-white);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle.active .menu-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
}

.mobile-nav-link {
    padding: 12px 0;
    font-weight: 500;
    color: var(--text-gray);
    transition: color var(--transition-fast);
}

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

.mobile-menu-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 8px 0;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 120px;
    padding-bottom: 80px;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
}

.hero-title .text-accent {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

/* Hero Rating */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 20px;
    height: 20px;
}

.star.filled {
    color: #FBBF24;
    fill: #FBBF24;
}

.star.half {
    color: #FBBF24;
    fill: #FBBF24;
    opacity: 0.5;
}

.star.empty {
    color: #6B7280;
}

.rating-score {
    font-weight: 600;
    color: var(--text-white);
}

.rating-count {
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

/* Hero Info */
.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.info-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.info-icon svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* Hero Images */
.hero-images {
    display: none;
    position: relative;
}

@media (min-width: 1280px) {
    .hero-images {
        display: block;
    }
}

.hero-image-card {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

.hero-image-card:hover {
    transform: rotate(0) !important;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-card.rotate-right {
    transform: rotate(6deg);
}

.hero-image-card.rotate-left {
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 160px;
    height: 160px;
    transform: rotate(-6deg);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
}

.scroll-indicator:hover {
    color: var(--text-white);
}

/* ============================================
   Menu Section
   ============================================ */
.menu-section {
    background-color: var(--color-cream);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .badge {
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header.light .section-title {
    color: var(--text-white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.menu-tab {
    padding: 12px 24px;
    font-weight: 500;
    color: var(--text-gray);
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.menu-tab:hover {
    box-shadow: var(--shadow-md);
}

.menu-tab.active {
    background-color: var(--color-primary);
    color: var(--text-white);
}

/* Menu Content */
.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-item:hover .menu-item-title {
    color: var(--color-primary);
}

.menu-item-content {
    flex: 1;
}

.menu-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.menu-item-description {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.menu-item-price {
    flex-shrink: 0;
    padding: 8px 16px;
    background-color: rgba(196, 30, 58, 0.1);
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.menu-category-note {
    text-align: center;
    margin-top: 32px;
    font-style: italic;
    color: var(--text-gray);
}

/* Menu CTA */
.menu-cta {
    margin-top: 48px;
    text-align: center;
}

.menu-cta-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--color-dark);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 1.125rem;
}

.menu-cta-phone {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.menu-cta-phone:hover {
    text-decoration: underline;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

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

.gallery-caption {
    color: var(--text-white);
    font-weight: 500;
    font-size: 1.125rem;
}

.gallery-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: capitalize;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px;
    transition: color var(--transition-fast);
}

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

.lightbox-close svg {
    width: 32px;
    height: 32px;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: 1.125rem;
    text-align: center;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    position: relative;
    background-color: var(--color-dark);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
}

.testimonials-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 400px;
    height: 400px;
    background-color: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.testimonials-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 300px;
    height: 300px;
    background-color: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.testimonials-section .container {
    position: relative;
    z-index: 10;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.rating-summary .rating-score {
    color: var(--text-white);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 30, 58, 0.3);
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-quote svg {
    width: 32px;
    height: 32px;
    color: rgba(196, 30, 58, 0.4);
}

.testimonial-card:hover .testimonial-quote svg {
    color: rgba(196, 30, 58, 0.6);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars .star {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 50%;
}

.author-name {
    color: var(--text-white);
    font-weight: 500;
}

.author-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Google CTA */
.testimonials-cta {
    margin-top: 48px;
    text-align: center;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.google-link:hover {
    color: var(--text-white);
}

.google-link:hover svg {
    transform: translateX(4px);
}

.google-link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background-color: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Form */
.contact-form-container {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

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

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
    resize: none;
}

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px;
}

.form-success.active {
    display: flex;
}

.form-success .success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    margin-bottom: 16px;
}

.form-success .success-icon svg {
    width: 32px;
    height: 32px;
    color: #22C55E;
}

.form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-gray);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-card {
    display: block;
    padding: 24px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
}

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

.info-card:hover .info-card-icon svg {
    color: var(--text-white);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(196, 30, 58, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: all var(--transition-normal);
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transition: color var(--transition-normal);
}

.info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.info-card-action {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
}

/* Map */
.map-container {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Hours Table */
.hours-table {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.hours-table h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.hours-table h4 svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

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

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.hours-row span:first-child {
    color: var(--text-gray);
}

.hours-row span:last-child {
    font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-dark);
    color: var(--text-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
    padding: 64px 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* Footer Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.halal-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(34, 197, 94, 0.2);
    color: #4ADE80;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

/* Footer Nav */
.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-primary);
}

/* Footer Contact */
.footer-contact li a,
.footer-contact li .footer-hours {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-contact li a:hover {
    color: var(--text-white);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

/* Footer Social */
.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--color-primary);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-cta {
    padding: 24px;
    background-color: rgba(196, 30, 58, 0.1);
    border-radius: var(--radius-lg);
}

.footer-cta p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.cta-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.cta-phone:hover {
    color: var(--text-white);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

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

/* ============================================
   Responsive Utilities
   ============================================ */
@media (max-width: 768px) {
    .floating-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}