/*
  MAMLAKET ALBEHAAR — Enhanced Mobile-First UI
  Covers: variables, reset, navbar, hero, features, gallery, order-cta, footer,
          mobile-sticky-bar, popup, animations, responsive breakpoints
*/

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --gold:          #F5CB2E;
  --gold-dim:      rgba(245, 203, 46, 0.15);
  --orange:        #EE5007;
  --orange-dark:   #c01f27;
  --dark:          #0b0e17;
  --dark-2:        #13182a;
  --dark-3:        #1c2236;
  --white:         #ffffff;
  --muted:         #7a8299;
  --green-wa:      #25D366;
  --border:        rgba(255,255,255,0.07);
  --border-gold:   rgba(245, 203, 46, 0.2);
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   BASE RESET
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: 'Outfit', 'Cairo', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* =============================================
   STICKY NAVBAR
============================================= */
.site-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: transparent;
  transition: var(--transition);
}

.site-navbar.scrolled {
  background: rgba(11, 14, 23, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 20px;
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-logo img {
  height: 52px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.scrolled .navbar-logo img {
  height: 38px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-call-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.nav-menu-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(238,80,7,0.5);
  color: var(--white);
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 20px 120px;
}

/* Video */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Multi-layer overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(11,14,23,0.35) 0%,
      rgba(11,14,23,0.55) 50%,
      rgba(11,14,23,0.92) 100%
    );
}

/* Glow orbs for depth */
.hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,203,46,0.12) 0%, transparent 70%);
  top: -100px; right: -150px;
}

.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(238,80,7,0.1) 0%, transparent 70%);
  bottom: 0; left: -100px;
}

/* Main content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Logo */
.hero-logo {
  width: clamp(140px, 45vw, 210px);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 40px rgba(245,203,46,0.3));
  animation: heroLogoFloat 4s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Live badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,203,46,0.08);
  border: 1px solid rgba(245,203,46,0.35);
  color: var(--gold);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.hero-badge .live-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(0.7); }
}

/* Phone link */
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: clamp(22px, 6vw, 36px);
  font-weight: 700;
  padding: 12px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  margin-bottom: 28px;
}

.hero-phone:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.02);
}

.hero-phone .phone-icon {
  animation: phoneRing 3s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 80%, 100% { transform: rotate(0); }
  10% { transform: rotate(-14deg); }
  20% { transform: rotate(14deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0); }
}

/* CTA button group */
.hero-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  width: 100%;
  margin-bottom: 22px;
}

/* Offers primary spans both columns */
.hero-btns .hero-btn-offers-primary {
  grid-column: 1 / -1;
}

/* Shared button base */
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.hero-btn-wa {
  background: linear-gradient(135deg, var(--green-wa) 0%, #1eab53 100%);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37,211,102,0.32);
}

.hero-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.5);
  color: var(--white);
}

.hero-btn-offers {
  background: linear-gradient(135deg, var(--gold) 0%, #e0a910 100%);
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(245,203,46,0.3);
}

.hero-btn-offers:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(245,203,46,0.5);
  color: var(--dark);
}

/* PRIMARY hero offers button — full-width, animated flame */
.hero-btn-offers-primary {
  grid-column: 1 / -1;
  width: 100%;
  font-size: 18px;
  padding: 18px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff6a00 0%, #ffb800 50%, #ff6a00 100%);
  background-size: 200% auto;
  color: var(--dark);
  box-shadow:
    0 0 0 0 rgba(255,184,0,0.55),
    0 10px 36px rgba(255,106,0,0.45);
  animation: offersPulse 2.2s ease-in-out infinite,
             offersShimmer 3s linear infinite;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.hero-btn-offers-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 20%,
    rgba(255,255,255,0.22) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  animation: offersSweep 3s ease-in-out infinite 1s;
}

@keyframes offersSweep {
  0%   { transform: translateX(-120%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes offersPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,184,0,0.55), 0 10px 36px rgba(255,106,0,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(255,184,0,0), 0 14px 44px rgba(255,106,0,0.6); }
}

@keyframes offersShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-btn-offers-primary:hover {
  transform: translateY(-3px) scale(1.02);
  color: var(--dark);
  box-shadow: 0 18px 48px rgba(255,106,0,0.6);
}

.offers-badge-new {
  display: inline-block;
  background: var(--dark);
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 50px;
  letter-spacing: 1.2px;
  vertical-align: middle;
  margin-left: 6px;
}

.hero-btn-menu {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-btn-menu:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  color: var(--white);
}

/* Social row */
.hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-social .follow-label {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.hero-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px) scale(1.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.5;
  animation: scrollBounce 2.2s ease-in-out infinite;
  pointer-events: none;
}

.scroll-indicator span {
  font-size: 11px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(9px); opacity: 0.8; }
}

/* =============================================
   FEATURES STRIP
============================================= */
.features-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg,
    rgba(245,203,46,0.18),
    rgba(238,80,7,0.08)
  );
  border: 1px solid var(--border-gold);
}

.feature-title {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.feature-desc {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
}

/* =============================================
   SECTION HEADER (shared)
============================================= */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}

.section-title {
  color: var(--white);
  font-size: clamp(22px, 5.5vw, 38px);
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--muted);
  font-size: 15px;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================================
   GALLERY SECTION
============================================= */
.gallery-section {
  padding: 64px 20px;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 960px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--dark-3);
}

