/* ==========================================================================
   PT. AVIRA PURNAMA INTERNATIONAL (AVPI)
   BRIGHT PREMIUM YELLOW INDUSTRIAL THEME
   Palette: Vibrant Amber (#F5A623 / #FFB800), White, Deep Charcoal (#1A1A1A)
   Design Ref: Bee Industrial Premium — Bold Yellow + Crisp White + Graphite
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* === BRAND YELLOW PALETTE === */
  --yellow-primary:   #FFB800;
  --yellow-dark:      #E5A200;
  --yellow-deeper:    #C98E00;
  --yellow-light:     #FFD04D;
  --yellow-pale:      #FFF5CC;
  --yellow-ultra:     #FFFAE6;
  --yellow-glow:      rgba(255, 184, 0, 0.35);
  --yellow-shadow:    rgba(255, 184, 0, 0.25);

  /* === NEUTRAL PALETTE === */
  --charcoal-black:   #111111;
  --charcoal-deep:    #1C1C1C;
  --charcoal-card:    #242424;
  --charcoal-border:  #333333;
  --charcoal-mid:     #444444;
  --graphite:         #5A5A5A;

  /* === LIGHT BG SYSTEM === */
  --bg-main:          #FAFAFA;
  --bg-section-alt:   #F5F5F5;
  --bg-card:          #FFFFFF;
  --bg-card-hover:    #FFFCF0;
  --border-light:     #E8E8E8;
  --border-yellow:    rgba(255, 184, 0, 0.4);

  /* === TEXT === */
  --text-heading:     #111111;
  --text-body:        #333333;
  --text-muted:       #777777;
  --text-on-yellow:   #111111;
  --text-white:       #FFFFFF;

  /* === STATUS COLORS === */
  --green:    #22C55E;
  --blue:     #2563EB;
  --red:      #EF4444;
  --cyan:     #06B6D4;

  /* === TYPOGRAPHY === */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* === LAYOUT === */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  /* === TRANSITIONS === */
  --ease-fast:    0.18s ease;
  --ease-smooth:  0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === SHADOWS === */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.12);
  --shadow-yellow: 0 8px 32px rgba(255, 184, 0, 0.35);
  --shadow-card:   0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.05);
}

body.dark-theme {
  --bg-main:          #141414;
  --bg-section-alt:   #1C1C1C;
  --bg-card:          #242424;
  --bg-card-hover:    #2C2C2C;
  --border-light:     #333333;
  --border-yellow:    rgba(255, 184, 0, 0.45);
  --text-heading:     #FFFFFF;
  --text-body:        #D1D5DB;
  --text-muted:       #9CA3AF;
  --shadow-card:      0 8px 30px rgba(0,0,0,0.5);
}

/* ==========================================================================
   GLOBAL RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-fast);
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* UTILITY CLASSES */
.text-yellow { color: var(--yellow-primary) !important; }
.text-green  { color: var(--green) !important; }
.text-blue   { color: var(--blue) !important; }
.text-cyan   { color: var(--cyan) !important; }
.text-danger { color: var(--red) !important; }
.text-gold   { color: var(--yellow-primary) !important; }
.text-muted  { color: var(--text-muted) !important; }

.gradient-text {
  background: linear-gradient(135deg, var(--yellow-primary) 0%, #FF8A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-block { width: 100%; }

/* PRIMARY: Rich Yellow Button */
.btn-gold {
  background: linear-gradient(135deg, var(--yellow-primary) 0%, var(--yellow-dark) 100%);
  color: var(--charcoal-black);
  border-color: transparent;
  box-shadow: var(--shadow-yellow);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 184, 0, 0.5);
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow-primary) 100%);
}

.btn-gold:active {
  transform: translateY(-1px);
}

/* SECONDARY: Dark Charcoal Button */
.btn-dark {
  background: var(--charcoal-deep);
  color: var(--text-white);
  border-color: var(--charcoal-border);
}

