/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --clr-primary: #E87B35;
    --clr-primary-dark: #C4622A;
    --clr-primary-light: #F5A66B;
    --clr-accent: #1A6B4F;
    --clr-accent-light: #238C66;
    --clr-dark: #0D0D0D;
    --clr-dark-800: #1A1A1A;
    --clr-dark-700: #2A2A2A;
    --clr-dark-600: #3A3A3A;
    --clr-light: #FAFAFA;
    --clr-light-200: #E8E8E8;
    --clr-light-300: #D0D0D0;
    --clr-cream: #FFF8F0;
    --clr-gold: #D4A853;
    --clr-text: #FFFFFF;
    --clr-text-muted: #AAAAAA;
    --clr-text-dark: #333333;

    --ff-heading: 'Playfair Display', Georgia, serif;
    --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3rem;
    --fs-5xl: 3.5rem;
    --fs-6xl: 4rem;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 30px rgba(232, 123, 53, 0.3);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --container-max: 1200px;
    --container-wide: 1400px;
    --nav-height: 80px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--ff-body);
    font-weight: var(--fw-regular);
    color: var(--clr-text);
    background-color: var(--clr-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--ff-body);
    font-size: var(--fs-base);
}

input, textarea, select {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    outline: none;
    border: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container--wide {
    max-width: var(--container-wide);
}

.section {
    padding: var(--space-5xl) 0;
}

.section-label {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--clr-primary);
}

.section-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.section-desc {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background: var(--clr-primary);
    color: var(--clr-text);
}

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

.btn--outline {
    background: transparent;
    color: var(--clr-text);
    border: 2px solid var(--clr-text);
}

.btn--outline:hover {
    background: var(--clr-text);
    color: var(--clr-dark);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--clr-dark);
    color: var(--clr-text);
}

.btn--dark:hover {
    background: var(--clr-dark-800);
    transform: translateY(-2px);
}

.btn--icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.navbar__logo {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.navbar__logo span {
    color: var(--clr-primary);
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.navbar__link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: width var(--transition-base);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--clr-text);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

.navbar__cta {
    padding: 10px 24px;
    background: var(--clr-primary);
    color: var(--clr-text);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    transition: all var(--transition-base);
}

.navbar__cta:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-1px);
}

.navbar__menu-btn {
    display: none;
    background: none;
    color: var(--clr-text);
    font-size: 1.5rem;
    padding: var(--space-sm);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: var(--space-2xl);
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: var(--fs-xl);
    font-weight: var(--fw-medium);
    color: var(--clr-text);
    padding: var(--space-md);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--clr-dark);
    padding-top: var(--nav-height);
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero__bg-shapes .shape--1 {
    width: 600px;
    height: 600px;
    background: var(--clr-primary);
    top: -200px;
    right: -100px;
    filter: blur(80px);
}

.hero__bg-shapes .shape--2 {
    width: 400px;
    height: 400px;
    background: var(--clr-accent);
    bottom: -100px;
    left: -100px;
    filter: blur(60px);
}

.hero__bg-shapes .shape--3 {
    width: 200px;
    height: 200px;
    background: var(--clr-gold);
    top: 40%;
    left: 30%;
    filter: blur(40px);
}

/* Decorative wavy lines */
.hero__decor-line {
    position: absolute;
    width: 300px;
    height: 200px;
    border: 2px solid var(--clr-primary);
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
}

.hero__decor-line--1 {
    top: 15%;
    right: 25%;
    transform: rotate(-30deg);
}

.hero__decor-line--2 {
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 150px;
    transform: rotate(20deg);
    border-color: var(--clr-accent);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    padding-right: var(--space-2xl);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(232, 123, 53, 0.12);
    border: 1px solid rgba(232, 123, 53, 0.25);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-xl);
}

.hero__badge i {
    font-size: var(--fs-sm);
}

.hero__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-6xl);
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero__title .highlight {
    color: var(--clr-primary);
    font-style: italic;
    position: relative;
}

.hero__title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(232, 123, 53, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero__subtitle {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 460px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.hero__play-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--clr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    font-size: var(--fs-sm);
}

.hero__play-btn:hover {
    border-color: var(--clr-primary);
    background: rgba(232, 123, 53, 0.1);
    transform: scale(1.1);
}

.hero__play-text {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-text-muted);
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    display: block;
}

.hero__stat-label {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Hero Image */
.hero__image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image-container {
    position: relative;
    width: 480px;
    height: 480px;
}

.hero__image-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
    opacity: 0.2;
}

