
/* ===== FROM: index.html ===== */
/* ═══════════════════════════════════════════════
   AGRIYA HOSPITALITY — Shared Design System
   Brand Color: #E05A38 (Terracotta-Orange)
   Dark:        #1C1C1C
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --brand:        #E05A38;
  --brand-dark:   #C04828;
  --brand-light:  #F07050;
  --brand-pale:   #FDF1ED;
  --brand-mid:    #F28A6E;
  --dark:         #1C1C1C;
  --dark-2:       #2E2E2E;
  --dark-3:       #404040;
  --text:         #3A3A3A;
  --text-mid:     #5A5A5A;
  --text-light:   #8A8A8A;
  --border:       #E8E4DF;
  --cream:        #FAF8F5;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.13);
  --shadow-brand: 0 8px 32px rgba(224,90,56,0.28);
  --nav-h:        72px;
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  font-size: 12.5px;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.2px;
}
.topbar a { color: var(--brand-mid); font-weight: 500; transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }

/* ── NAVBAR ── */
.site-nav {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; height: 100%; gap: 8px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 24px; }
.nav-logo img { height: 42px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  transition: all 0.18s; white-space: nowrap;
}
.nav-item > a:hover, .nav-item > a.active { background: var(--brand-pale); color: var(--brand); }
.nav-item > a svg { width: 13px; height: 13px; transition: transform 0.2s; flex-shrink:0; }
.nav-item:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 260px; padding: 10px; z-index: 200;
}
.dropdown-grid { display: none; grid-template-columns: 1fr 1fr; gap: 4px; min-width: 520px; }
.nav-item:hover .dropdown { display: block; }
.nav-item:hover .dropdown-grid { display: grid; }
.dd-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px; border-radius: 10px; transition: background 0.15s; cursor: pointer;
}
.dd-item:hover { background: var(--brand-pale); }
.dd-ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  background: var(--brand-pale);
}
.dd-text strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.dd-text p { font-size: 12px; color: var(--text-light); line-height: 1.4; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.btn-ghost {
  padding: 8px 18px; border-radius: 8px; font-size: 13.5px; font-weight: 500;
  color: var(--text-mid); border: 1.5px solid var(--border); background: transparent;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-brand {
  padding: 9px 22px; border-radius: 8px; font-size: 13.5px; font-weight: 600;
  color: #fff; background: var(--brand); border: none;
  transition: all 0.2s; box-shadow: 0 3px 12px rgba(224,90,56,0.22);
}
.btn-brand:hover { background: var(--brand-dark); box-shadow: var(--shadow-brand); transform: translateY(-1px); }
.btn-brand-lg {
  padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 700;
  color: #fff; background: var(--brand); border: none;
  transition: all 0.25s; box-shadow: var(--shadow-brand);
}
.btn-brand-lg:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(224,90,56,0.38); }
.btn-outline-white {
  padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600;
  color: #fff; background: transparent; border: 2px solid rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline-brand {
  padding: 12px 28px; border-radius: 10px; font-size: 14.5px; font-weight: 600;
  color: var(--brand); background: transparent; border: 2px solid var(--brand);
  transition: all 0.2s;
}
.btn-outline-brand:hover { background: var(--brand); color: #fff; }

/* ── SECTION UTILITIES ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section.bg-cream { background: var(--cream); }
.section.bg-dark { background: var(--dark); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-tag {
  display: inline-block; padding: 4px 14px; border-radius: 40px;
  font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  background: var(--brand-pale); color: var(--brand); margin-bottom: 14px;
}
.section-tag.dark { background: rgba(224,90,56,0.15); color: var(--brand-mid); }
.section-title {
  font-family: var(--font-display); font-size: 42px; font-weight: 700;
  line-height: 1.12; color: var(--dark); margin-bottom: 16px;
}
.section-title.white { color: #fff; }
.section-sub { font-size: 16px; color: var(--text-light); line-height: 1.7; max-width: 560px; }
.section-sub.white { color: rgba(255,255,255,0.72); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 24px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.up { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(130deg, var(--dark) 0%, var(--dark-2) 50%, #3a1e14 100%);
  padding: 72px 0 60px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E05A38' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,90,56,0.18); border: 1px solid rgba(224,90,56,0.3);
  border-radius: 40px; padding: 5px 14px; font-size: 12px;
  color: var(--brand-mid); font-weight: 500; margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: 54px; font-weight: 800;
  color: #fff; line-height: 1.08; margin-bottom: 18px;
}
.page-hero h1 .accent { color: var(--brand-mid); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 600px; margin-bottom: 32px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brand-mid); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); }
.footer-main { max-width: 1280px; margin: 0 auto; padding: 64px 32px 48px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .fb-logo img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-ico {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; transition: all 0.2s; color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.social-ico:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-col h5 { color: #fff; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.52); margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-mid); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 32px;
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s; backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg); padding: 44px; max-width: 500px; width: 92%;
  position: relative; transform: scale(0.95) translateY(16px); transition: transform 0.28s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 8px; border: none; background: var(--cream); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.modal-title { font-family: var(--font-display); font-size: 27px; font-weight: 700; margin-bottom: 6px; }
.modal-sub { font-size: 14.5px; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 10px 14px; font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s; background: #fff; color: var(--dark);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); }
.form-submit {
  width: 100%; padding: 13px; background: var(--brand); color: #fff;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 700;
  font-family: var(--font-body); cursor: pointer; transition: background 0.2s; margin-top: 6px;
}
.form-submit:hover { background: var(--brand-dark); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; overflow: hidden; }
.trust-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 40px; }
.trust-label { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap; flex-shrink: 0; }
.trust-logos { display: flex; align-items: center; gap: 40px; overflow: hidden; }
.trust-logo { font-weight: 700; font-size: 13px; color: #bbb; white-space: nowrap; }

/* ── STAT BAR ── */
.stat-bar { background: var(--dark); padding: 56px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 46px; font-weight: 800; color: var(--brand-mid); margin-bottom: 6px; }
.stat-item span { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero h1 { font-size: 40px; }
}
@media(max-width:768px){
  .nav-links { display: none; }
  .section-title { font-size: 30px; }
  .page-hero h1 { font-size: 32px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; }
  .topbar-left { display: none; }
  .trust-inner { justify-content: center; }
}

/* ── HOMEPAGE SPECIFIC ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2E1810 45%, #3D1F12 100%);
  padding: 84px 0 68px; position: relative; overflow: hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(224,90,56,0.12) 0%, transparent 70%);
}
.hero::after {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E05A38' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(224,90,56,0.18); border:1px solid rgba(224,90,56,0.3); border-radius:40px; padding:6px 16px; font-size:12.5px; color:var(--brand-mid); font-weight:500; margin-bottom:22px; }
.hero h1 { font-family:var(--font-display); font-size:54px; font-weight:800; color:#fff; line-height:1.07; margin-bottom:20px; }
.hero h1 .accent { color:var(--brand-mid); display:block; }
.hero-sub { font-size:17px; color:rgba(255,255,255,0.72); line-height:1.7; margin-bottom:36px; max-width:480px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; }
.meal-pills { display:flex; gap:8px; flex-wrap:wrap; }
.meal-pill { display:flex; align-items:center; gap:6px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); border-radius:40px; padding:7px 16px; color:#fff; font-size:13px; cursor:pointer; transition:all .2s; }
.meal-pill:hover,.meal-pill.active { background:var(--brand); border-color:var(--brand); }

/* Chat Box */
.chat-box { background:#fff; border-radius:20px; box-shadow:0 20px 60px rgba(0,0,0,0.3); overflow:hidden; }
.chat-head { background:linear-gradient(135deg,var(--dark),var(--dark-2)); padding:18px 22px; display:flex; align-items:center; gap:12px; }
.chat-avatar { width:38px; height:38px; background:var(--brand); border-radius:10px; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:16px; color:#fff; flex-shrink:0; }
.chat-head-text .name { color:#fff; font-weight:600; font-size:14.5px; }
.chat-head-text .status { color:rgba(255,255,255,0.55); font-size:11.5px; display:flex; align-items:center; gap:4px; }
.chat-head-text .status::before { content:''; width:6px; height:6px; background:#4CAF50; border-radius:50%; display:inline-block; }
.chat-msgs { padding:16px; min-height:178px; background:#F8F6F3; display:flex; flex-direction:column; gap:10px; max-height:220px; overflow-y:auto; }
.bubble { max-width:88%; padding:10px 14px; border-radius:12px; font-size:13.5px; line-height:1.5; }
.bubble.bot { background:#fff; border:1px solid var(--border); align-self:flex-start; border-radius:12px 12px 12px 4px; box-shadow:0 2px 8px rgba(0,0,0,0.05); }
.bubble.user { background:var(--brand); color:#fff; align-self:flex-end; border-radius:12px 12px 4px 12px; }
.chat-chips { display:flex; flex-wrap:wrap; gap:6px; padding:10px 16px; border-top:1px solid var(--border); background:#fff; }
.chip { background:var(--brand-pale); border:1px solid rgba(224,90,56,0.2); border-radius:40px; padding:5px 12px; font-size:12px; color:var(--brand-dark); cursor:pointer; transition:all .15s; white-space:nowrap; }
.chip:hover { background:var(--brand); color:#fff; border-color:var(--brand); }
.chat-input-row { display:flex; gap:8px; padding:12px 16px; border-top:1px solid var(--border); }
.chat-input { flex:1; border:1.5px solid var(--border); border-radius:8px; padding:9px 14px; font-size:13.5px; font-family:var(--font-body); outline:none; transition:border .2s; }
.chat-input:focus { border-color:var(--brand); }
.chat-btn { background:var(--brand); color:#fff; border:none; border-radius:8px; padding:9px 18px; font-size:13px; font-weight:700; font-family:var(--font-body); cursor:pointer; transition:background .2s; white-space:nowrap; }
.chat-btn:hover { background:var(--brand-dark); }

/* Product Cards */
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.p-card { padding:30px; border-radius:var(--radius-lg); border:1px solid var(--border); background:#fff; cursor:pointer; transition:all .25s; }
.p-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--brand); }
.p-ico { width:52px; height:52px; border-radius:14px; background:var(--brand-pale); display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:20px; }
.p-card h3 { font-size:17px; font-weight:700; margin-bottom:8px; color:var(--dark); }
.p-card p { font-size:14px; color:var(--text-light); line-height:1.6; }
.p-card .p-link { margin-top:18px; display:inline-flex; align-items:center; gap:5px; font-size:13.5px; font-weight:600; color:var(--brand); }
.p-card .p-link svg { width:14px; height:14px; transition:transform .2s; }
.p-card:hover .p-link svg { transform:translateX(4px); }

/* Carousel */
.carousel-wrap { overflow:hidden; }
.carousel-track { display:flex; gap:20px; animation:slideLeft 40s linear infinite; width:max-content; }
.carousel-track:hover { animation-play-state:paused; }
@keyframes slideLeft { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.cat-card { flex-shrink:0; width:196px; border-radius:14px; overflow:hidden; border:1px solid var(--border); background:#fff; cursor:pointer; transition:all .2s; }
.cat-card:hover { box-shadow:var(--shadow); transform:translateY(-3px); }
.cat-img { height:116px; display:flex; align-items:center; justify-content:center; font-size:40px; background:linear-gradient(135deg,var(--brand-pale),#fff); }
.cat-info { padding:12px 14px; }
.cat-name { font-weight:600; font-size:13px; color:var(--dark); }
.cat-type { font-size:12px; color:var(--text-light); margin-top:3px; }
.cat-stars { color:var(--brand); font-size:11.5px; margin-top:4px; }

/* Steps */
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:48px; position:relative; }
.steps-grid::before { content:''; position:absolute; top:34px; left:calc(16.7% + 16px); right:calc(16.7% + 16px); height:2px; background:linear-gradient(90deg,var(--brand) 0%,var(--brand-light) 100%); }
.step { text-align:center; }
.step-num { width:68px; height:68px; border-radius:50%; background:var(--brand); color:#fff; font-family:var(--font-display); font-size:26px; font-weight:800; display:flex; align-items:center; justify-content:center; margin:0 auto 22px; box-shadow:0 0 0 10px var(--brand-pale); position:relative; z-index:1; }
.step h3 { font-size:19px; font-weight:700; margin-bottom:10px; }
.step p { font-size:14.5px; color:var(--text-light); line-height:1.65; }

/* Cities */
.cities-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.city-card { border-radius:16px; overflow:hidden; aspect-ratio:4/3; position:relative; cursor:pointer; display:flex; align-items:flex-end; padding:20px; transition:all .25s; }
.city-card::before { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.65) 0%,transparent 55%); z-index:1; }
.city-card:hover { transform:scale(1.03); box-shadow:var(--shadow-lg); }
.city-emoji { position:absolute; top:16px; right:16px; font-size:28px; z-index:2; }
.city-info { position:relative; z-index:2; }
.city-info strong { color:#fff; font-size:16px; font-weight:700; display:block; }
.city-info span { color:rgba(255,255,255,0.72); font-size:12.5px; display:block; margin-top:3px; }

/* Testimonials */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:30px; position:relative; }
.testi-card::before { content:'"'; position:absolute; top:14px; right:22px; font-family:var(--font-display); font-size:90px; color:var(--brand); opacity:.1; line-height:1; }
.stars { color:var(--brand); font-size:15px; margin-bottom:14px; }
.testi-card blockquote { font-size:14.5px; color:var(--text-mid); line-height:1.7; font-style:italic; margin-bottom:20px; }
.reviewer { display:flex; align-items:center; gap:12px; }
.rev-avatar { width:44px; height:44px; border-radius:50%; background:var(--brand); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:15px; color:#fff; flex-shrink:0; }
.rev-name { font-weight:600; font-size:14px; }
.rev-role { font-size:12px; color:var(--text-light); }

/* CTA Banner */
.cta-band { background:linear-gradient(130deg,var(--brand-dark) 0%,var(--brand) 55%,var(--brand-light) 100%); padding:80px 0; position:relative; overflow:hidden; }
.cta-band::after { content:'🍽️'; position:absolute; right:60px; top:50%; transform:translateY(-50%); font-size:180px; opacity:.08; }
.cta-inner { max-width:780px; margin:0 auto; text-align:center; padding:0 32px; position:relative; }
.cta-inner h2 { font-family:var(--font-display); font-size:42px; font-weight:800; color:#fff; margin-bottom:16px; line-height:1.1; }
.cta-inner p { font-size:17px; color:rgba(255,255,255,0.85); margin-bottom:36px; line-height:1.65; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-white { padding:14px 32px; border-radius:10px; font-size:15px; font-weight:700; background:#fff; color:var(--brand-dark); border:none; cursor:pointer; font-family:var(--font-body); transition:all .2s; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,0.18); }

/* Blog */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card { border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); background:#fff; cursor:pointer; transition:all .25s; }
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.blog-img { height:206px; background:linear-gradient(135deg,var(--brand-pale),#fff); display:flex; align-items:center; justify-content:center; font-size:56px; position:relative; overflow:hidden; }
.blog-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.blog-body { padding:24px; }
.blog-tag { font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:1px; color:var(--brand); margin-bottom:10px; }
.blog-body h3 { font-size:17px; font-weight:700; line-height:1.35; margin-bottom:10px; color:var(--dark); }
.blog-body p { font-size:13.5px; color:var(--text-light); line-height:1.65; }
.blog-meta { display:flex; gap:14px; margin-top:16px; font-size:12px; color:var(--text-light); }

/* FAQ */
.faq-list { max-width:780px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { border:1.5px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.faq-q { display:flex; justify-content:space-between; align-items:center; padding:19px 24px; font-size:15px; font-weight:600; cursor:pointer; transition:background .15s; gap:12px; user-select:none; }
.faq-q:hover { background:var(--brand-pale); }
.faq-item.open .faq-q { color:var(--brand); background:var(--brand-pale); }
.faq-q svg { flex-shrink:0; transition:transform .25s; color:var(--text-light); }
.faq-item.open .faq-q svg { transform:rotate(180deg); color:var(--brand); }
.faq-a { padding:0 24px; max-height:0; overflow:hidden; transition:max-height .35s ease,padding .25s; font-size:14.5px; color:var(--text-mid); line-height:1.75; }
.faq-item.open .faq-a { max-height:280px; padding:0 24px 20px; }

@media(max-width:1024px){.hero-inner{grid-template-columns:1fr}.products-grid{grid-template-columns:repeat(2,1fr)}.cities-grid{grid-template-columns:repeat(2,1fr)}.testi-grid{grid-template-columns:1fr}}
@media(max-width:768px){.hero h1{font-size:36px}.products-grid{grid-template-columns:1fr}.blog-grid{grid-template-columns:1fr}.steps-grid{grid-template-columns:1fr}.steps-grid::before{display:none}}

/* ===== FROM: menu.html ===== */
.menu-filter-bar{background:var(--cream);border-bottom:1px solid var(--border);padding:18px 0;position:sticky;top:72px;z-index:100;}
.filter-btns{display:flex;gap:10px;flex-wrap:wrap;}
.filter-btn{padding:8px 18px;border-radius:40px;border:1.5px solid var(--border);background:#fff;font-size:13.5px;font-weight:500;cursor:pointer;transition:all .2s;font-family:var(--font-body);color:var(--text-mid);}
.filter-btn.active,.filter-btn:hover{background:var(--brand);border-color:var(--brand);color:#fff;}
.menus-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.menu-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;cursor:pointer;transition:all .25s;}
.menu-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--brand);}
.menu-card-img{height:180px;display:flex;align-items:center;justify-content:center;font-size:64px;background:linear-gradient(135deg,var(--brand-pale),#fff8f6);}
.menu-card-body{padding:22px;}
.menu-badge{display:inline-block;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.8px;background:var(--brand-pale);color:var(--brand);margin-bottom:10px;}
.menu-card-body h3{font-size:17px;font-weight:700;margin-bottom:8px;color:var(--dark);}
.menu-card-body p{font-size:13.5px;color:var(--text-light);line-height:1.6;margin-bottom:14px;}
.menu-meta{display:flex;justify-content:space-between;align-items:center;padding-top:14px;border-top:1px solid var(--border);}
.menu-price{font-weight:700;color:var(--brand);font-size:15px;}
.menu-tags{display:flex;gap:6px;}
.tag{font-size:11px;padding:3px 8px;background:var(--cream);border-radius:20px;color:var(--text-light);}
@media(max-width:900px){.menus-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.menus-grid{grid-template-columns:1fr}}

/* ===== FROM: cities.html ===== */
.city-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;}
.city-detail{padding:72px 0;border-bottom:1px solid var(--border);}
.city-detail:last-child{border-bottom:none;}
.city-info-block h2{font-family:var(--font-display);font-size:36px;font-weight:700;margin-bottom:14px;}
.city-info-block p{font-size:15.5px;color:var(--text-mid);line-height:1.75;margin-bottom:22px;}
.city-vis{border-radius:var(--radius-lg);overflow:hidden;height:280px;display:flex;align-items:center;justify-content:center;font-size:80px;}
.client-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px;}
.client-chip{background:var(--brand-pale);border:1px solid rgba(224,90,56,.2);border-radius:8px;padding:6px 14px;font-size:13px;color:var(--brand-dark);font-weight:500;}
@media(max-width:900px){.city-hero-grid{grid-template-columns:1fr}}

/* ===== FROM: about.html ===== */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-bottom:80px;}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.value-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:32px;text-align:center;transition:all .25s;}
.value-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--brand);}
.value-ico{font-size:40px;margin-bottom:16px;}
.value-card h3{font-size:18px;font-weight:700;margin-bottom:10px;}
.value-card p{font-size:14px;color:var(--text-light);line-height:1.65;}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.team-card{text-align:center;}
.team-avatar{width:96px;height:96px;border-radius:50%;margin:0 auto 16px;display:flex;align-items:center;justify-content:center;font-size:36px;font-weight:700;color:#fff;}
.team-card h4{font-size:15.5px;font-weight:700;margin-bottom:4px;}
.team-card span{font-size:13px;color:var(--text-light);}
.timeline{display:flex;flex-direction:column;gap:32px;position:relative;padding-left:32px;}
.timeline::before{content:'';position:absolute;left:0;top:8px;bottom:8px;width:2px;background:linear-gradient(to bottom,var(--brand),var(--brand-light));}
.tl-item{position:relative;}
.tl-item::before{content:'';position:absolute;left:-38px;top:6px;width:14px;height:14px;border-radius:50%;background:var(--brand);border:3px solid #fff;box-shadow:0 0 0 2px var(--brand);}
.tl-year{font-weight:700;color:var(--brand);font-size:14px;margin-bottom:4px;}
.tl-item h4{font-size:16px;font-weight:700;margin-bottom:6px;}
.tl-item p{font-size:14px;color:var(--text-light);line-height:1.65;}
@media(max-width:900px){.about-grid{grid-template-columns:1fr}.team-grid{grid-template-columns:repeat(2,1fr)}.values-grid{grid-template-columns:1fr 1fr}}

/* ===== FROM: reviews.html ===== */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.r-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:30px;position:relative;}
.r-card::before{content:'"';position:absolute;top:14px;right:20px;font-family:var(--font-display);font-size:80px;color:var(--brand);opacity:.1;line-height:1;}
.r-stars{color:var(--brand);font-size:16px;margin-bottom:14px;}
.r-card blockquote{font-size:14.5px;color:var(--text-mid);line-height:1.75;font-style:italic;margin-bottom:22px;}
.r-reviewer{display:flex;align-items:center;gap:12px;}
.r-avatar{width:46px;height:46px;border-radius:50%;background:var(--brand);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:16px;color:#fff;flex-shrink:0;}
.r-name{font-weight:700;font-size:14.5px;}
.r-role{font-size:12.5px;color:var(--text-light);}
.rating-summary{background:var(--brand-pale);border-radius:var(--radius-lg);padding:40px;display:flex;align-items:center;gap:48px;margin-bottom:64px;flex-wrap:wrap;}
.rating-big{text-align:center;}
.rating-big strong{font-family:var(--font-display);font-size:72px;font-weight:800;color:var(--brand);display:block;line-height:1;}
.rating-big .stars{font-size:24px;color:var(--brand);}
.rating-bars{flex:1;min-width:240px;}
.rbar-row{display:flex;align-items:center;gap:12px;margin-bottom:10px;font-size:13px;}
.rbar-track{flex:1;height:8px;background:#e8e4df;border-radius:4px;overflow:hidden;}
.rbar-fill{height:100%;background:var(--brand);border-radius:4px;}
@media(max-width:900px){.reviews-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.reviews-grid{grid-template-columns:1fr}}

/* ===== FROM: gallery.html ===== */
.gallery-filter{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:40px;}
.gf-btn{padding:8px 18px;border-radius:40px;border:1.5px solid var(--border);background:#fff;font-size:13.5px;font-weight:500;cursor:pointer;transition:all .2s;font-family:var(--font-body);color:var(--text-mid);}
.gf-btn.active,.gf-btn:hover{background:var(--brand);border-color:var(--brand);color:#fff;}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.gallery-grid .g-item{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3;background:linear-gradient(135deg,var(--brand-pale),#fff8f6);display:flex;align-items:center;justify-content:center;font-size:56px;cursor:pointer;transition:all .25s;position:relative;}
.gallery-grid .g-item.tall{grid-row:span 2;aspect-ratio:auto;}
.gallery-grid .g-item:hover{transform:scale(1.02);box-shadow:var(--shadow-lg);}
.gallery-grid .g-item img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.g-item .g-overlay{position:absolute;inset:0;background:rgba(224,90,56,0);display:flex;align-items:center;justify-content:center;transition:background .2s;}
.g-item:hover .g-overlay{background:rgba(224,90,56,0.2);}
@media(max-width:900px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.gallery-grid{grid-template-columns:1fr}}

/* ===== FROM: blog.html ===== */
.blog-hero-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.b-card{border-radius:var(--radius-lg);overflow:hidden;border:1.5px solid var(--border);background:#fff;cursor:pointer;transition:all .25s;}
.b-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);}
.b-img{height:200px;background:linear-gradient(135deg,var(--brand-pale),#fff8f6);display:flex;align-items:center;justify-content:center;font-size:60px;position:relative;overflow:hidden;}
.b-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.b-body{padding:24px;}
.b-tag{font-size:11.5px;font-weight:600;text-transform:uppercase;letter-spacing:1px;color:var(--brand);margin-bottom:10px;}
.b-body h3{font-size:18px;font-weight:700;line-height:1.35;margin-bottom:10px;color:var(--dark);}
.b-body p{font-size:14px;color:var(--text-light);line-height:1.7;}
.b-meta{display:flex;gap:14px;margin-top:16px;font-size:12px;color:var(--text-light);padding-top:14px;border-top:1px solid var(--border);}
.featured-post{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;background:var(--brand-pale);border-radius:var(--radius-lg);padding:48px;margin-bottom:64px;}
.featured-post h2{font-family:var(--font-display);font-size:32px;font-weight:700;margin-bottom:14px;color:var(--dark);}
@media(max-width:900px){.blog-hero-grid{grid-template-columns:repeat(2,1fr)}.featured-post{grid-template-columns:1fr}}
@media(max-width:600px){.blog-hero-grid{grid-template-columns:1fr}}

/* ===== FROM: faq.html ===== */
.faq-cats{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:48px;}
.faq-cat-btn{padding:8px 18px;border-radius:40px;border:1.5px solid var(--border);background:#fff;font-size:13.5px;font-weight:500;cursor:pointer;transition:all .2s;font-family:var(--font-body);color:var(--text-mid);}
.faq-cat-btn.active,.faq-cat-btn:hover{background:var(--brand);border-color:var(--brand);color:#fff;}
.faq-section-title{font-size:20px;font-weight:700;color:var(--dark);margin:40px 0 20px;display:flex;align-items:center;gap:10px;}
.faq-list{max-width:100%;display:flex;flex-direction:column;gap:12px;}
.faq-item{border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;}
.faq-q{display:flex;justify-content:space-between;align-items:center;padding:19px 24px;font-size:15px;font-weight:600;cursor:pointer;transition:background .15s;gap:12px;user-select:none;}
.faq-q:hover{background:var(--brand-pale);}
.faq-item.open .faq-q{color:var(--brand);background:var(--brand-pale);}
.faq-q svg{flex-shrink:0;transition:transform .25s;color:var(--text-light);}
.faq-item.open .faq-q svg{transform:rotate(180deg);color:var(--brand);}
.faq-a{padding:0 24px;max-height:0;overflow:hidden;transition:max-height .35s ease,padding .25s;font-size:14.5px;color:var(--text-mid);line-height:1.75;}
.faq-item.open .faq-a{max-height:300px;padding:0 24px 20px;}

/* ===== FROM: contact.html ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:60px;align-items:start;}
.contact-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:32px;margin-bottom:20px;}
.contact-card h3{font-size:17px;font-weight:700;margin-bottom:12px;display:flex;align-items:center;gap:8px;}
.contact-card p,.contact-card a{font-size:15px;color:var(--text-mid);line-height:1.65;}
.contact-card a{color:var(--brand);font-weight:500;}
.form-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:40px;}
.form-card h2{font-family:var(--font-display);font-size:28px;font-weight:700;margin-bottom:8px;}
.form-card p{color:var(--text-light);font-size:14.5px;margin-bottom:28px;}
.map-placeholder{background:linear-gradient(135deg,var(--brand-pale),#fff8f6);border-radius:var(--radius-lg);height:240px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;border:1.5px solid var(--border);margin-bottom:20px;}
.map-placeholder .map-ico{font-size:48px;}
.map-placeholder p{font-size:14px;color:var(--text-light);}
@media(max-width:900px){.contact-grid{grid-template-columns:1fr}}