.btn-dark:hover {
  background: var(--charcoal-black);
  border-color: var(--yellow-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* OUTLINE: Yellow Border */
.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow-primary);
  color: var(--charcoal-deep);
}

.btn-outline:hover {
  background: var(--yellow-primary);
  color: var(--charcoal-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

/* OUTLINE GOLD: same as above for compatibility */
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--yellow-primary);
  color: var(--charcoal-deep);
  font-weight: 700;
}

.btn-outline-gold:hover {
  background: var(--yellow-primary);
  color: var(--charcoal-black);
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP STATUS BAR
   ========================================================================== */
.top-status-bar {
  background: var(--charcoal-deep);
  border-bottom: 3px solid var(--yellow-primary);
  padding: 7px 0;
  font-size: 0.82rem;
}

.status-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E2E8F0;
}

.status-text strong { color: var(--yellow-primary); }

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.quick-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-link {
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-link:hover { color: var(--yellow-primary); }

/* ==========================================================================
   MAIN HEADER
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--yellow-primary);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(255, 184, 0, 0.12), 0 1px 0 var(--border-light);
  transition: all var(--ease-smooth);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--ease-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--charcoal-black);
  background: var(--yellow-pale);
}

.nav-link.active {
  color: var(--charcoal-black);
  background: var(--yellow-pale);
  font-weight: 700;
}

.nav-highlight {
  color: var(--yellow-deeper) !important;
  font-weight: 700 !important;
}

.badge-new {
  background: linear-gradient(135deg, #FF4D4D, #FF7733);
  color: #FFF;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.theme-toggle {
  background: var(--yellow-pale);
  border: 2px solid var(--yellow-primary);
  color: var(--yellow-deeper);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease-fast);
  font-size: 1rem;
}

.theme-toggle:hover {
  background: var(--yellow-primary);
  color: var(--charcoal-black);
  transform: rotate(20deg) scale(1.05);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background-color: var(--charcoal-deep);
  border-radius: 2px;
  transition: all var(--ease-fast);
}

/* ==========================================================================
   HERO SECTION — PREMIUM BRIGHT YELLOW
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 90px 0 70px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* Layered background: clean white + yellow diagonal stripe */
  background:
    linear-gradient(135deg,
      #FFF9E0 0%,
      #FFFDF5 40%,
      #FAFAFA 100%
    );
}

/* Diagonal yellow accent shape (top-right) */
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 580px;
  height: 580px;
  background: linear-gradient(135deg, var(--yellow-primary) 0%, var(--yellow-light) 100%);
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}

/* Bottom-left accent */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: var(--yellow-primary);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

/* Decorative honeycomb dot grid */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 184, 0, 0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* We reuse hero-ambient-glow for optional glow spots */
.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 400px; height: 400px;
  background: rgba(255, 184, 0, 0.2);
  top: 0; right: 15%;
}
.glow-2 {
  width: 300px; height: 300px;
  background: rgba(255, 184, 0, 0.12);
  bottom: -60px; left: 5%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* HERO PILL */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--charcoal-deep);
  color: var(--yellow-primary);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-yellow);
}

.hero-pill i { font-size: 1rem; }

/* HERO HEADLINE */
.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--charcoal-black);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--yellow-primary) 0%, #FF8A00 70%, var(--yellow-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--graphite);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--charcoal-black);
  font-weight: 700;
}

/* HERO CTA BUTTONS */
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* HERO METRICS BAR */
.hero-metrics {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--charcoal-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--charcoal-border);
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 28px;
}

.metric-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--yellow-primary);
  font-family: var(--font-mono);
  line-height: 1;
}

.metric-label {
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 4px;
  text-align: center;
}

.metric-divider {
  width: 1px;
  height: 44px;
  background: var(--charcoal-border);
  flex-shrink: 0;
}

/* HERO VISUAL CARD */
.hero-visual { position: relative; }

.hero-image-card {
  position: relative;
  background: #FFFFFF;
  border: 3px solid var(--yellow-primary);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-yellow), var(--shadow-lg);
  overflow: visible;
}

