/* ================================================
   SHAWARMA BISTRO — Premium Black & Gold Theme
   ================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
    --gold: #c8a45a;
    --gold-light: #e2c87e;
    --gold-dark: #a6862e;
    --black: #000000;
    --black-light: #0a0a0a;
    --black-soft: #111111;
    --black-card: #161616;
    --black-border: #222222;
    --black-hover: #1a1a1a;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --gray-100: #e5e5e5;
    --gray-200: #cccccc;
    --gray-300: #999999;
    --gray-400: #777777;
    --gray-500: #555555;
    --gray-600: #444444;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-gold: 0 8px 30px rgba(200,164,90,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.gold {
    color: var(--gold);
}

.star-empty {
    color: var(--gray-500);
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.text-center .section-tag {
    padding-left: 0;
}

.text-center .section-tag::before {
    display: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.section-desc {
    font-size: 16px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200,164,90,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--black-border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 16px;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(200,164,90,0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.logo-icon {
    color: var(--gold);
    font-size: 20px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gray-300);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--gold);
}

.mobile-cta {
    margin-top: 20px;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
}

.mobile-cta:hover {
    background: var(--gold-light);
}

/* ===================== HERO SECTION ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1529006557810-274b9b2fc783?w=1920&h=1080&fit=crop&q=80') center/cover no-repeat;
    filter: brightness(0.25) saturate(0.7);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0.95) 100%
    );
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    20% { opacity: 0.6; }
    50% { opacity: 0.3; transform: translateY(-100px) scale(1.5); }
    80% { opacity: 0.1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,164,90,0.1);
    border: 1px solid rgba(200,164,90,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--gold-light);
    margin-bottom: 32px;
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--gray-300);
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--black-border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

/* ===================== ABOUT SECTION ===================== */
.about {
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--black);
    box-shadow: var(--shadow-md);
}

.about-img-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.about-text {
    color: var(--gray-300);
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,164,90,0.08);
    border-radius: var(--radius-sm);
}

.about-feature h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
}

.about-info-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gray-300);
}

.chip-icon {
    font-size: 14px;
}

/* ===================== MENU SECTION ===================== */
.menu-section {
    background: var(--black-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    border: 1px solid var(--black-border);
    transition: var(--transition);
}

.menu-tab:hover {
    color: var(--white);
    border-color: var(--gray-500);
}

.menu-tab.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,164,90,0.3);
    box-shadow: var(--shadow-gold);
}

.menu-card.hidden {
    display: none;
}

.menu-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card-badge.hot {
    background: #e74c3c;
    color: var(--white);
}

.menu-card-badge.new {
    background: #27ae60;
    color: var(--white);
}

.menu-card-body {
    padding: 20px;
}

.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.menu-card-top h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.menu-card-body p {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
}

.menu-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-card-tags span {
    font-size: 11px;
    color: var(--gray-400);
    background: rgba(200,164,90,0.06);
    padding: 4px 10px;
    border-radius: 50px;
}

.menu-cta {
    margin-top: 48px;
}

.menu-cta p {
    color: var(--gray-400);
    margin-bottom: 16px;
    font-size: 15px;
}

/* ===================== SERVICES SECTION ===================== */
.services {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,164,90,0.2);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,164,90,0.08);
    border-radius: var(--radius-md);
    color: var(--gold);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon-wrap.featured {
    background: var(--gold);
    color: var(--black);
}

.service-card:hover .service-icon-wrap {
    background: var(--gold);
    color: var(--black);
}

