/* ========================================
   Shawarmas Thareck Halal Food
   Custom Styles
======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #FFF8F0;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Geometric Background Shapes
======================================== */
.geo-shapes {
    z-index: 0;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: #c4264b;
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: #ff745e;
    bottom: 10%;
    left: -100px;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.05;
}

.geo-triangle--1 {
    border-width: 0 80px 138px 80px;
    border-color: transparent transparent #c4264b transparent;
    top: 40%;
    right: 5%;
    transform: rotate(15deg);
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #c4264b 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.15;
    top: 35%;
    left: 3%;
}

.geo-square {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #ff745e;
    opacity: 0.04;
    bottom: 25%;
    right: 8%;
    transform: rotate(45deg);
}

/* ========================================
   Header
======================================== */
header {
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 38, 75, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: 0 4px 30px rgba(196, 38, 75, 0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    color: #c4264b;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo--light .logo-name,
.logo--light .logo-sub {
    color: #fff;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #c4264b;
    border-radius: 12px;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
    background: #a11d3d;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #c4264b;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #c4264b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: #c4264b;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    margin-left: 8px;
    background: #c4264b;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #a11d3d;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(196, 38, 75, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 60;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #c4264b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    z-index: 55;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.open .mobile-menu-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu-link:hover {
    color: #c4264b;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 28px;
    background: #c4264b;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.3s;
}

.mobile-menu.open .mobile-menu-cta {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-cta:hover {
    background: #a11d3d;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    background: linear-gradient(135deg, #FFF8F0 0%, #fff1ee 50%, #fce7eb 100%);
    overflow: hidden;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(196, 38, 75, 0.08);
    border: 1px solid rgba(196, 38, 75, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c4264b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #c4264b;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .text-burgundy {
    color: #c4264b;
    position: relative;
}

.hero-title .text-burgundy::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(255, 116, 94, 0.3);
    border-radius: 3px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: #c4264b;
    color: #fff;
    box-shadow: 0 4px 15px rgba(196, 38, 75, 0.25);
}

.btn-primary:hover {
    background: #a11d3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 38, 75, 0.35);
}

.btn-secondary {
    background: #fff;
    color: #1a1a1a;
    border: 2px solid rgba(196, 38, 75, 0.2);
}

.btn-secondary:hover {
    border-color: #c4264b;
    color: #c4264b;
    transform: translateY(-2px);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #c4264b;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(196, 38, 75, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-bg {
    position: absolute;
    inset: 20px -20px -20px 20px;
    background: #c4264b;
    border-radius: 24px;
    z-index: 0;
    opacity: 0.12;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(196, 38, 75, 0.2);
}

.hero-floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card--1 {
    top: 15%;
    left: -30px;
    animation-delay: 0s;
}

.hero-floating-card--2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 2s;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 38, 75, 0.1);
    border-radius: 10px;
    color: #c4264b;
    flex-shrink: 0;
}

.floating-card-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.floating-card-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.hero-geo-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -40px;
    right: -40px;
    opacity: 0.06;
    background-image: radial-gradient(circle, #c4264b 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: #fff;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ========================================
   Section Shared
======================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c4264b;
    margin-bottom: 16px;
}

.tag-line {
    display: block;
    width: 32px;
    height: 2px;
    background: #c4264b;
    border-radius: 1px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    max-width: 520px;
}

/* ========================================
   Menu Section
======================================== */
.menu-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.menu-card {
    background: #FFF8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(196, 38, 75, 0.06);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(196, 38, 75, 0.12);
    border-color: rgba(196, 38, 75, 0.15);
}

.menu-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.menu-card--featured .menu-card-image {
    height: 280px;
}

.menu-card--featured .menu-card-title {
    font-size: 1.5rem;
}

.menu-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 12px;
    background: #c4264b;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 50px;
}

.menu-card-image {
    height: 200px;
    overflow: hidden;
}

.menu-card--featured .menu-card-image {
    height: 280px;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-card-body {
    padding: 24px;
}

.menu-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.menu-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.menu-card-tag {
    padding: 4px 10px;
    background: rgba(196, 38, 75, 0.08);
    color: #c4264b;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 50px;
    white-space: nowrap;
}

.menu-card-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #666;
}

.menu-note {
    max-width: 680px;
    margin: 0 auto;
}

.menu-note-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(196, 38, 75, 0.06);
    border: 1px solid rgba(196, 38, 75, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
    color: #555;
}

.menu-note-inner svg {
    color: #c4264b;
    flex-shrink: 0;
}

/* ========================================
   About Section
======================================== */
.about-section {
    padding: 100px 0;
    background: #FFF8F0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 560px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(196, 38, 75, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid #FFF8F0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-geo-badge {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: #c4264b;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(196, 38, 75, 0.3);
    z-index: 2;
}

.badge-year {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.badge-text {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.value-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 38, 75, 0.08);
    border-radius: 14px;
    color: #c4264b;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: #c4264b;
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.value-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.value-desc {
    display: block;
    font-size: 0.82rem;
    color: #888;
    margin-top: 2px;
}

/* ========================================
   Location Section
======================================== */
.location-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

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

.location-info {
    max-width: 480px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 38, 75, 0.08);
    border-radius: 14px;
    color: #c4264b;
    flex-shrink: 0;
}

.location-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin-bottom: 4px;
}

.location-value {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
}

.location-link {
    font-size: 1rem;
    font-weight: 500;
    color: #c4264b;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #a11d3d;
    text-decoration: underline;
}

.location-map {
    position: relative;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    border: 4px solid #fff;
    outline: 1px solid rgba(196, 38, 75, 0.1);
}

.map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 24px;
    background: #c4264b;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.map-directions:hover {
    background: #a11d3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 38, 75, 0.3);
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #c4264b 0%, #a11d3d 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-content .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

.contact-content .section-tag .tag-line {
    background: rgba(255, 255, 255, 0.5);
}

.contact-content .section-title {
    color: #fff;
}

.contact-content .section-title .text-burgundy {
    color: #ffd4dc;
}

.contact-text {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
    margin-bottom: 32px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-quick-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
}

.contact-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

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

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

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid #f0e8e8;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    background: #FFF8F0;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #c4264b;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(196, 38, 75, 0.08);
}

.form-input::placeholder {
    color: #bbb;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

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

.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 38, 75, 0.08);
    border-radius: 50%;
    color: #c4264b;
    margin-bottom: 20px;
}

.success-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 280px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
}

.footer-heading {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffd4dc;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .menu-card--featured .menu-card-image {
        height: 220px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .hero-floating-card--1 {
        left: -10px;
    }
    
    .hero-floating-card--2 {
        right: -10px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-card--featured {
        grid-column: span 1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-stack {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-info {
        max-width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .menu-card-body {
        padding: 18px;
    }
    
    .about-image-stack {
        height: 320px;
    }
}