/* First item spans full width */
.gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(11,14,23,0.85) 0%,
    rgba(11,14,23,0.1) 60%
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.gallery-cta-pill:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: scale(1.04);
}

/* =============================================
   ORDER CTA SECTION
============================================= */
.order-cta-section {
  padding: 72px 20px;
  background: var(--dark-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.order-cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse,
    rgba(245,203,46,0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.order-cta-section .section-title {
  margin-bottom: 8px;
}

.order-cta-section .section-subtitle {
  margin-bottom: 32px;
}

.order-btns-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto 28px;
}

.btn-wa-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--green-wa);
  color: var(--white);
  border-radius: 18px;
  padding: 17px 32px;
  font-size: 17px;
  font-weight: 700;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 10px 36px rgba(37,211,102,0.3);
}

.btn-wa-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
  color: var(--white);
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  width: 100%;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-call-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  border-radius: 16px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
}

.btn-call-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  transition: var(--transition);
}

.location-link:hover {
  color: var(--gold);
}

.location-link i {
  color: var(--gold);
}

/* =============================================
   FOOTER
============================================= */
.site-footer-new {
  background: #070910;
  border-top: 1px solid var(--border);
  padding: 52px 24px 110px; /* bottom space for sticky bar on mobile */
}

.footer-inner {
  max-width: 820px;
  margin: 0 auto;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  font-family: 'Cairo', sans-serif;
  margin-bottom: 28px;
  line-height: 1.5;
}

.footer-contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--transition);
}

.footer-contact-list li a i {
  color: var(--gold);
  width: 18px;
  flex-shrink: 0;
}

.footer-contact-list li a:hover {
  color: var(--gold);
}

.footer-social-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
}

.footer-social-link {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social-link.wa:hover {
  background: var(--green-wa);
  border-color: var(--green-wa);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-nav-list li a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}

.footer-nav-list li a:hover {
  color: var(--gold);
}

.footer-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-copyright {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  color: var(--muted);
  font-size: 12px;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* =============================================
   MOBILE STICKY BOTTOM BAR
============================================= */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 880;
  background: rgba(11, 14, 23, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: none;
}

.sticky-btn.call {
  background: rgba(245,203,46,0.1);
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.sticky-btn.whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

/* Offers Festival — dominant sticky button */
.sticky-btn.offers-main {
  flex: 1.8;
  background: linear-gradient(135deg, #ff6a00 0%, #ffb800 50%, #ff6a00 100%);
  background-size: 200% auto;
  color: var(--dark);
  font-size: 13px;
  animation: offersShimmer 3s linear infinite;
  box-shadow: 0 4px 18px rgba(255,106,0,0.4);
  position: relative;
  overflow: hidden;
}

.sticky-btn.offers-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 20%,
    rgba(255,255,255,0.2) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  animation: offersSweep 3s ease-in-out infinite 0.5s;
}

.sticky-btn:hover {
  opacity: 0.88;
  transform: scale(0.97);
}

/* =============================================
   OFFER POPUP (REDESIGNED)
============================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1500;
}

.popup-box {
  background: linear-gradient(145deg, #141825, var(--dark-2));
  border: 1px solid var(--border-gold);
  width: 100%;
  max-width: 460px;
  border-radius: 24px 24px 0 0;
  padding: 28px 22px 36px;
  position: relative;
  text-align: center;
  animation: slideUpPopup 0.4s var(--ease) forwards;
  box-shadow: 0 -20px 60px rgba(245,203,46,0.07);
}

@keyframes slideUpPopup {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* Drag handle */
.popup-handle {
  width: 44px; height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  margin: 0 auto 20px;
}

.popup-close-btn {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
}

.popup-close-btn:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

.popup-ribbon {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.popup-percent {
  font-size: clamp(60px, 18vw, 80px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
  background: linear-gradient(135deg, var(--gold), #fff8d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(245,203,46,0.4));
}

.popup-off-label {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.popup-desc-text {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.6;
}

.popup-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--green-wa);
  color: var(--white);
  border: none;
  border-radius: 16px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.popup-cta-btn:hover {
  background: #1eab53;
  color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 8px 26px rgba(37,211,102,0.4);
}

.popup-skip-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 14px;
  width: 100%;
  padding: 8px;
  transition: var(--transition);
}

.popup-skip-btn:hover {
  color: var(--white);
}

/* =============================================
   RESPONSIVE — TABLET (min-width: 600px)
============================================= */
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-btns {
    grid-template-columns: 1fr 1fr;
  }

  /* Offers still spans full width on tablet too */
  .hero-btns .hero-btn-offers-primary {
    grid-column: 1 / -1;
  }

  .footer-contact-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 28px;
  }

  .footer-bottom-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .popup-overlay {
    align-items: center;
  }

  .popup-box {
    border-radius: 24px;
    animation: popInPopup 0.32s var(--ease) forwards;
  }

  @keyframes popInPopup {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
  }
}

/* =============================================
   RESPONSIVE — DESKTOP (min-width: 768px)
============================================= */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:first-child {
    grid-column: 1 / 3;
    aspect-ratio: 4 / 3;
  }

  /* Hide sticky bar on desktop — nav handles it */
  .sticky-bottom-bar {
    display: none;
  }

  .site-footer-new {
    padding-bottom: 52px;
  }
}

/* =============================================
   RESPONSIVE — LARGE (min-width: 1024px)
============================================= */
@media (min-width: 1024px) {
  .hero-content {
    max-width: 640px;
  }

  .gallery-grid {
    gap: 14px;
  }
}
