*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow:  #F5B800;
  --orange:  #E8720C;
  --red:     #B5171E;
  --gold:    #D4960A;
  --dark:    #1E1008;
  --dark2:   #3B1F0E;
  --light:   #FDF6EC;
  --cream:   #FFF8F0;
  --white:   #ffffff;
  --text:    #2C1A0E;
  --muted:   #7A5C44;

  --font-head: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui:   'Inter', sans-serif;
}
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.6; }

/* ── KEYFRAMES ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes slideLeft{ from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideRight{from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn  { from { opacity:0; transform:scale(0.8); } to { opacity:1; transform:scale(1); } }
@keyframes float    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes pulse    { 0%,100% { box-shadow:0 0 0 0 rgba(255,140,0,0.5); } 70% { box-shadow:0 0 0 14px rgba(255,140,0,0); } }
@keyframes shimmer  { 0% { background-position:-200% center; } 100% { background-position:200% center; } }
@keyframes rotateBg { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes bounce   { 0%,100%{transform:translateY(0)}40%{transform:translateY(-8px)}60%{transform:translateY(-4px)} }
@keyframes countUp  { from { opacity:0; transform:scale(0.5); } to { opacity:1; transform:scale(1); } }
@keyframes barFill  { from { width:0; } to { width:var(--w); } }
@keyframes waveIn   { 0%{clip-path:inset(0 100% 0 0)} 100%{clip-path:inset(0 0% 0 0)} }

.animate-on-scroll { opacity:0; transform:translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:0.1s; }
.delay-2 { transition-delay:0.2s; }
.delay-3 { transition-delay:0.3s; }
.delay-4 { transition-delay:0.4s; }
.delay-5 { transition-delay:0.5s; }

/* ── TOP BAR ── */
.top-bar {
  background: linear-gradient(135deg, #1a1a1a 0%, #3D0000 100%);
  color: rgba(255,255,255,0.75);
  font-size: 12px; font-weight: 500;
  width: 100%; z-index: 1001;
  position: relative;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 5%; gap: 12px;
}
.top-bar-left, .top-bar-right {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.top-bar a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--yellow); }
.top-bar-right span {
  display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.5);
}
.top-bar-right span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; display: inline-block;
  box-shadow: 0 0 6px #4ade80;
}
@media(max-width:768px){
  .top-bar-left a:first-child { display: none; }
  .top-bar-right span { display: none; }
  .top-bar-inner { justify-content: space-between; padding: 7px 4%; }
}
@media(max-width:480px){ .top-bar { display: none; } }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 36px; width:100%; z-index:1000;
  background: transparent;
  backdrop-filter: blur(0px);
  box-shadow: none;
  padding: 0 5%;
  display: flex; align-items:center; justify-content:space-between;
  height: 80px;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  top: 0;
  background: rgba(255,248,240,0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(30,16,8,0.1);
}
.nav-logo { display:flex; align-items:center; text-decoration:none; }
.nav-logo img { height:54px; width:auto; object-fit:contain; transition:transform 0.3s; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
.nav-logo:hover img { transform:scale(1.06); }
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a {
  text-decoration:none; color:white;
  font-weight:600; font-size:14px; letter-spacing:0.4px;
  position:relative; padding-bottom:4px;
  transition:color 0.3s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
nav.scrolled .nav-links a { color: var(--text); text-shadow: none; font-weight: 600; }
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:2px;
  background:linear-gradient(90deg,var(--orange),var(--red));
  border-radius:2px; transition:width 0.3s;
}
.nav-links a:hover { color:var(--yellow); }
nav.scrolled .nav-links a:hover { color:var(--orange); }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  background:linear-gradient(135deg, var(--orange), var(--red));
  color:white; border:none; padding:11px 24px;
  border-radius:28px; font-family:'Inter',sans-serif;
  font-weight:700; font-size:14px; cursor:pointer;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(215,43,43,0.3);
  transition:transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s infinite;
  display:flex; align-items:center; gap:7px;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(215,43,43,0.4); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:10; }
.hamburger span { width:26px; height:3px; background:var(--dark); border-radius:3px; transition:0.3s; display:block; }

