/* ═══════════════════════════════════════════════
   ADITWA SOLAR — MOBILE APP STYLES
   Palette: Solar Amber + Deep Forest + Warm Cream
   Fonts: Bricolage Grotesque + Plus Jakarta Sans
═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --solar-amber:    #FF8C00;
  --solar-gold:     #F4C430;
  --solar-light:    #FFD966;
  --forest-deep:    #1A3C2E;
  --forest-mid:     #2D5A42;
  --forest-light:   #4A7C5F;
  --cream:          #FFF8E7;
  --cream-dark:     #F5EDD4;
  --white:          #FFFFFF;
  --text-dark:      #1A1A1A;
  --text-mid:       #4A4A4A;
  --text-light:     #7A7A7A;
  --success:        #2D9E5F;
  --border:         #E8E0D0;
  --shadow-sm:      0 2px 8px rgba(26,60,46,0.08);
  --shadow-md:      0 4px 20px rgba(26,60,46,0.12);
  --shadow-lg:      0 8px 40px rgba(26,60,46,0.18);
  --radius-sm:      10px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --tab-height:     72px;
  --status-height:  env(safe-area-inset-top, 0px);
  --bottom-safe:    env(safe-area-inset-bottom, 0px);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow: hidden;
  height: 100dvh;
  width: 100vw;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

/* ── Status Bar ── */
.status-bar {
  height: var(--status-height);
  background: var(--forest-deep);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  max-width: 480px;
  margin: 0 auto;
}

/* ── App Shell ── */
.app-shell {
  position: fixed;
  top: var(--status-height);
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Screens ── */
.screen {
  position: absolute;
  inset: 0;
  bottom: var(--tab-height);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: var(--cream);
}

.screen.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.screen.slide-out {
  opacity: 0;
  transform: translateX(-30px);
}

/* ── Scrollable Content ── */
.screen-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.screen-scroll::-webkit-scrollbar { display: none; }

/* ── Top Bar ── */
.top-bar {
  background: var(--forest-deep);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  z-index: 10;
}

.top-bar-inner {
  justify-content: center;
}

.inner-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-sun {
  width: 36px;
  height: 36px;
  background: rgba(244,196,48,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.top-bar-right {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.icon-btn:active { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest-mid) 50%, #1E4D35 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 32px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Sun Animation */
.sun-animation {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
}

.sun-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #FFE066 0%, #F4C430 50%, #FF8C00 100%);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(244,196,48,0.6), 0 0 60px rgba(244,196,48,0.3);
  animation: sunPulse 3s ease-in-out infinite;
}

.sun-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(244,196,48,0.3);
  animation: ringExpand 3s ease-out infinite;
}

.ring-1 { width: 90px; height: 90px; animation-delay: 0s; }
.ring-2 { width: 130px; height: 130px; animation-delay: 0.8s; }
.ring-3 { width: 180px; height: 180px; animation-delay: 1.6s; }

.sun-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  animation: rotateSlow 20s linear infinite;
}

.sun-rays span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(244,196,48,0.6), transparent);
  transform-origin: 50% 0;
  margin-left: -1px;
  margin-top: -80px;
}

.sun-rays span:nth-child(1) { transform: rotate(0deg); }
.sun-rays span:nth-child(2) { transform: rotate(45deg); }
.sun-rays span:nth-child(3) { transform: rotate(90deg); }
.sun-rays span:nth-child(4) { transform: rotate(135deg); }
.sun-rays span:nth-child(5) { transform: rotate(180deg); }
.sun-rays span:nth-child(6) { transform: rotate(225deg); }
.sun-rays span:nth-child(7) { transform: rotate(270deg); }
.sun-rays span:nth-child(8) { transform: rotate(315deg); }

/* Solar Panels Decoration */
.hero-panels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.08;
}

.panel-row {
  display: flex;
  gap: 4px;
  padding: 0 16px;
}

