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

/* =========================
   CSS VARIABLES
========================= */
:root {
  --bg-primary: #0b0f17;
  --bg-secondary: #111827;
  --bg-tertiary: #1a2233;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-bg-strong: #151d2d;
  --card-border: rgba(255, 255, 255, 0.08);

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --accent: #ff8c42;
  --accent-2: #ffb86b;
  --accent-3: #ffd6a5;
  --accent-dark: #f97316;

  --success: #22c55e;
  --danger: #ef4444;

  --white: #ffffff;
  --black: #000000;

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.25);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.18);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --transition: all 0.35s ease;
  --container-width: 1240px;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 140, 66, 0.12), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(255, 184, 107, 0.08), transparent 22%),
    linear-gradient(180deg, #0b0f17 0%, #0e1420 50%, #0b1018 100%);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

section {
  position: relative;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

/* =========================
   GLOBAL CLASSES
========================= */
.container {
  width: min(92%, var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  background: rgba(255, 184, 107, 0.12);
  border: 1px solid rgba(255, 184, 107, 0.2);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}

.section-subtitle,
.section-text {
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.section-text + .section-text {
  margin-top: 16px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.32);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: rgba(255, 184, 107, 0.5);
  background: rgba(255, 184, 107, 0.08);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: #111827;
}

.btn-light:hover {
  transform: translateY(-3px);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   HEADER / NAVBAR
========================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(11, 15, 23, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-btn {
  padding: 12px 20px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   HERO
========================= */
.hero {
  padding: 180px 0 120px;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 184, 107, 0.12);
  border: 1px solid rgba(255, 184, 107, 0.18);
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

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

.hero-text {
  max-width: 640px;
  color: var(--text-secondary);
  font-size: 1.08rem;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.stat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--accent-2);
}

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

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-card {
  position: relative;
  width: min(100%, 480px);
  border-radius: 34px;
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.main-card img {
  height: 620px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  z-index: 4;
  animation: floatY 4s ease-in-out infinite;
}

.floating-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 1.2rem;
}

.floating-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.floating-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.floating-card-1 {
  top: 80px;
  left: -30px;
}

.floating-card-2 {
  bottom: 70px;
  right: -10px;
  animation-delay: 1.5s;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  z-index: 1;
}

.hero-shape-1 {
  width: 240px;
  height: 240px;
  background: rgba(255, 140, 66, 0.18);
  top: 40px;
  right: 40px;
}

.hero-shape-2 {
  width: 180px;
  height: 180px;
  background: rgba(255, 184, 107, 0.14);
  bottom: 50px;
  left: 20px;
}

/* =========================
   ABOUT
========================= */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 560px;
}

.about-img {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-img img {
  height: 100%;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.06);
}

.about-img-large {
  width: 78%;
  height: 520px;
  left: 0;
  top: 0;
}

.about-img-small {
  width: 44%;
  height: 260px;
  right: 0;
  bottom: 0;
}

.about-features {
  display: grid;
  gap: 16px;
  margin: 28px 0 34px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-item i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 184, 107, 0.12);
  color: var(--accent-2);
  font-size: 1.1rem;
}

/* =========================
   MENU
========================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.menu-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--card-border);
  border-radius: 26px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 184, 107, 0.2);
}

.menu-card-image {
  position: relative;
  overflow: hidden;
}

.menu-card-image img {
  height: 260px;
  transition: transform 0.5s ease;
}

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

.menu-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

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

.menu-card-content h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.menu-card-content p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  margin-bottom: 22px;
}

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

.price {
  color: var(--accent-2);
  font-size: 1.18rem;
  font-weight: 800;
}

.menu-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 184, 107, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(255, 184, 107, 0.16);
  font-weight: 600;
  transition: var(--transition);
}

.menu-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.menu-bottom {
  margin-top: 40px;
  text-align: center;
}

/* =========================
   OFFERS
========================= */
.offers-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
}

.offer-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

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

.offer-card-large {
  min-height: 320px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 140, 66, 0.92), rgba(249, 115, 22, 0.78)),
    url("images/offer-bg.jpg") center/cover no-repeat;
  color: var(--white);
}