.hero__image-circle::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px dashed rgba(232, 123, 53, 0.2);
    animation: spin 30s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero__image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero__image:hover img {
    transform: scale(1.05);
}

/* Floating food items */
.hero__float-item {
    position: absolute;
    z-index: 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.hero__float-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__float-item--1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: -20px;
    border-radius: var(--radius-lg);
    animation-delay: 0s;
}

.hero__float-item--2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: -30px;
    border-radius: 50%;
    animation-delay: 1s;
}

.hero__float-item--3 {
    width: 70px;
    height: 70px;
    bottom: 5%;
    right: 10%;
    border-radius: var(--radius-md);
    animation-delay: 2s;
}

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

/* ===== TRENDING SECTION ===== */
.trending {
    padding: var(--space-5xl) 0;
    background: var(--clr-dark);
    position: relative;
}

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

.trending__header {
    margin-bottom: var(--space-3xl);
}

.trending__header .section-label {
    justify-content: center;
}

.trending__header .section-label::before {
    display: none;
}

.trending__header .section-title {
    max-width: 500px;
    margin: 0 auto var(--space-md);
}

.trending__grid {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.trending__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
    transition: transform var(--transition-base);
}

.trending__card:hover {
    transform: translateY(-8px);
}

.trending__card-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    transition: border-color var(--transition-base);
    box-shadow: var(--shadow-md);
}

.trending__card:hover .trending__card-img {
    border-color: var(--clr-primary);
}

.trending__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.trending__card-name {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-text);
    text-align: center;
    max-width: 140px;
}

.trending__card-price {
    font-size: var(--fs-xs);
    color: var(--clr-primary);
    font-weight: var(--fw-semibold);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--space-5xl) 0;
    background: var(--clr-cream);
    color: var(--clr-text-dark);
    position: relative;
    overflow: hidden;
}

.about__decor {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(232, 123, 53, 0.06);
    pointer-events: none;
}

.about__decor--1 {
    top: -100px;
    right: -100px;
}

.about__decor--2 {
    bottom: -100px;
    left: -100px;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about__image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--clr-primary);
    color: var(--clr-text);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about__image-badge .number {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    display: block;
}

.about__image-badge .text {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__content .section-label {
    color: var(--clr-primary);
}

.about__content .section-title {
    color: var(--clr-text-dark);
}

.about__text {
    font-size: var(--fs-md);
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.about__text strong {
    color: var(--clr-text-dark);
}

.about__text .text-highlight {
    color: var(--clr-primary);
    font-weight: var(--fw-semibold);
    background: rgba(232, 123, 53, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.about__feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(232, 123, 53, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: var(--fs-lg);
}

.about__feature-text {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--clr-text-dark);
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--clr-dark);
    position: relative;
    overflow: hidden;
}

.why-us__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-us__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.why-us__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--clr-dark), rgba(13, 13, 13, 0.85), var(--clr-dark));
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-us__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.why-us__header .section-label {
    justify-content: center;
}

.why-us__header .section-label::before {
    display: none;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.why-us__card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-us__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.why-us__card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 123, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-us__card:hover::before {
    opacity: 1;
}

.why-us__card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 123, 53, 0.15), rgba(232, 123, 53, 0.05));
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    color: var(--clr-primary);
    transition: all var(--transition-base);
}

.why-us__card:hover .why-us__card-icon {
    background: var(--clr-primary);
    color: var(--clr-text);
    transform: scale(1.1);
}

.why-us__card-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.why-us__card-desc {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ===== RESERVATION SECTION ===== */
.reservation {
    padding: var(--space-5xl) 0;
    background: var(--clr-cream);
    color: var(--clr-text-dark);
    position: relative;
    overflow: hidden;
}

.reservation .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.reservation__content .section-title {
    color: var(--clr-text-dark);
}

.reservation__desc {
    font-size: var(--fs-md);
    color: #666;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.reservation__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.reservation__info-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.reservation__info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(232, 123, 53, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reservation__info-text {
    font-size: var(--fs-sm);
    color: #666;
}

.reservation__info-text strong {
    display: block;
    color: var(--clr-text-dark);
    font-size: var(--fs-base);
    margin-bottom: 2px;
}

/* Reservation Form */
.reservation__form-wrapper {
    background: var(--clr-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.reservation__form-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--clr-text);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.reservation__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form__label {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    font-weight: var(--fw-medium);
}

.form__input,
.form__select,
.form__textarea {
    background: var(--clr-dark-700);
    border: 1px solid var(--clr-dark-600);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--clr-text);
    font-size: var(--fs-sm);
    transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--clr-primary);
}