/* ── HERO ── */
.hero {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  min-height: 600px;
  left: 0;
  top: 0;
}
.hero-slides { display:flex; width:100%; height:100%; transition:transform 0.8s cubic-bezier(0.77,0,0.18,1); }
.hero-slide { min-width:100vw; width:100vw; height:100%; position:relative; flex-shrink:0; }
.hero-slide img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 70%);
  display:flex; align-items:center; padding:0 8%;
}
.hero-content { max-width:600px; }
.hero-content.active .hero-badge { animation:fadeUp 0.6s 0.1s both; }
.hero-content.active h1      { animation:fadeUp 0.6s 0.25s both; }
.hero-content.active p       { animation:fadeUp 0.6s 0.4s both; }
.hero-content.active .hero-btns { animation:fadeUp 0.6s 0.55s both; }
.hero-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--yellow); color:var(--dark);
  font-weight:700; font-size:12px; padding:6px 18px; border-radius:20px;
  letter-spacing:1px; margin-bottom:18px; text-transform:uppercase;
}
.hero-content h1 {
  font-size:clamp(34px,5.5vw,70px); font-weight:900;
  color:var(--white); line-height:1.08; margin-bottom:18px;
  letter-spacing: -1px;
}
.hero-content h1 span { color:var(--yellow); }
.hero-content p {
  font-size:clamp(15px,1.8vw,18px); color:rgba(255,255,255,0.88);
  margin-bottom:32px; line-height:1.75; max-width:480px;
}
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary {
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  color:var(--dark); font-weight:700; font-size:15px;
  padding:14px 32px; border-radius:32px; text-decoration:none;
  box-shadow:0 6px 20px rgba(255,140,0,0.45);
  transition:transform 0.25s, box-shadow 0.25s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 12px 28px rgba(255,140,0,0.55); }
.btn-secondary {
  background:rgba(255,255,255,0.12); backdrop-filter:blur(10px);
  color:white; font-weight:600; font-size:15px;
  padding:14px 32px; border-radius:32px; text-decoration:none;
  border:2px solid rgba(255,255,255,0.45);
  transition:background 0.3s, border-color 0.3s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-secondary:hover { background:rgba(255,255,255,0.22); border-color:rgba(255,255,255,0.7); }
.hero-dots { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); display:flex; gap:10px; }
.hero-dot {
  width:10px; height:10px; border-radius:50%;
  background:rgba(255,255,255,0.4); cursor:pointer;
  transition:background 0.3s, width 0.3s; border-radius:5px;
}
.hero-dot.active { background:var(--yellow); width:28px; }
.hero-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.18); backdrop-filter:blur(8px);
  border:2px solid rgba(255,255,255,0.3);
  color:white; font-size:22px; width:50px; height:50px;
  border-radius:50%; cursor:pointer; transition:background 0.3s, transform 0.2s;
  display:flex; align-items:center; justify-content:center;
}
.hero-arrow:hover { background:rgba(255,255,255,0.35); transform:translateY(-50%) scale(1.08); }
.hero-arrow.prev { left:22px; }
.hero-arrow.next { right:22px; }
/* floating shapes behind hero */
.hero-shape {
  position:absolute; border-radius:50%; opacity:0.12; pointer-events:none;
  animation:float 6s ease-in-out infinite;
}
.hs1 { width:300px; height:300px; background:var(--yellow); top:-80px; right:-80px; animation-duration:7s; }
.hs2 { width:180px; height:180px; background:var(--orange); bottom:60px; right:120px; animation-duration:5s; animation-delay:1s; }

/* ── TICKER ── */
.ticker-wrap {
  background:linear-gradient(135deg,var(--red),var(--orange));
  overflow:hidden; padding:10px 0; white-space:nowrap;
}
.ticker {
  display:inline-block;
  animation:ticker-scroll 28s linear infinite;
  font-weight:700; font-size:13px; color:white; letter-spacing:1px;
}
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item { display:inline-block; margin:0 36px; }
.ticker-dot { display:inline-block; width:5px; height:5px; border-radius:50%; background:var(--yellow); vertical-align:middle; margin:0 6px; }