/* Yellow corner accent */
.hero-image-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  background: var(--yellow-primary);
  border-radius: var(--radius-sm);
  z-index: -1;
}

.card-glow { display: none; }

.hero-showcase-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: transform var(--ease-smooth);
}

.hero-showcase-img:hover { transform: scale(1.03); }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal-deep);
  border: 2px solid var(--yellow-primary);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-yellow);
  z-index: 5;
}

.floating-badge i { font-size: 1.3rem; }
.floating-badge strong { display: block; font-size: 0.85rem; color: #FFF; }
.floating-badge small { font-size: 0.72rem; color: var(--yellow-primary); }

.badge-top-right { top: -18px; right: -18px; }
.badge-bottom-left { bottom: -18px; left: -18px; }

/* ==========================================================================
   BRAND TICKER
   ========================================================================== */
.brand-ticker-section {
  padding: 18px 0;
  background: var(--charcoal-deep);
  border-top: none;
  border-bottom: none;
  overflow: hidden;
}

.ticker-title {
  font-size: 0.8rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 10px;
}

.brand-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: scrollTicker 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 1px;
}

.ticker-item:hover { color: var(--yellow-primary); }

@keyframes scrollTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 96px 0;
  position: relative;
}

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

.section-header.text-center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-deeper);
  background: var(--yellow-pale);
  border: 1.5px solid var(--yellow-primary);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--charcoal-black);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--graphite);
  line-height: 1.7;
}

.section-desc strong { color: var(--charcoal-black); }

/* Alternate Section BGs */
.about-section   { background: var(--bg-section-alt); }
.reels-section   { background: var(--charcoal-deep); }
.solutions-section { background: var(--bg-main); }
.rental-section  { background: var(--yellow-ultra); }
.service-section { background: var(--bg-section-alt); }
.contact-section { background: var(--bg-main); }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: stretch;
}

.vision-mission-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-top: 4px solid var(--yellow-primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vm-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.vm-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow-pale);
  border: 2px solid var(--yellow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--yellow-deeper);
}

.vm-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--yellow-deeper);
}

.vm-info p, .vm-info ul {
  font-size: 0.92rem;
  color: var(--graphite);
  line-height: 1.65;
}

.vm-info ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vm-info ul li strong { color: var(--charcoal-deep); }

.vm-divider {
  height: 1px;
  background: var(--border-light);
}

.about-stats-gallery { height: 100%; }

.stats-hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  border: 2px solid var(--yellow-primary);
  box-shadow: var(--shadow-yellow);
}

.stats-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.6) 60%, transparent 100%);
}

.stats-banner-overlay h4 {
  font-size: 1.2rem;
  color: var(--yellow-primary);
  margin-bottom: 6px;
}

.stats-banner-overlay p {
  font-size: 0.88rem;
  color: #CBD5E1;
}

/* PILLARS */
.pillars-title-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.sub-heading {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--charcoal-black);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pillar-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: all var(--ease-smooth);
  overflow: hidden;
}

/* Animated yellow top line on hover */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 4px;
  background: var(--yellow-primary);
  transition: right var(--ease-smooth);
  border-radius: 0;
}

.pillar-card:hover::before { right: 0; }

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow-primary);
  box-shadow: var(--shadow-yellow), var(--shadow-md);
}

.pillar-number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 184, 0, 0.12);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--yellow-pale);
  border: 2px solid var(--border-yellow);
  color: var(--yellow-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--ease-fast);
}

.pillar-card:hover .pillar-icon {
  background: var(--yellow-primary);
  color: var(--charcoal-black);
  border-color: var(--yellow-primary);
  transform: scale(1.05);
}

.pillar-card h4 {
  font-size: 1.12rem;
  margin-bottom: 4px;
  color: var(--charcoal-black);
}

.pillar-sub {
  font-size: 0.78rem;
  color: var(--yellow-deeper);
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--graphite);
  line-height: 1.55;
}