.solar-panel {
  flex: 1;
  height: 60px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.5) 0px,
    rgba(255,255,255,0.5) 1px,
    transparent 1px,
    transparent 20px
  ),
  repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.5) 0px,
    rgba(255,255,255,0.5) 1px,
    transparent 1px,
    transparent 20px
  );
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 32px 24px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,196,48,0.15);
  border: 1px solid rgba(244,196,48,0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--solar-gold);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.badge-flag { font-size: 14px; }

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.accent-text {
  color: var(--solar-gold);
  display: block;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-sub strong {
  color: var(--solar-gold);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--solar-amber), var(--solar-gold));
  color: var(--forest-deep);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 15px rgba(255,140,0,0.4);
  white-space: nowrap;
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(255,140,0,0.3);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-outline:active { background: rgba(255,255,255,0.2); }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 18px 0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 4px;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.stat-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--forest-deep);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── Section Cards ── */
.section-card {
  background: var(--white);
  margin: 12px 16px;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.scheme-card {
  text-align: center;
  border: 1.5px solid rgba(244,196,48,0.3);
  background: linear-gradient(135deg, #FFFDF0, var(--white));
}

.scheme-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.section-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.scheme-tag {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.scheme-tag span {
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest-deep);
}

/* ── Section Padded ── */
.section-padded {
  padding: 20px 16px;
}

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

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--solar-amber);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.section-title-lg {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--forest-deep);
  letter-spacing: -0.5px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:active {
  transform: scale(0.98);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 6px;
  line-height: 1.3;
}

.service-card p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── Benefits Section ── */
.benefits-section {
  background: linear-gradient(160deg, var(--forest-deep), var(--forest-mid));
  padding: 28px 16px;
  margin: 4px 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(244,196,48,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--solar-gold);
  flex-shrink: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.benefit-text h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ── Documents Grid ── */
.docs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.doc-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.note-box {
  background: #FFF3CD;
  border: 1px solid #FFD700;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.note-box span { font-size: 16px; flex-shrink: 0; }

.note-box p {
  font-size: 13px;
  color: #7A5C00;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   PLANS SCREEN
═══════════════════════════════════════════════ */
.plans-intro {
  padding: 16px 20px 8px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.plans-section-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: 0.3px;
  padding: 16px 20px 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.plan-card {
  background: var(--white);
  margin: 0 16px 12px;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:active {
  transform: scale(0.99);
  box-shadow: var(--shadow-md);
}

.plan-card.popular {
  border-color: var(--solar-amber);
  background: linear-gradient(135deg, #FFFDF0, var(--white));
  box-shadow: 0 4px 20px rgba(255,140,0,0.15);
}

.plan-card-alt {
  background: linear-gradient(135deg, #F0F8FF, var(--white));
  border-color: #A8C4E0;
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: linear-gradient(135deg, var(--solar-amber), var(--solar-gold));
  color: var(--forest-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.3px;
}

.plan-kw {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--forest-deep);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.plan-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.plan-row:last-child { border-bottom: none; }

.plan-row-net {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.8);
}

.plan-row-note {
  background: #FFF9E6;
  color: var(--text-light);
  font-size: 11px;
  font-style: italic;
}

.plan-val {
  font-weight: 600;
  color: var(--text-dark);
}

.plan-val.green { color: var(--success); }

.plan-val.bold {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--solar-gold);
}

.btn-plan {
  width: 100%;
  background: var(--cream-dark);
  color: var(--forest-deep);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-plan:active {
  background: var(--forest-deep);
  color: var(--white);
  border-color: var(--forest-deep);
}

.btn-plan-popular {
  background: linear-gradient(135deg, var(--solar-amber), var(--solar-gold));
  color: var(--forest-deep);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255,140,0,0.3);
}

.btn-plan-popular:active {
  background: var(--forest-deep);
  color: var(--white);
}

/* Hybrid Cards */
.hybrid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px;
  margin-bottom: 12px;
}

.hybrid-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  text-align: center;
}

.hybrid-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.hybrid-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.hybrid-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--solar-amber);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.hybrid-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
}

.hybrid-card p {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════
   CONTACT SCREEN
═══════════════════════════════════════════════ */
.contact-hero {
  background: linear-gradient(160deg, var(--forest-deep), var(--forest-mid));
  padding: 28px 24px;
  text-align: center;
}

.contact-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(244,196,48,0.3);
}

.contact-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-company {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.contact-tagline {
  font-size: 12px;
  color: var(--solar-gold);
  font-weight: 600;
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.quick-btn {
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.quick-btn:active {
  transform: scale(0.97);
}

.quick-btn span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.quick-btn small {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.call-btn {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
  box-shadow: 0 4px 15px rgba(26,60,46,0.3);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #128C7E, #25D366);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

/* Offices */
.offices-section {
  padding: 0 16px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.office-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.office-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.office-info h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.office-info p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Form */
.form-section {
  padding: 20px 16px;
}

.form-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--forest-deep);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.form-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--solar-amber);
  box-shadow: 0 0 0 3px rgba(255,140,0,0.12);
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  font-size: 14px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 15px rgba(26,60,46,0.3);
  margin-top: 4px;
}

.btn-submit:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(26,60,46,0.2);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success Message */
.success-msg {
  display: none;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid #D4EDDA;
  box-shadow: var(--shadow-sm);
}

.success-msg.visible { display: block; }

.success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.success-msg h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--forest-deep);
  margin-bottom: 8px;
}

.success-msg p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════
   BOTTOM TAB BAR
═══════════════════════════════════════════════ */
.tab-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--tab-height);
  background: var(--white);
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 50;
  padding-bottom: var(--bottom-safe);
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s;
  padding: 8px 4px;
  position: relative;
}

.tab-item.active {
  color: var(--forest-deep);
}

.tab-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--solar-amber), var(--solar-gold));
  border-radius: 0 0 4px 4px;
}

.tab-item span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.tab-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA Tab (Contact) */
.tab-cta {
  flex: 1.2;
}

.tab-icon-cta {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--solar-amber), var(--solar-gold));
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(255,140,0,0.4);
  margin-top: -16px;
  transition: transform 0.2s;
}

.tab-cta:active .tab-icon-cta {
  transform: scale(0.93);
}

.tab-cta span {
  color: var(--solar-amber);
  font-weight: 700;
}

/* ── Spacer ── */
.bottom-spacer {
  height: 20px;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes sunPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 30px rgba(244,196,48,0.6), 0 0 60px rgba(244,196,48,0.3); }
  50% { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 40px rgba(244,196,48,0.8), 0 0 80px rgba(244,196,48,0.4); }
}

@keyframes ringExpand {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* Staggered hero content animation */
.hero-badge { animation: fadeSlideUp 0.5s ease 0.1s both; }
.hero-title { animation: fadeSlideUp 0.5s ease 0.2s both; }
.hero-sub { animation: fadeSlideUp 0.5s ease 0.3s both; }
.hero-cta { animation: fadeSlideUp 0.5s ease 0.4s both; }
.stats-strip { animation: fadeSlideUp 0.5s ease 0.5s both; }

/* ═══════════════════════════════════════════════
   DESKTOP FRAME (for browser preview)
═══════════════════════════════════════════════ */
@media (min-width: 481px) {
  body {
    background: #E8E0D0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
  }

  .status-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    border-radius: 40px 40px 0 0;
  }

  .app-shell {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 390px;
    height: 844px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 10px #1A1A1A, 0 0 0 12px #333;
    margin-top: 20px;
  }
}