/* ── SECTIONS COMMON ── */
section { padding:90px 5%; }
.section-tag {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(232,114,12,0.1); color:var(--orange);
  font-weight:700; font-size:11px; padding:5px 16px; border-radius:20px;
  letter-spacing:2px; text-transform:uppercase; margin-bottom:14px;
  font-family: var(--font-ui);
}
.section-title {
  font-size:clamp(28px,3.8vw,46px); font-weight:800;
  line-height:1.12; margin-bottom:16px; letter-spacing:-0.5px;
  color: var(--dark);
}
.section-title span { color:var(--orange); }
.section-sub { color: var(--muted); font-size:16px; line-height:1.8; max-width:560px; }

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  padding: 48px 5%;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.stat-item { text-align:center; }
.stat-num {
  font-size: clamp(32px,4vw,52px); font-weight:900;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; line-height:1; letter-spacing:-1px;
}
.stat-lbl { font-size:13px; font-weight:600; color:rgba(255,255,255,0.55); margin-top:8px; letter-spacing:0.5px; text-transform:uppercase; }

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img-main {
  width:100%; height:440px; object-fit:cover; border-radius:24px;
  box-shadow:0 24px 60px rgba(0,0,0,0.14); display:block;
}
.about-float-card {
  position:absolute; bottom:28px; left:-24px;
  background:white; border-radius:18px; padding:18px 22px;
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
  animation:float 4s ease-in-out infinite;
}
.about-float-card .big { font-size:34px; font-weight:900; color:var(--orange); line-height:1; }
.about-float-card .sml { font-size:12px; font-weight:600; color:#555; }
.about-float-card2 {
  position:absolute; top:28px; right:-24px;
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  border-radius:18px; padding:16px 20px;
  box-shadow:0 12px 36px rgba(255,140,0,0.35);
  animation:float 5s ease-in-out infinite; animation-delay:0.8s;
}
.about-float-card2 .big { font-size:28px; font-weight:900; color:white; line-height:1; }
.about-float-card2 .sml { font-size:11px; font-weight:600; color:rgba(255,255,255,0.85); }
.about-text .section-sub { max-width:100%; margin-bottom:30px; }
.promise-list { list-style:none; display:flex; flex-direction:column; gap:16px; }
.promise-list li {
  display:flex; align-items:center; gap:14px;
  font-weight:600; font-size:15px; padding:12px 18px;
  background:white; border-radius:14px; color: var(--text);
  box-shadow:0 3px 14px rgba(30,16,8,0.07);
  transition:transform 0.25s, box-shadow 0.25s;
  border-left: 3px solid var(--orange);
}
.promise-list li:hover { transform:translateX(6px); box-shadow:0 6px 20px rgba(0,0,0,0.1); }
.promise-list li .picon {
  width:38px; height:38px; border-radius:10px; flex-shrink:0;
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  display:flex; align-items:center; justify-content:center;
}

/* ── MENU ── */
.menu { background: var(--white); }
.menu-header { text-align:center; margin-bottom:56px; }
.menu-header .section-sub { margin:0 auto; }
.menu-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.menu-card {
  background:white; border-radius:22px;
  box-shadow:0 6px 28px rgba(0,0,0,0.07);
  overflow:hidden; transition:transform 0.35s, box-shadow 0.35s;
  cursor:pointer; border:1.5px solid rgba(0,0,0,0.04);
}
.menu-card:hover { transform:translateY(-10px) scale(1.02); box-shadow:0 20px 48px rgba(0,0,0,0.14); }
.menu-card-img {
  height: 160px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.menu-card:hover .menu-card-img img { transform: scale(1.1); }
.menu-card-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  opacity: 0; transition: opacity 0.3s;
}
.menu-card:hover .menu-card-img::after { opacity: 1; }
.menu-card-body { padding:16px 18px 18px; }
.menu-card-body h3 { font-size:15px; font-weight:800; margin-bottom:5px; color: var(--dark); letter-spacing:-0.2px; }
.menu-card-body p { font-size:12px; color: var(--muted); line-height:1.5; }
.menu-card-tag {
  display:inline-block; margin-top:12px;
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  color:white; font-size:11px; font-weight:700;
  padding:4px 13px; border-radius:12px;
}

/* ── GALLERY ── */
.gallery { background: var(--cream); }
.gallery-header { text-align:center; margin-bottom:52px; }
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.gallery-item {
  border-radius:20px; overflow:hidden;
  box-shadow:0 8px 28px rgba(0,0,0,0.1);
  position:relative; cursor:pointer;
  height: 220px;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s; }
.gallery-item:hover img { transform:scale(1.07); }
.gallery-item .g-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(215,43,43,0.7) 0%, transparent 60%);
  opacity:0; transition:opacity 0.35s;
  display:flex; align-items:flex-end; padding:22px 20px;
}
.gallery-item:hover .g-overlay { opacity:1; }
.gallery-item .g-overlay span { color:white; font-weight:700; font-size:15px; }