/* ==========================================================================
   REELS SECTION — Dark backdrop so video pops
   ========================================================================== */
.reels-section .section-badge { color: var(--yellow-primary); background: rgba(255,184,0,0.12); border-color: rgba(255,184,0,0.3); }
.reels-section .section-title { color: var(--yellow-light); }
.reels-section .section-desc  { color: #94A3B8; }
.reels-section .section-desc strong { color: var(--yellow-primary); }

.reels-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0 22px;
}

.reels-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 4px;
}

.reels-track::-webkit-scrollbar { display: none; }

.reel-card {
  flex: 0 0 255px;
  scroll-snap-align: start;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--yellow-primary);
  box-shadow: 0 8px 28px rgba(255, 184, 0, 0.2);
  transition: all var(--ease-smooth);
}

.reel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 48px rgba(255, 184, 0, 0.4);
}

.reel-media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #0A0A0A;
  overflow: hidden;
}

.reel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: var(--yellow-primary);
  color: var(--charcoal-black);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.reel-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.88) 80%, #000 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 5;
}

.reel-play-btn {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow-primary);
  color: var(--charcoal-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 24px rgba(255, 184, 0, 0.7);
  transition: transform var(--ease-fast);
}

.reel-card:hover .reel-play-btn { transform: scale(1.15); }

.reel-info-preview { margin-top: auto; }

.reel-info-preview .tag {
  font-size: 0.73rem;
  color: var(--yellow-primary);
  font-weight: 800;
  display: inline-block;
  margin-bottom: 5px;
}

.reel-info-preview h4 {
  font-size: 0.9rem;
  color: #FFF;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-info-preview p {
  font-size: 0.74rem;
  color: #CBD5E1;
}

.reel-actions-preview {
  background: #0E0E0E;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #94A3B8;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.reel-stat { display: flex; align-items: center; gap: 6px; }

.reels-nav-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.reels-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.12);
  border: 2px solid var(--yellow-primary);
  color: var(--yellow-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--ease-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reels-nav-btn:hover {
  background: var(--yellow-primary);
  color: var(--charcoal-black);
  transform: scale(1.1);
}

.reels-hint {
  font-size: 0.84rem;
  color: #64748B;
}

/* ==========================================================================
   FULLSCREEN REELS MODAL (PHONE MOCKUP)
   ========================================================================== */
.reels-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.reels-modal.active { display: flex; }

.reels-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.reels-modal-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 400px;
  height: 88vh;
  max-height: 820px;
}

.reels-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 184, 0, 0.15);
  border: 2px solid var(--yellow-primary);
  color: var(--yellow-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-fast);
}

.reels-modal-close:hover { background: var(--yellow-primary); color: var(--charcoal-black); }

.reels-phone-frame {
  width: 100%;
  height: 100%;
  background: #000;
  border: 4px solid var(--yellow-primary);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.8), 0 0 50px rgba(255, 184, 0, 0.3);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 20px;
  background: #0A0A0A;
  border-radius: 12px;
  z-index: 30;
  border: 2px solid #1A1A1A;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.modal-reel-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-top-bar {
  position: absolute;
  top: 38px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.reel-brand-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #FFF;
  font-weight: 600;
  border: 1px solid rgba(255, 184, 0, 0.4);
}

.reel-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--yellow-primary);
}

.reel-sound-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.2);
  border: 1.5px solid var(--yellow-primary);
  color: var(--yellow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
}

.reel-bottom-info {
  position: absolute;
  bottom: 25px;
  left: 18px;
  right: 80px;
  z-index: 20;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.reel-user-caption h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 7px;
  line-height: 1.25;
}

.reel-user-caption p {
  font-size: 0.85rem;
  color: #E2E8F0;
  margin-bottom: 10px;
  line-height: 1.45;
}

.reel-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.reel-tags span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow-primary);
}

