/* ============================================
   LA BOUCHERIE D'EVERE - Premium Butcher Shop
   Color Palette: Black, Red, White
   ============================================ */

:root {
    /* Colors */
    --black: #0A0A0A;
    --black-light: #111111;
    --black-lighter: #181818;
    --red: #C41E3A;
    --red-dark: #9E1830;
    --red-light: #E63950;
    --red-bright: #FF2D55;
    --green: var(--green);
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    --gray: #888888;
    --gray-dark: #2A2A2A;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--red);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-badge {
    padding: 2px 6px;
    background: var(--red-bright);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    border-radius: 4px;
    margin-left: -2px;
    position: relative;
    top: -4px;
    box-shadow: 0 0 8px rgba(255, 45, 85, 0.5); /* --red-bright with alpha */
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher - Desktop (Horizontal Expand) */
.lang-switcher {
    display: flex;
    align-items: center;
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-right: 1px solid transparent;
}

.lang-switcher.open .lang-switcher-toggle {
    border-right: 1px solid var(--gray-dark);
}

.lang-switcher-toggle .lang-icon {
    width: 16px;
    height: 16px;
    color: var(--gray);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-switcher:hover .lang-icon,
.lang-switcher.open .lang-icon {
    color: var(--red);
}

.lang-switcher.open .lang-icon {
    transform: rotate(360deg);
}

.lang-switcher-toggle .current-lang {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-options {
    display: flex;
    gap: 2px;
    padding: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-switcher.open .lang-options {
    max-width: 200px;
    opacity: 1;
    padding: 4px;
    padding-left: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.lang-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: var(--red);
    color: var(--white);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .lang-switcher {
        display: none;
    }
}

/* Mobile Language Switcher in Hamburger Menu */
.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-dark);
}

.mobile-lang-switcher .lang-btn {
    padding: 12px 20px;
    font-size: 14px;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--black-lighter);
    border-radius: 50px;
    border: 1px solid var(--gray-dark);
}

.nav-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
}

.nav-status.open .status-dot {
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
}

.nav-status.closed .status-dot {
    background: var(--red);
}

.nav-status .status-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Hamburger Menu - Butcher Cleaver Style */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.cleaver {
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.cleaver-blade {
    width: 24px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cleaver-handle {
    width: 8px;
    height: 3px;
    background: var(--red);
    border-radius: 0 2px 2px 0;
    margin-left: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation - Crossed Cleavers */
.hamburger.active .cleaver:first-child {
    transform: rotate(45deg) translateY(6px);
}

.hamburger.active .cleaver:last-child {
    transform: rotate(-45deg) translateY(-6px);
}

.hamburger.active .cleaver-blade {
    background: var(--red);
}

.hamburger.active .cleaver-handle {
    background: var(--white);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--black);
    border-left: 1px solid var(--gray-dark);
    padding: 100px 40px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-link {
    display: block;
    padding: 20px 0;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-dark);
    transition: all var(--transition-fast);
}

.mobile-link:hover {
    color: var(--red);
    padding-left: 10px;
}

.mobile-cta {
    margin-top: 40px;
}

.mobile-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 14px;
    }

    .logo-badge {
        font-size: 9px;
        padding: 1px 4px;
    }

    .nav-status .status-text {
        display: none;
    }
}

/* ============================================
   HERO SECTION - Pure Black Background
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 24px 140px;
    background: var(--black);
    overflow: hidden;
}

/* Subtle red glow */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
}


.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.title-line.accent {
    color: var(--red);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 50px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

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

.hero-scroll i {
    width: 32px;
    height: 32px;
    color: var(--gray);
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
}

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

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

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-dark);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   STATUS SECTION - Pure Black
   ============================================ */
.status-section {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
}

.status-card {
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    transition: all var(--transition-smooth);
}

.status-card.open {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 60px rgba(34, 197, 94, 0.1);
}

.status-card.closed {
    border-color: rgba(196, 30, 58, 0.3);
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-datetime {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.status-day {
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    text-transform: capitalize;
}

.status-date {
    font-size: 14px;
    color: var(--gray);
}

.status-time {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--black);
    border-radius: 12px;
    border: 1px solid var(--gray-dark);
}

.status-time i {
    width: 18px;
    height: 18px;
    color: var(--red);
}

.status-time span {
    font-size: 24px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--white);
}

.status-indicator {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text open styling */
.text-open {
    color: var(--green);
}

.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-dark);
    transition: all var(--transition-smooth);
}

.status-card.open .status-icon {
    background: rgba(34, 197, 94, 0.2);
}

.status-card.open .status-icon i {
    color: var(--green);
}

.status-card.closed .status-icon {
    background: rgba(196, 30, 58, 0.2);
}

.status-card.closed .status-icon i {
    color: var(--red);
}

.status-icon i {
    width: 28px;
    height: 28px;
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.status-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
}

.status-card.open .status-title {
    color: var(--white);
}

.status-card.closed .status-title {
    color: var(--red);
}