/* ── LIGHTBOX ── */
.lightbox {
  display:none; position:fixed; inset:0; z-index:2000;
  background:rgba(0,0,0,0.92); align-items:center; justify-content:center;
}
.lightbox.open { display:flex; }
.lb-inner {
  position:relative; max-width:90vw; max-height:90vh;
  display:flex; flex-direction:column; align-items:center; gap:14px;
}
.lb-img {
  max-width:88vw; max-height:80vh;
  object-fit:contain; border-radius:12px;
  box-shadow:0 24px 60px rgba(0,0,0,0.6);
}
.lb-caption {
  color:rgba(255,255,255,0.8); font-size:15px; font-weight:600;
  text-align:center; letter-spacing:0.5px;
}
.lb-close {
  position:fixed; top:22px; right:28px;
  background:rgba(255,255,255,0.12); border:none; color:white;
  font-size:22px; width:44px; height:44px; border-radius:50%;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background 0.2s; z-index:2001;
}
.lb-close:hover { background:rgba(255,255,255,0.25); }
.lb-prev, .lb-next {
  position:fixed; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.12); border:2px solid rgba(255,255,255,0.2);
  color:white; font-size:32px; width:54px; height:54px; border-radius:50%;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background 0.2s; z-index:2001;
}
.lb-prev { left:16px; }
.lb-next { right:16px; }
.lb-prev:hover, .lb-next:hover { background:rgba(255,255,255,0.25); }

/* ── WHY US ── */
.why { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); position:relative; overflow:hidden; }
.why::before {
  content:''; position:absolute;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(232,114,12,0.1) 0%,transparent 70%);
  top:-150px; right:-100px; pointer-events:none;
}
.why-header { text-align:center; margin-bottom:56px; }
.why-header .section-title { color:white; }
.why-header .section-sub { color:rgba(255,255,255,0.55); margin:0 auto; }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.why-card {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
  border-radius:22px; padding:34px 24px; text-align:center;
  transition:background 0.35s, transform 0.35s, border-color 0.35s;
  position:relative; overflow:hidden;
}
.why-card::before {
  content:''; position:absolute; bottom:-40px; left:50%; transform:translateX(-50%);
  width:120px; height:120px; border-radius:50%;
  background:radial-gradient(circle,rgba(255,200,0,0.12),transparent);
  transition:transform 0.4s;
}
.why-card:hover { background:rgba(255,200,0,0.08); transform:translateY(-8px); border-color:rgba(255,200,0,0.25); }
.why-card:hover::before { transform:translateX(-50%) scale(2); }
.why-icon { width:64px; height:64px; margin:0 auto 20px; }
.why-card h3 { color:var(--yellow); font-size:17px; font-weight:700; margin-bottom:10px; }
.why-card p { color:rgba(255,255,255,0.55); font-size:14px; line-height:1.65; }