.service-card:hover .service-icon-wrap.featured {
    background: var(--gold-light);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-feature-list span {
    font-size: 13px;
    color: var(--gray-300);
}

/* ===================== WHY CHOOSE US SECTION ===================== */
.why-us {
    background: var(--black-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-text {
    color: var(--gray-300);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-us-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: rgba(200,164,90,0.2);
    line-height: 1;
    min-width: 50px;
}

.why-us-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-us-item p {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.7;
}

.why-us-visual {
    position: relative;
}

.why-us-img-stack {
    position: relative;
    height: 500px;
}

.why-img {
    position: absolute;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.why-img-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
}

.why-img-2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border: 4px solid var(--black-light);
}

.why-us-floating-card {
    position: absolute;
    bottom: 40px;
    left: -10px;
    background: var(--gold);
    color: var(--black);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    text-align: center;
}

.floating-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.floating-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================== GALLERY SECTION ===================== */
.gallery {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

/* ===================== REVIEWS SECTION ===================== */
.reviews {
    background: var(--black-light);
}

.reviews-overview {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 32px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
}

.reviews-score {
    text-align: center;
    min-width: 120px;
}

.score-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.score-stars {
    color: var(--gold);
    font-size: 18px;
    margin: 8px 0;
}

.score-count {
    font-size: 12px;
    color: var(--gray-400);
}

.reviews-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--gray-300);
}

.review-bar {
    flex: 1;
    height: 6px;
    background: var(--black-border);
    border-radius: 3px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(200,164,90,0.2);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 14px;
    color: var(--gray-300);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author h4 {
    font-size: 14px;
    font-weight: 600;
}

.review-author span {
    font-size: 12px;
    color: var(--gray-500);
}

.review-date {
    margin-left: auto;
    font-size: 11px !important;
    color: var(--gray-500) !important;
    white-space: nowrap;
}

/* ===================== TRUST BADGES SECTION ===================== */
.trust {
    background: var(--black);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: rgba(200,164,90,0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.trust-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,164,90,0.08);
    border-radius: 50%;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--gold);
    color: var(--black);
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.7;
}

/* ===================== PROCESS SECTION ===================== */
.process {
    background: var(--black-light);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    max-width: 240px;
    padding: 0 20px;
    position: relative;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: rgba(200,164,90,0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.process-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,164,90,0.08);
    border-radius: 50%;
    color: var(--gold);
    margin: 0 auto 16px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.7;
}

.process-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(200,164,90,0.3), rgba(200,164,90,0.1));
    margin-top: 60px;
    flex-shrink: 0;
}

/* ===================== LOCATION SECTION ===================== */
.location {
    background: var(--black);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.location-text {
    color: var(--gray-300);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.location-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,164,90,0.08);
    border-radius: var(--radius-sm);
    color: var(--gold);
    flex-shrink: 0;
}

.location-detail h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.location-detail p {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.6;
}

.location-map {
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--black-border);
}

.location-map iframe {
    filter: grayscale(0.5) brightness(0.8) contrast(1.1);
}

/* ===================== FAQ SECTION ===================== */
.faq {
    background: var(--black-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(200,164,90,0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-arrow {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--gray-400);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* ===================== CONTACT SECTION ===================== */
.contact {
    background: var(--black);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(200,164,90,0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,164,90,0.08);
    border-radius: 50%;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--gold);
    color: var(--black);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.5;
}

.contact-note {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 300;
    margin-bottom: 20px;
}

/* ===================== FINAL CTA SECTION ===================== */
.final-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--black-soft);
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200,164,90,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(200,164,90,0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 17px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: var(--gray-500);
}

.cta-trust .gold {
    font-weight: 600;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--black-border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-desc {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.7;
    margin: 16px 0;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
}

.footer-stars {
    color: var(--gold);
    font-size: 14px;
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links-group a {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-address {
    font-size: 13px !important;
    color: var(--gray-400) !important;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--black-border);
    font-size: 13px;
    color: var(--gray-500);
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for grid children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }
.reveal:nth-child(7) { transition-delay: 0.6s; }
.reveal:nth-child(8) { transition-delay: 0.7s; }
.reveal:nth-child(9) { transition-delay: 0.8s; }

/* ===================== RESPONSIVE DESIGN ===================== */

/* Tablets */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-us-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile landscape / small tablets */
@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-tall {
        grid-row: span 1;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .reviews-overview {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
        background: linear-gradient(to bottom, rgba(200,164,90,0.3), rgba(200,164,90,0.1));
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about-img-secondary {
        right: 10px;
        bottom: -20px;
        width: 160px;
    }

    .about-img-secondary img {
        height: 120px;
    }

    .about-experience-badge {
        right: 10px;
        top: 20px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-info-row {
        flex-direction: column;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-img-secondary {
        right: 0;
        width: 140px;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}