.offer-card h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.offer-card p {
  color: var(--text-secondary);
}

.offer-card-large p {
  color: rgba(255,255,255,0.88);
}

.offer-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.88rem;
  font-weight: 700;
}

.offer-card:not(.offer-card-large) .offer-label {
  background: rgba(255, 184, 107, 0.12);
  border-color: rgba(255, 184, 107, 0.16);
  color: var(--accent-2);
}

/* =========================
   WHY US
========================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 34px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 184, 107, 0.18);
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,140,66,0.15), rgba(255,184,107,0.14));
  color: var(--accent-2);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-secondary);
}

/* =========================
   GALLERY
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
  height: 100%;
  transition: transform 0.55s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,23,0.25), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

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

/* =========================
   REVIEWS
========================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.review-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.review-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 110px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.24);
}

.review-user h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.review-user span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* =========================
   CONTACT
========================= */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.contact-cards {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 184, 107, 0.12);
  color: var(--accent-2);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.contact-card p {
  color: var(--text-secondary);
}

.map-card {
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 100%;
}

/* =========================
   CTA
========================= */
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 24%),
    linear-gradient(135deg, #ff8c42 0%, #f97316 100%);
  box-shadow: var(--shadow-lg);
}

.cta-card .section-tag {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.cta-card p {
  max-width: 680px;
  color: rgba(255,255,255,0.88);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 90px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 380px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer-links ul {
  display: grid;
  gap: 12px;
}

.footer-links li,
.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-2);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icons a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: translateY(-4px);
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================
   SCROLL TOP
========================= */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: var(--transition);
}

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

.scroll-top:hover {
  transform: translateY(-4px);
}

/* =========================
   REVEAL ANIMATION BASE
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =========================
   KEYFRAMES
========================= */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* =========================
   RESPONSIVE - LARGE
========================= */
@media (max-width: 1200px) {
  .hero-container,
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    order: -1;
  }

  .main-card img {
    height: 560px;
  }

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

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

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

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

  .contact-info {
    order: 1;
  }
}

/* =========================
   RESPONSIVE - TABLET
========================= */
@media (max-width: 992px) {
  .section {
    padding: 90px 0;
  }

  .hero {
    padding: 150px 0 90px;
  }

  .nav {
    position: fixed;
    top: 88px;
    right: -100%;
    width: min(90%, 380px);
    background: rgba(11, 15, 23, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 26px;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    transition: 0.35s ease;
  }

  .nav.show-menu {
    right: 20px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-btn {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .about-images {
    min-height: 520px;
  }

  .gallery-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
  }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width: 768px) {
  .container {
    width: min(94%, var(--container-width));
  }

  .section-header {
    margin-bottom: 44px;
  }

  .hero-content h1 {
    font-size: clamp(2.3rem, 9vw, 3.6rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .main-card img {
    height: 440px;
  }

  .floating-card {
    transform: scale(0.9);
  }

  .floating-card-1 {
    top: 30px;
    left: -6px;
  }

  .floating-card-2 {
    bottom: 20px;
    right: -6px;
  }

  .about-images {
    min-height: 420px;
  }

  .about-img-large {
    width: 100%;
    height: 320px;
    position: relative;
  }

  .about-img-small {
    width: 180px;
    height: 160px;
    right: 12px;
    bottom: -20px;
  }

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

  .menu-card-image img {
    height: 240px;
  }

  .contact-container {
    gap: 28px;
  }

  .map-card {
    min-height: 360px;
  }

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

/* =========================
   RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 576px) {
  .header {
    padding: 14px 0;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .stat-card,
  .review-card,
  .why-card,
  .offer-card,
  .contact-card {
    padding: 22px;
  }

  .main-card {
    border-radius: 26px;
  }

  .main-card img {
    height: 360px;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
    width: 100%;
    animation: none;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-images {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-img {
    position: static;
    width: 100%;
    height: 240px;
  }

  .cta-card {
    padding: 28px 22px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .scroll-top {
    right: 16px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}