/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #C8553D;
    --primary-dark: #A63D28;
    --secondary: #F28F3B;
    --accent: #FFD166;
    --green: #2D6A4F;
    --green-light: #40916C;
    --dark: #1A1A2E;
    --dark-light: #2D2D44;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --text: #3A3A3A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.2;
}

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

.section-header .overline {
    font-family: 'Dancing Script', cursive;
    color: var(--secondary);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 16px auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 85, 61, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 85, 61, 0.5);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
    background: transparent;
    color: var(--white);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 106, 79, 0.5);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* For sub-pages, navbar starts solid */
.navbar.solid {
    background: var(--dark);
    padding: 12px 0;
}

.navbar.solid.scrolled {
    background: rgba(255, 255, 255, 0.97);
}

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

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

.nav-logo span {
    color: var(--accent);
}

.navbar.scrolled .nav-logo {
    color: var(--dark);
}

.navbar.scrolled .nav-logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.navbar.scrolled .nav-links a::after {
    background: var(--primary);
}

.nav-links .btn-primary {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.nav-links .btn-primary::after {
    display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.nav-overlay.open {
    display: block;
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(26,26,46,0.88), rgba(26,26,46,0.7)),
                url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920&q=80') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
}

.page-hero .breadcrumb a {
    color: var(--accent);
    transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero .breadcrumb span {
    color: rgba(255,255,255,0.5);
    margin: 0 8px;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26,26,46,0.85), rgba(26,26,46,0.6)),
                url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content .overline {
    font-family: 'Dancing Script', cursive;
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* Floating badge */
.hero-badge {
    position: absolute;
    right: 8%;
    bottom: 20%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    color: var(--white);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.hero-badge .label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: var(--shadow-lg);
}

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

.about-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-experience .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience .txt {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.about-text .highlight {
    color: var(--primary);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-feature .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* About page expanded */
.about-story { padding: 80px 0; }

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

.about-story-grid.reverse {
    direction: rtl;
}

.about-story-grid.reverse > * {
    direction: ltr;
}

.about-story-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-story-text h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.about-story-text p {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 1rem;
}

/* Values cards */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.value-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--cream);
    border-radius: 20px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* Team */
.team-section { padding: 80px 0; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card-info {
    padding: 24px;
}

.team-card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-card-info span {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

.team-card-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Service detail cards (expanded page) */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-detail-text h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-detail-text h3 .svc-icon {
    font-size: 1.8rem;
}

.service-detail-text p {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 1rem;
}

.service-detail-text ul {
    margin-top: 16px;
}

.service-detail-text ul li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-text ul li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

/* Process section */
.process-section {
    padding: 80px 0;
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: 100px 0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid var(--cream-dark);
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
}

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

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

.menu-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.menu-item-img {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.menu-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.menu-item-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.menu-item-info .price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.menu-item-info .tag {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(200, 85, 61, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-left: 8px;
}

.menu-category { display: none; }
.menu-category.active { display: grid; }

/* Menu page banner */
.menu-banner {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    text-align: center;
    padding: 48px 32px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.menu-banner h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.menu-banner p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 20px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

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

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.6), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-item .gallery-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

/* Gallery page expanded grid */
.gallery-expanded {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
}

.gallery-expanded .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-expanded .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-expanded .gallery-item:nth-child(5) { grid-column: span 1; }
.gallery-expanded .gallery-item:nth-child(7) { grid-column: span 2; }

/* Gallery filter */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    border: 2px solid var(--cream-dark);
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
}

.gallery-filter.active,
.gallery-filter:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(242, 143, 59, 0.08);
    border-radius: 50%;
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: rgba(255,255,255,0.6);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--secondary);
}

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

.testimonial-author h4 {
    color: var(--white);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Reviews page - light testimonial cards */
.testimonial-card-light {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card-light:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card-light .testimonial-stars {
    color: var(--secondary);
}

.testimonial-card-light p {
    color: var(--text-light);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-card-light .testimonial-author h4 {
    color: var(--dark);
}

.reviews-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

/* Stats bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-item .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Review summary */
.review-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
}

.review-summary .big-rating {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark);
}

.review-summary .stars {
    color: var(--accent);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin: 8px 0 12px;
}

.review-summary p {
    color: var(--text-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-item-text a:hover {
    color: var(--primary);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 24px;
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: none;
}

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

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--cream);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(200, 85, 61, 0.1);
}

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

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-banner::before {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.cta-banner::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

.cta-banner h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-outline {
    background: var(--white);
    border-color: var(--white);
    color: #C8553D;
}

.cta-banner .btn-outline:hover {
    background: transparent;
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

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

.footer-about .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-about .footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact-item .icon {
    font-size: 1rem;
    color: var(--secondary);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid, .about-story-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-badge { display: none; }
    .service-detail { gap: 32px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        color: rgba(255,255,255,0.85) !important;
        font-size: 1.05rem;
    }

    .about-grid,
    .about-story-grid,
    .about-story-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
    .about-img-float { right: 16px; bottom: -16px; width: 150px; height: 150px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid, .gallery-expanded { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 1; }
    .gallery-expanded .gallery-item:nth-child(7) { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .testimonials-slider, .reviews-grid-light { grid-template-columns: 1fr; }
    .service-detail, .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid, .gallery-expanded { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .stats-bar { grid-template-columns: 1fr; }
}