/* SIDE ACTIONS (TikTok style) */
.reel-side-actions {
  position: absolute;
  right: 14px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 20;
}

.side-btn {
  background: none;
  border: none;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: transform var(--ease-fast);
}

.side-btn:hover { transform: scale(1.18); }
.side-btn span { font-size: 0.72rem; font-weight: 700; }
.side-btn.liked i { color: #FF3366 !important; }

.side-btn.highlight-wa {
  background: #25D366;
  color: #FFF;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

.playback-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.85);
  color: var(--charcoal-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 25;
}

.playback-indicator.visible { opacity: 1; }

.reel-nav-controls {
  position: absolute;
  right: -56px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reel-nav-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow-pale);
  border: 2px solid var(--yellow-primary);
  color: var(--yellow-deeper);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--ease-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-nav-controls button:hover {
  background: var(--yellow-primary);
  color: var(--charcoal-black);
}

/* ==========================================================================
   SOLUTIONS TABS
   ========================================================================== */
.solution-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.tab-btn {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  color: var(--graphite);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--ease-fast);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  border-color: var(--yellow-primary);
  color: var(--charcoal-black);
  background: var(--yellow-pale);
}

.tab-btn.active {
  background: var(--yellow-primary);
  color: var(--charcoal-black);
  border-color: var(--yellow-primary);
  box-shadow: var(--shadow-yellow);
}

.tab-panel { display: none; animation: fadeIn 0.4s ease; }
.tab-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* PRODUCT CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.product-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all var(--ease-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow-primary);
  box-shadow: var(--shadow-yellow), var(--shadow-md);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow-primary);
  color: var(--charcoal-black);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-green { background: var(--green) !important; color: #FFF !important; }
.badge-blue  { background: var(--blue) !important; color: #FFF !important; }

.product-img-wrap {
  width: 100%;
  height: 200px;
  background: var(--yellow-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  border-bottom: 2px solid var(--border-light);
}

.product-img-wrap img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform var(--ease-smooth);
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--charcoal-black);
}

.product-body p {
  font-size: 0.88rem;
  color: var(--graphite);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  margin-top: auto;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--charcoal-deep);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   RENTAL SECTION
   ========================================================================== */
.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.rental-card-item {
  background: var(--bg-card);
  border: 2px solid var(--yellow-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-yellow);
}

.rental-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.rental-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-details {
  padding: 28px;
}

.rental-details h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--yellow-deeper);
}

.rental-specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--yellow-pale);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--yellow-primary);
}

.spec-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-val {
  font-size: 0.85rem;
  color: var(--yellow-deeper);
  font-family: var(--font-mono);
  font-weight: 800;
}

/* CALCULATOR CARD */
.calc-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-top: 4px solid var(--yellow-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
}

.calc-header i { font-size: 2rem; color: var(--yellow-primary); }
.calc-header h3 { font-size: 1.3rem; color: var(--charcoal-black); }
.calc-header small { color: var(--text-muted); font-size: 0.83rem; }

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-row { display: flex; gap: 16px; }
.col-half { flex: 1; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal-deep);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-main);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--yellow-primary);
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.15);
  background: var(--yellow-ultra);
}

.checkbox-group { display: flex; gap: 20px; flex-wrap: wrap; }

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--charcoal-deep);
  cursor: pointer;
  font-weight: 600;
}

.calc-result-box {
  background: var(--yellow-pale);
  border: 2px solid var(--yellow-primary);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 20px 0;
}

.result-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--yellow-deeper);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-unit {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--charcoal-black);
  margin-bottom: 5px;
}

.result-features {
  font-size: 0.82rem;
  color: var(--graphite);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 4px;
  background: var(--yellow-primary);
  transition: right var(--ease-smooth);
}

.service-card:hover::after { right: 0; }

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow-primary);
  box-shadow: var(--shadow-yellow), var(--shadow-sm);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--yellow-pale);
  border: 2px solid var(--yellow-primary);
  color: var(--yellow-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: all var(--ease-fast);
}