/* ── REVIEWS ── */
.reviews { background: var(--white); }
.reviews-header { text-align:center; margin-bottom:52px; }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.review-card {
  background: var(--cream); border-radius:22px; padding:30px;
  box-shadow: 0 4px 22px rgba(30,16,8,0.07);
  transition:transform 0.3s, box-shadow 0.3s;
  border: 1.5px solid rgba(232,114,12,0.1);
  position:relative;
}
.review-card::before {
  content:'\201C'; position:absolute; top:14px; right:20px;
  font-size:80px; color:rgba(232,114,12,0.12); font-family: Georgia,serif; line-height:1;
}
.review-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(30,16,8,0.12); }
.stars { color:var(--yellow); font-size:18px; margin-bottom:14px; letter-spacing:2px; }
.review-card p { font-size:15px; color: var(--muted); line-height:1.8; margin-bottom:22px; font-style:italic; }
.reviewer { display:flex; align-items:center; gap:12px; }
.reviewer-avatar {
  width:46px; height:46px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--yellow), var(--orange));
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:19px; color:white;
}
.reviewer-name { font-weight:700; font-size:15px; color: var(--dark); }
.reviewer-loc { font-size:12px; color: var(--muted); margin-top:2px; }

/* ── CONTACT ── */
.contact { background: var(--cream); }
.contact-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.contact-info .section-sub { margin-bottom:36px; }
.contact-items { display:flex; flex-direction:column; gap:20px; }
.contact-item {
  display:flex; align-items:flex-start; gap:16px;
  background:white; border-radius:16px; padding:18px 20px;
  box-shadow:0 4px 18px rgba(0,0,0,0.06);
  transition:transform 0.25s;
}
.contact-item:hover { transform:translateX(6px); }
.ci {
  width:50px; height:50px; border-radius:14px; flex-shrink:0;
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  display:flex; align-items:center; justify-content:center;
}
.contact-item h4 { font-weight:700; font-size:15px; margin-bottom:4px; }
.contact-item p { color:#666; font-size:14px; }
.whatsapp-btn {
  display:inline-flex; align-items:center; gap:10px;
  background:#25D366; color:white; text-decoration:none;
  font-weight:700; font-size:16px; padding:17px 38px;
  border-radius:50px; margin-top:30px;
  box-shadow:0 6px 24px rgba(37,211,102,0.35);
  transition:transform 0.25s, box-shadow 0.25s;
}
.whatsapp-btn:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(37,211,102,0.45); }
.contact-form-wrap {
  background:white; border-radius:26px; padding:42px;
  box-shadow:0 12px 44px rgba(0,0,0,0.08);
}
.contact-form-wrap h3 { font-size:22px; font-weight:800; margin-bottom:26px; display:flex; align-items:center; gap:10px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-weight:600; font-size:13px; margin-bottom:7px; color:#444; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:13px 16px; border:2px solid rgba(30,16,8,0.1);
  border-radius:12px; font-family:'Inter',sans-serif;
  font-size:14px; outline:none; transition:border-color 0.3s, box-shadow 0.3s;
  background: var(--cream); color:var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--orange); background:white;
  box-shadow:0 0 0 4px rgba(255,140,0,0.1);
}
.form-group textarea { resize:vertical; min-height:100px; }
.form-submit {
  width:100%;
  background:linear-gradient(135deg,var(--orange),var(--red));
  color:white; border:none; padding:15px; border-radius:14px;
  font-family:'Inter',sans-serif; font-weight:700; font-size:15px;
  cursor:pointer; transition:transform 0.2s, box-shadow 0.2s;
  box-shadow:0 5px 18px rgba(215,43,43,0.3);
}
.form-submit:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(215,43,43,0.4); }

/* ── FOOTER ── */
footer { background: var(--dark); color:rgba(255,255,255,0.65); padding:64px 5% 32px; }
.footer-grid { display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:44px; margin-bottom:52px; }
.footer-logo { height:56px; width:auto; object-fit:contain; margin-bottom:16px; display:block; filter:brightness(1.1); }
.footer-brand p { font-size:14px; line-height:1.85; color:rgba(255,255,255,0.45); }
.footer-socials { display:flex; gap:12px; margin-top:22px; }
.footer-socials a {
  width:40px; height:40px; border-radius:12px;
  background:rgba(255,255,255,0.07); display:flex; align-items:center;
  justify-content:center; text-decoration:none;
  transition:background 0.3s, transform 0.2s;
}
.footer-socials a:hover { background:var(--orange); transform:translateY(-3px); }
.footer-col h4 { color:white; font-weight:700; font-size:15px; margin-bottom:18px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-col ul a { color:rgba(255,255,255,0.45); text-decoration:none; font-size:14px; transition:color 0.3s, padding-left 0.3s; display:block; }
.footer-col ul a:hover { color:var(--yellow); padding-left:6px; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.07); padding-top:26px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
}
.footer-bottom p { font-size:13px; }
.footer-bottom span { color:var(--orange); }