.form__input::placeholder {
    color: var(--clr-dark-600);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23AAAAAA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form__select option {
    background: var(--clr-dark-700);
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__submit {
    width: 100%;
    padding: 14px;
    background: var(--clr-primary);
    color: var(--clr-text);
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.form__submit:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.form__submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

.form__submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--clr-dark-800);
    position: relative;
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.testimonials__header .section-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--fs-3xl);
}

.testimonials__slider {
    position: relative;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.5s ease;
}

.testimonials__card {
    min-width: calc(33.333% - var(--space-xl) * 2 / 3);
    background: var(--clr-dark-700);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.testimonials__card:hover {
    border-color: rgba(232, 123, 53, 0.3);
    transform: translateY(-5px);
}

.testimonials__stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonials__stars i {
    color: var(--clr-gold);
    font-size: var(--fs-sm);
}

.testimonials__text {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonials__avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-md);
    color: var(--clr-text);
    flex-shrink: 0;
}

.testimonials__author-name {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
}

.testimonials__author-role {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.testimonials__controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-dark-600);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.testimonials__dot.active {
    background: var(--clr-primary);
    width: 30px;
    border-radius: var(--radius-full);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-text);
    position: relative;
    overflow: hidden;
}

.contact__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 30px 30px;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.contact__header .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.contact__header .section-label::before {
    background: rgba(255, 255, 255, 0.8);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.contact__item {
    text-align: center;
    padding: var(--space-xl);
}

.contact__item-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    transition: all var(--transition-base);
}

.contact__item:hover .contact__item-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.contact__item-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.contact__item-text {
    font-size: var(--fs-sm);
    opacity: 0.85;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--space-4xl) 0;
    background: var(--clr-cream);
    position: relative;
    overflow: hidden;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta__box {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    border-radius: var(--radius-xl);
    padding: var(--space-4xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta__box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
}

.cta__desc {
    font-size: var(--fs-md);
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

/* Floating images in CTA */
.cta__float {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

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

.cta__float--1 {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 40px;
    opacity: 0.8;
}

.cta__float--2 {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 40px;
    opacity: 0.8;
}

.cta__float--3 {
    width: 50px;
    height: 50px;
    top: 50%;
    right: 100px;
    opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--clr-dark);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-name {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-md);
}

.footer__brand-name span {
    color: var(--clr-primary);
}

.footer__brand-desc {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 300px;
}

.footer__socials {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-dark-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: all var(--transition-base);
    font-size: var(--fs-sm);
}

.footer__social-link:hover {
    background: var(--clr-primary);
    color: var(--clr-text);
    transform: translateY(-3px);
}

.footer__col-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-lg);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__link {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__link:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
}

.footer__copyright {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.footer__legal {
    display: flex;
    gap: var(--space-xl);
}

.footer__legal a {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--clr-primary);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: var(--clr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--clr-dark-700);
    color: var(--clr-text);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--clr-accent);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast.success {
    border-left-color: var(--clr-accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --fs-6xl: 3rem;
        --fs-5xl: 2.5rem;
        --fs-4xl: 2.2rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero__content {
        padding-right: 0;
        order: 2;
    }

    .hero__subtitle {
        margin: 0 auto var(--space-2xl);
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image-wrapper {
        order: 1;
    }

    .hero__image-container {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .reservation .container {
        grid-template-columns: 1fr;
    }

    .testimonials__card {
        min-width: calc(50% - var(--space-xl) / 2);
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .navbar__links {
        display: none;
    }

    .navbar__cta {
        display: none;
    }

    .navbar__menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-6xl: 2.5rem;
        --fs-5xl: 2rem;
        --fs-4xl: 1.8rem;
        --fs-3xl: 1.5rem;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .hero__image-container {
        width: 280px;
        height: 280px;
    }

    .hero__float-item--1 {
        width: 70px;
        height: 70px;
    }

    .hero__float-item--2 {
        width: 55px;
        height: 55px;
    }

    .hero__float-item--3 {
        width: 50px;
        height: 50px;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .trending__grid {
        gap: var(--space-lg);
    }

    .trending__card-img {
        width: 110px;
        height: 110px;
    }

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

    .why-us__grid {
        grid-template-columns: 1fr;
    }

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

    .testimonials__card {
        min-width: 100%;
    }

    .cta__box {
        padding: var(--space-2xl);
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-6xl: 2rem;
        --fs-4xl: 1.5rem;
    }

    .hero__image-container {
        width: 240px;
        height: 240px;
    }

    .trending__grid {
        flex-direction: column;
        align-items: center;
    }
}