.status-subtitle {
    color: var(--gray);
    font-size: 15px;
}

/* Hours Grid */
.hours-grid {
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 20px;
    padding: 40px;
}

.hours-header {
    margin-bottom: 30px;
}

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

.hours-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.hours-title .accent {
    color: var(--red);
}

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

.hour-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--black);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.hour-row:hover {
    border-color: var(--gray-dark);
}

.hour-row.today {
    border-color: var(--red);
    background: rgba(196, 30, 58, 0.1);
}

.hour-row.today .day-name {
    color: var(--red);
    font-weight: 600;
}

.hour-row.closed .day-hours {
    color: var(--red);
}

.day-name {
    font-weight: 500;
    min-width: 100px;
}

.day-line {
    flex: 1;
    height: 1px;
    background: var(--gray-dark);
}

.day-hours {
    font-variant-numeric: tabular-nums;
    color: var(--gray);
}

/* ============================================
   SPECIALTIES SECTION
   ============================================ */
.specialties {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.2;
}

.section-title .accent {
    color: var(--red);
    font-style: italic;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.specialty-card {
    position: relative;
    padding: 40px 30px;
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 16px;
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.specialty-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.specialty-card.featured {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15) 0%, var(--black-lighter) 100%);
    border-color: rgba(196, 30, 58, 0.3);
}

.specialty-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--red);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specialty-badge i {
    width: 12px;
    height: 12px;
}

.specialty-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid var(--gray-dark);
}

.specialty-icon i,
.specialty-icon .iconify-icon {
    width: 42px;
    height: 42px;
    font-size: 42px;
    color: var(--white);
}

.specialty-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.specialty-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

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

.stars i {
    width: 24px;
    height: 24px;
}

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

.star-half {
    color: #FBBF24;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.rating-count {
    color: var(--gray);
    font-size: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.review-card {
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-smooth);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.review-avatar i {
    width: 24px;
    height: 24px;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-weight: 600;
    font-size: 16px;
}

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

.review-stars i {
    width: 14px;
    height: 14px;
}

.review-text {
    color: var(--white-soft);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-product,
.review-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50px;
    font-size: 13px;
    color: var(--red);
}

.review-product i,
.review-source i {
    width: 16px;
    height: 16px;
}

.review-source {
    background: rgba(66, 133, 244, 0.15);
    color: #4285F4;
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 80px 0;
    background: var(--black-lighter);
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature {
    padding: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 50%;
}

.feature-icon i {
    width: 32px;
    height: 32px;
    color: var(--red);
}

.feature h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature p {
    color: var(--gray);
    font-size: 14px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.contact-info .section-tag {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
}

.contact-item::after {
    content: '→';
    position: absolute;
    right: 24px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
    color: var(--red);
    font-size: 18px;
}

.contact-item:hover {
    border-color: var(--red);
    background: rgba(196, 30, 58, 0.08);
    transform: translateX(5px);
    padding-right: 50px;
}

.contact-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.contact-item:hover .contact-icon {
    background: var(--red);
}

.contact-item:hover .contact-icon i {
    color: var(--white);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.contact-icon i {
    width: 22px;
    height: 22px;
    color: var(--red);
    transition: color var(--transition-fast);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-text strong {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.contact-text span {
    font-size: 15px;
    line-height: 1.4;
}

.contact-image {
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-dark);
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: top;
    display: block;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 30px 0 20px;
    background: var(--black-lighter);
    border-top: 1px solid var(--gray-dark);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-dark);
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}

.footer-badge {
    padding: 3px 8px;
    background: var(--red-bright);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 45, 85, 0.4);
}

.footer-tagline {
    color: var(--gray);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.footer-copy {
    color: var(--gray);
    font-size: 11px;
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 11px;
}

.footer-partner i {
    width: 14px;
    height: 14px;
    color: var(--red);
}

.footer-bottom {
    padding-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .navbar {
        padding: 16px 0;
    }

    .hero {
        padding: 100px 20px 100px;
    }

    .hero-badge {
        margin-bottom: 30px;
    }

    .hero-badge span {
        font-size: 11px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .status-card {
        padding: 24px;
    }

    .status-header {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .status-left {
        flex-direction: column;
        text-align: center;
    }

    .status-right {
        justify-content: center;
    }

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

    .status-title {
        font-size: 28px;
    }

    .status-time span {
        font-size: 20px;
    }

    .hours-grid {
        padding: 24px;
    }

    .hour-row {
        padding: 12px 16px;
    }

    .day-name {
        min-width: 80px;
        font-size: 14px;
    }

    .day-hours {
        font-size: 14px;
    }

    .specialties-grid {
        gap: 16px;
    }

    .specialty-card {
        padding: 30px 24px;
    }

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

    .contact-item {
        padding: 16px 20px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .review-card {
        padding: 24px;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

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

    .footer-right {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .rating-summary {
        flex-direction: column;
        gap: 12px;
    }
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}