/* ── FLOATING BUTTONS ── */
.float-btns {
  position: fixed; bottom: 36px; right: 24px;
  display: flex; flex-direction: column; gap: 14px;
  z-index: 998; align-items: flex-end;
}
.float-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  color: white; box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.25s, box-shadow 0.25s, width 0.3s;
  white-space: nowrap; overflow: hidden;
}
.float-btn span {
  max-width: 80px; overflow: hidden;
  transition: max-width 0.3s, opacity 0.3s;
  opacity: 1;
}
.float-wa { background: #25D366; box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }
.float-call { background: linear-gradient(135deg, var(--orange), var(--red)); box-shadow: 0 6px 20px rgba(232,114,12,0.4); }
.float-call:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(232,114,12,0.5); }

@keyframes float-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.float-btn { animation: float-pop 0.4s ease both; }
.float-call { animation-delay: 0.1s; }

@media(max-width:480px){
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
}

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed; bottom: 160px; right: 30px;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,var(--yellow),var(--orange));
  color: var(--dark); font-size: 18px; border: none; cursor: pointer;
  box-shadow: 0 5px 18px rgba(255,140,0,0.45);
  display: none; align-items: center; justify-content: center;
  transition: transform 0.25s; z-index: 999;
}
.scroll-top.show { display:flex; }
.scroll-top:hover { transform:translateY(-4px); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:repeat(3, 1fr); }
  .gallery-item { height:200px; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .section-title { font-size: clamp(24px,3.5vw,38px); }
  .menu-grid { grid-template-columns:repeat(2,1fr); gap:18px; }
}
@media(max-width:768px){
  .nav-links,.nav-cta { display:none; }
  .hamburger { display:flex; }
  .hero-arrow { display:none; }
  .hamburger span { background: white; }
  nav.scrolled .hamburger span { background: var(--dark); }
  section { padding: 60px 5%; }
  .about-inner { grid-template-columns:1fr; gap: 40px; }
  .about-float-card { left: 12px; bottom: 16px; }
  .about-float-card2 { right: 12px; top: 16px; }
  .contact-inner { grid-template-columns:1fr; gap: 36px; }
  .gallery-grid { grid-template-columns:repeat(2, 1fr); }
  .gallery-item { height:200px; }
  .reviews-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .section-title { font-size: clamp(22px,6vw,34px); letter-spacing:-0.3px; }
  .section-sub { font-size: 15px; }
  .hero-content h1 { font-size: clamp(28px,8vw,48px); letter-spacing:-0.5px; }
  .hero-content p { font-size: 14px; }
  .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 14px; }
  .stats-bar { padding: 36px 5%; gap: 16px; }
  .stat-num { font-size: clamp(26px,7vw,38px); }
  .menu-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .menu-card-img { height: 140px; }
  .menu-card-body { padding: 14px 16px 16px; }
  .menu-card-body h3 { font-size: 15px; }
  .menu-card-body p { font-size: 12px; }
  .contact-form-wrap { padding: 28px 20px; }
  .whatsapp-btn { font-size: 14px; padding: 14px 24px; }
}
@media(max-width:480px){
  .why-grid { grid-template-columns:1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-bar { grid-template-columns:1fr 1fr; gap: 12px; }
  .about-float-card { left: 8px; }
  .about-float-card2 { right: 8px; }
  .hero-content h1 { font-size: clamp(24px,9vw,38px); }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .ticker { font-size: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns:repeat(2, 1fr); }
  .gallery-item { height: 180px; }
  .menu-card-img { height: 120px; }
  .why-card { padding: 24px 16px; }
}
