/* ============================================================
   SAMA FRESH HOUSE — Main Stylesheet
   Redesign: tighter spacing, better hierarchy, no shortcuts
   ============================================================ */

:root {
  --red:        #B71C1C;
  --red-dark:   #911515;
  --red-dim:    rgba(183, 28, 28, 0.07);
  --gold:       #D4A017;
  --charcoal:   #1A1A1A;
  --dark:       #111;
  --gray-600:   #525252;
  --gray-400:   #A3A3A3;
  --gray-200:   #E5E5E5;
  --gray-100:   #F2F2F0;
  --cream:      #FFF8F0;
  --white:      #FFF;
  --green:      #22C55E;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.1);
  --font-head:  'EB Garamond', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.accent { color: var(--red); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================ TYPOGRAPHY */
.section-tag {
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--gray-600);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 48px; }
.products .section-header { text-align: left; }
.testimonials .section-header { text-align: left; }
.about .section-header { text-align: left; }

/* ============================================================ BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(196,30,42,0.3);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }

/* ============================================================ SCROLL REVEAL */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left  { transform: translateY(32px); }
.reveal-right { transform: translateY(32px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
}

/* ============================================================ NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}
.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo { color: var(--charcoal); }
.logo-icon { font-size: 26px; line-height: 1; }
.logo-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.logo-text { line-height: 1.2; }
.logo-main {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  display: block;
}
.logo-sub { display: none; }

.nav-links { display: none; align-items: center; gap: 4px; }
.nav-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  transition: background 0.2s, color 0.3s;
}
.navbar.scrolled .nav-link { color: var(--charcoal); }
.nav-link:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.navbar.scrolled .nav-link:hover { background: var(--red-dim); color: var(--red); }
.navbar.scrolled .nav-link.active-link { color: var(--red); background: var(--red-dim); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-left: 4px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta i { font-size: 16px; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ============================================================ MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100dvh;
  background: var(--white);
  z-index: 2000;
  padding: 28px 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  font-size: 18px;
  color: var(--gray-600);
  transition: background 0.2s;
}
.mobile-close:hover { background: var(--gray-200); }
.mobile-menu ul { margin-top: 56px; display: flex; flex-direction: column; gap: 2px; }
.mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-link:hover { background: var(--red-dim); color: var(--red); }
.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.mobile-overlay.show { opacity: 1; pointer-events: all; }

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 20px 50px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 7.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
}
.title-accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px;
  max-width: 480px;
  line-height: 1.65;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll { display: none; }
@media (min-width: 768px) {
}

/* ============================================================ TRUST BAR */
.trust-bar {
  background: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
}
.trust-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item i { color: var(--green); font-size: 13px; }
@media (max-width: 639px) {
  .trust-bar {
    padding: 10px 0;
  }
  .trust-container {
    flex-wrap: nowrap;
    animation: trustMarquee 12s linear infinite;
    width: max-content;
    gap: 24px;
  }
  @keyframes trustMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
}

/* ============================================================ ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.about-img-main img, .about-img-accent img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.about-img-main img { height: 260px; }
.about-img-accent img { height: 170px; }
.about-badge-float {
  display: none;
}
.about-text {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.value-pill:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.value-pill i { color: var(--red); font-size: 12px; }
.value-pill:hover i { color: var(--white); }

@media (min-width: 640px) {
  .about-images { grid-template-columns: 2fr 1fr; }
  .about-img-main img { height: 320px; }
  .about-img-accent img { height: 200px; }
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
  .about-img-main img { height: 400px; }
}

/* ============================================================ PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  border: 2px solid var(--charcoal);
  transition: border-color 0.25s;
}
.product-card:hover {
  box-shadow: none;
  transform: none;
  border-color: var(--red);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.12); }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
.product-badge--hot { background: #EA580C; }
.product-badge--new { background: var(--green); }
.product-body { padding: 18px; }
.product-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-desc {
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.price-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
}
.price-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.order-btn:hover { background: var(--red-dark); transform: translateX(2px); }

@media (min-width: 640px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================ WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.why-card {
  background: var(--cream);
  border: none;
  border-radius: 8px;
  padding: 28px 24px;
  transition: background 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: none;
  box-shadow: none;
  transform: translateY(-2px);
  background: var(--white);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.why-icon--red,
.why-icon--green,
.why-icon--blue,
.why-icon--orange,
.why-icon--purple,
.why-icon--teal { background: var(--red-dim); color: var(--red); }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p { color: var(--gray-600); font-size: 14px; line-height: 1.6; }

@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================ DELIVERY */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.delivery-text {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.delivery-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.delivery-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.step-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.step-info p { color: var(--gray-600); font-size: 13px; line-height: 1.55; }

.delivery-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  margin-bottom: 16px;
}
.dc-header {
  background: #075E54;
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}
.dc-header i { font-size: 20px; }
.dc-online { margin-left: auto; font-size: 11px; color: #4CAF50; }
.dc-body {
  padding: 16px;
  background: #ECE5DD;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dc-msg {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.dc-msg--incoming { background: var(--white); align-self: flex-start; border-radius: 0 10px 10px 10px; }
.dc-msg--outgoing { background: #DCF8C6; align-self: flex-end; border-radius: 10px 0 10px 10px; }
.dc-footer {
  padding: 10px 18px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 600;
}
.dc-footer i { color: var(--red); }

.delivery-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.df-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}
.df-item i { color: var(--red); width: 14px; text-align: center; }
@media (min-width: 1024px) {
  .delivery-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
}

/* ============================================================ GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item--large { grid-column: span 2; aspect-ratio: 16/10; }
.gallery-item--wide  { grid-column: span 2; aspect-ratio: 16/8; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

@media (min-width: 640px) {
  .gallery-grid { gap: 12px; }
  .gallery-item--wide { aspect-ratio: 16/7; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--large { grid-column: span 2; }
  .gallery-item--wide  { grid-column: span 2; aspect-ratio: 16/6; }
}

/* ============================================================ TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.testi-card {
  position: relative;
  background: var(--white);
  border: none;
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}
.testi-card:hover {
  border-color: var(--gold);
  background: var(--cream);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 22px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(183, 28, 28, 0.06);
  line-height: 1;
  pointer-events: none;
}
.testi-stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; letter-spacing: 1px; }
.testi-text {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-location { font-size: 12px; color: var(--gray-400); margin-top: 1px; }
.testi-location i { color: var(--red); font-size: 10px; margin-right: 2px; }

@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================ REVIEW SUBMIT (main page) */
.rs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.review-submit {
  padding: 32px;
  background: var(--white);
  border: 2px solid var(--charcoal);
  border-radius: 8px;
}
.review-submit h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.review-submit > p {
  color: var(--gray-600);
  font-size: 13px;
  margin-bottom: 20px;
}
.rs-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.rs-row input { flex: 1; min-width: 180px; }
.review-submit input,
.review-submit select,
.review-submit textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--cream);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 12px;
}
.review-submit input:focus,
.review-submit select:focus,
.review-submit textarea:focus { border-color: var(--red); }
.review-submit textarea { min-height: 100px; resize: vertical; }
.rs-help {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.review-submit button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.review-submit button:hover { background: var(--red-dark); }
#rs_msg { margin-top: 8px; font-size: 14px; }
#rs_msg.success { color: var(--green); }
#rs_msg.error { color: var(--red); }

.rs-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
}
.rs-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.rs-image-text {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 20px;
}
@media (min-width: 768px) {
  .rs-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rs-image { height: 100%; min-height: 380px; }
}

/* ============================================================ CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: var(--red); transform: translateX(3px); }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--red-dim);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-icon--wa  { background: rgba(37,211,102,0.1); color: #25D366; }
.contact-icon--fb  { background: rgba(24,119,242,0.08); color: #1877F2; }
.contact-icon--loc { background: rgba(239,68,68,0.08); color: #EF4444; }
.contact-icon--time { background: rgba(245,158,11,0.08); color: #D97706; }
.contact-card h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); margin-bottom: 1px; }
.contact-card a, .contact-card p { font-size: 14px; font-weight: 600; color: var(--charcoal); line-height: 1.45; }
.contact-card a:hover { color: var(--red); }

.contact-map {
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #E8F0F7 0%, #D4E4F0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.map-pin { font-size: 40px; color: var(--red); }
.map-placeholder h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; }
.map-placeholder p { color: var(--gray-600); font-size: 13px; }
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  transition: background 0.2s;
}
.map-btn:hover { background: var(--red-dark); }

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .contact-map { height: 100%; min-height: 320px; }
}

/* ============================================================ FOOTER */
.footer { background: var(--charcoal); color: var(--white); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo .logo-main {
  font-family: var(--font-head);
  font-size: 17px;
}
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.65; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-socials a:hover { background: var(--red); color: var(--white); border-color: var(--red); transform: translateY(-2px); }

.footer-links-col h4, .footer-contact-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links-col a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color 0.2s, padding 0.2s;
}
.footer-links-col a:hover { color: var(--red); padding-left: 3px; }

.footer-contact-col p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-col i { color: var(--red); margin-top: 2px; width: 14px; flex-shrink: 0; }

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
  transition: background 0.2s, transform 0.2s;
}
.footer-wa-btn:hover { background: #1DA851; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 12px; }

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }
}

/* ============================================================ WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  will-change: transform;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--charcoal);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

@media (min-width: 1024px) {
  .wa-float { bottom: 24px; right: 24px; width: 60px; height: 60px; font-size: 28px; }
}

/* ============================================================ BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 86px; right: 20px;
  z-index: 900;
  width: 40px; height: 40px;
  background: var(--white);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, background 0.2s, color 0.2s;
  border: 1px solid var(--gray-200);
}
.back-to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ============================================================ RESPONSIVE BREAKPOINTS */
@media (min-width: 640px) {
  .section { padding: 90px 0; }
  .section-header { margin-bottom: 52px; }
}
@media (min-width: 1024px) {
  .section { padding: 100px 0; }
  .section-header { margin-bottom: 56px; }
}

/* ============================================================ END */