.service-card:hover .service-icon {
  background: var(--yellow-primary);
  color: var(--charcoal-black);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--charcoal-black);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--graphite);
  line-height: 1.65;
}

.emergency-highlight {
  background: var(--charcoal-deep);
  border-color: var(--yellow-primary);
}

.emergency-highlight::after { background: var(--yellow-primary); }
.emergency-highlight h3 { color: var(--yellow-primary); }
.emergency-highlight p  { color: #94A3B8; }

.emergency-highlight .service-icon {
  background: rgba(255, 184, 0, 0.15);
  border-color: var(--yellow-primary);
  color: var(--yellow-primary);
}

.emergency-highlight:hover .service-icon {
  background: var(--yellow-primary);
  color: var(--charcoal-black);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  display: flex;
  gap: 18px;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all var(--ease-fast);
  align-items: flex-start;
}

.contact-card:hover {
  border-color: var(--yellow-primary);
  transform: translateX(6px);
  box-shadow: var(--shadow-yellow);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--yellow-pale);
  border: 2px solid var(--yellow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-details h4 { font-size: 1rem; margin-bottom: 5px; }

.contact-details p {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--charcoal-deep);
}

.contact-details p a:hover { color: var(--yellow-deeper); }
.contact-details small { font-size: 0.8rem; color: var(--text-muted); }

.rfp-form-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-top: 4px solid var(--yellow-primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-title-wrap { margin-bottom: 24px; }
.form-title-wrap h3 { font-size: 1.4rem; color: var(--yellow-deeper); margin-bottom: 6px; }
.form-title-wrap p  { font-size: 0.88rem; color: var(--text-muted); }

.form-submit-row { margin-top: 22px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: var(--charcoal-black);
  border-top: 4px solid var(--yellow-primary);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--charcoal-border);
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 6px;
}

.footer-about p {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.65;
  margin-bottom: 12px;
}

.footer-quote {
  color: var(--yellow-primary) !important;
  font-weight: 600;
  font-size: 0.9rem !important;
}

.footer-links h4, .footer-contacts h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--yellow-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--ease-fast);
}

.footer-links a i { color: var(--yellow-primary); }
.footer-links a:hover { color: var(--yellow-primary); transform: translateX(4px); }

.footer-contacts p {
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contacts p i { color: var(--yellow-primary); }

.footer-bottom {
  padding: 20px 0;
  font-size: 0.82rem;
  color: #475569;
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bottom-tagline { color: var(--yellow-primary); font-weight: 700; }

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.wa-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  transition: all var(--ease-smooth);
  position: relative;
}

.wa-bubble:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.7);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal-deep);
  border: 2px solid var(--yellow-primary);
  color: #FFF;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-fast);
  box-shadow: var(--shadow-yellow);
}

.wa-bubble:hover .wa-tooltip { opacity: 1; }

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid     { grid-template-columns: 1fr; gap: 44px; }
  .about-grid    { grid-template-columns: 1fr; }
  .rental-grid   { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .pillars-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .hero-title    { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .top-status-bar { display: none; }
  .mobile-toggle  { display: flex; }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 3px solid var(--yellow-primary);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 999;
  }

  .nav-menu.mobile-open { display: flex; }

  .nav-link { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }

  .hero-title    { font-size: 2.1rem; }
  .section-title { font-size: 2rem; }

  .pillars-grid  { grid-template-columns: 1fr; }
  .hero-metrics  { flex-direction: column; border-radius: var(--radius-md); gap: 0; }
  .metric-divider { width: 100%; height: 1px; }

  .form-row { flex-direction: column; gap: 0; }

  .footer-grid   { grid-template-columns: 1fr; gap: 30px; }

  .reel-nav-controls { display: none; }

  .reels-modal-wrapper { max-width: 340px; }

  .badge-top-right, .badge-bottom-left { display: none; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-lg { width: 100%; }
  .hero-metrics { width: 100%; }
}
