/* ==========================================================================
   Amjad Baloch - Online Balochi Language Course
   Standalone Pure CSS3 Stylesheet (Zero Frameworks, Zero Dependencies)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;600;700&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Heritage Color Palette */
  --color-navy: #0B1528;
  --color-navy-dark: #070D19;
  --color-navy-surface: #0E1A30;
  --color-navy-card: #13223E;
  --color-gold: #C89B53;
  --color-gold-light: #DFB775;
  --color-amber: #F59E0B;
  --color-amber-light: #FCD34D;
  --color-cream: #FAF8F5;
  --color-sand: #F4EFE6;
  --color-sand-light: #FAF5ED;
  --color-text-dark: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #94A3B8;
  --color-border-light: #E2E8F0;
  --color-border-dark: rgba(200, 155, 83, 0.25);
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #128C7E;
  --color-whatsapp-deep: #075E54;
  --color-emerald: #10B981;
  --color-emerald-light: #ECFDF5;
  --color-rose: #EF4444;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', var(--font-sans);
  --font-urdu: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow-gold: 0 0 25px rgba(245, 158, 11, 0.25);
  --shadow-glow-wa: 0 0 20px rgba(37, 211, 102, 0.4);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Typography Utilities */
.font-display {
  font-family: var(--font-display);
}

.font-urdu {
  font-family: var(--font-urdu);
  line-height: 2.1;
}

.urdu-lead {
  font-family: var(--font-urdu);
  direction: rtl;
  text-align: right;
  line-height: 2.2;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Section Spacing */
.section-py {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-py-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.section-badge-gold {
  background-color: rgba(245, 158, 11, 0.15);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.dark .section-badge-gold {
  background-color: rgba(245, 158, 11, 0.2);
  color: var(--color-amber-light);
  border-color: rgba(245, 158, 11, 0.35);
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.section-title.text-white {
  color: #FFFFFF;
}

.section-subtitle {
  margin-top: 12px;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.section-subtitle.text-slate-300 {
  color: #CBD5E1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition-normal);
  white-space: nowrap;
  user-select: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #070D19;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20BA59;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.08);
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--color-navy);
  border: 1.5px solid rgba(11, 21, 40, 0.3);
}

.btn-outline-navy:hover {
  background-color: rgba(11, 21, 40, 0.05);
  border-color: var(--color-navy);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(11, 21, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 155, 83, 0.25);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background-color: rgba(7, 13, 25, 0.98);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-amber-light);
  letter-spacing: 0.02em;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #CBD5E1;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-amber-light);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  display: none;
  background-color: var(--color-navy-dark);
  border-bottom: 1px solid rgba(200, 155, 83, 0.3);
  padding: 20px;
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.mobile-nav-links .nav-link {
  font-size: 16px;
  padding: 8px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #13274A 0%, #0B1528 50%, #070D19 100%);
  color: #FFFFFF;
  padding: 70px 0 90px 0;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 50%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Urdu Announcement Banner Box */
.urdu-banner-card {
  background: rgba(14, 26, 48, 0.9);
  border: 1px solid rgba(200, 155, 83, 0.4);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.urdu-headline {
  font-family: var(--font-urdu);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-amber-light);
  direction: rtl;
  text-align: right;
  line-height: 1.8;
}

.urdu-subline {
  font-family: var(--font-urdu);
  font-size: 16px;
  color: #E2E8F0;
  direction: rtl;
  text-align: right;
  line-height: 1.9;
  margin-top: 4px;
}

.hero-description {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Hero Key Specs Pills Grid */
.hero-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.hero-spec-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #E2E8F0;
}

.hero-spec-item .spec-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-spec-item strong {
  color: #FFFFFF;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero Portrait Card */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-portrait-card {
  position: relative;
  background: linear-gradient(180deg, #13223E 0%, #0B1528 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(200, 155, 83, 0.4);
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.hero-portrait-img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 4px);
  object-fit: cover;
  display: block;
}

.instructor-float-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(7, 13, 25, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 155, 83, 0.45);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.instructor-badge-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
}

.instructor-badge-sub {
  font-size: 12px;
  color: var(--color-amber-light);
  font-weight: 600;
}

.instructor-badge-tag {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Day 1 Demo Strip Banner */
.demo-strip {
  background: linear-gradient(90deg, #D97706 0%, #F59E0B 50%, #D97706 100%);
  color: #070D19;
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.demo-strip-badge {
  background: #070D19;
  color: #FCD34D;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Verification Section */
.verification-section {
  background-color: var(--color-navy-dark);
  color: #FFFFFF;
  border-top: 1px solid rgba(200, 155, 83, 0.25);
  border-bottom: 1px solid rgba(200, 155, 83, 0.25);
  padding: 60px 0;
}

.verification-card {
  background: var(--color-navy-surface);
  border: 1px solid rgba(200, 155, 83, 0.35);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.verification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.verification-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.verification-col {
  background: rgba(7, 13, 25, 0.8);
  border: 1px solid rgba(200, 155, 83, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.verification-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.verification-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-amber-light);
  letter-spacing: 0.05em;
}

.verification-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.verification-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #CBD5E1;
}

.verification-list-item.urdu {
  direction: rtl;
  justify-content: flex-start;
  font-family: var(--font-urdu);
  font-size: 16px;
  line-height: 2;
}

.verification-list-item .check-icon {
  color: var(--color-emerald);
  flex-shrink: 0;
}

.verification-list-item strong {
  color: #FFFFFF;
}

/* About Instructor Section */
.about-section {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-portrait-card {
  background: var(--color-sand-light);
  border: 2px solid rgba(200, 155, 83, 0.35);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-portrait-img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-navy);
  margin-top: 18px;
}

.about-title {
  font-size: 14px;
  font-weight: 700;
  color: #D97706;
}

.about-badge-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badge-pill {
  padding: 4px 12px;
  background: #FFFFFF;
  border: 1px solid rgba(200, 155, 83, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy);
}

.about-text p {
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.about-highlight-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 16px;
}

.about-highlight-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.about-highlight-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Course Specifications Section */
.specs-section {
  background-color: var(--color-cream);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.spec-card {
  background: #FFFFFF;
  border: 1px solid rgba(200, 155, 83, 0.25);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.spec-card:hover {
  border-color: var(--color-amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spec-card.highlight {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBEB 100%);
  border: 2px solid var(--color-amber);
  box-shadow: var(--shadow-md);
}

.spec-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.spec-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.spec-card-urdu {
  font-family: var(--font-urdu);
  font-size: 15px;
  color: #B45309;
  font-weight: 700;
  margin-bottom: 12px;
  direction: rtl;
}

.spec-card-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Timezone Converter Section */
.timezone-card {
  margin-top: 48px;
  background: #FFFFFF;
  border: 1px solid rgba(200, 155, 83, 0.35);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.timezone-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 28px auto;
}

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

.timezone-box {
  background: var(--color-cream);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
  transition: border-color var(--transition-fast);
}

.timezone-box.active {
  background: #FFFBEB;
  border-color: var(--color-amber);
}

.tz-flag {
  font-size: 24px;
  margin-bottom: 6px;
}

.tz-region {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
}

.tz-hours {
  font-size: 16px;
  font-weight: 800;
  color: #D97706;
  margin-top: 4px;
}

.tz-offset {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Why Learn Balochi Section */
.why-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: 30px;
  transition: all var(--transition-normal);
}

.why-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(11, 21, 40, 0.08);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* How It Works Section */
.how-section {
  background-color: var(--color-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid rgba(200, 155, 83, 0.25);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: var(--color-amber-light);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 2px solid var(--color-amber);
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Free Demo Section */
.demo-section {
  background: radial-gradient(circle at 10% 20%, #13274A 0%, #0B1528 60%, #070D19 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.demo-value-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 12px 0 24px 0;
}

.demo-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #E2E8F0;
}

.demo-check-item .check-circle {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Demo Form Card */
.demo-form-card {
  background: #FFFFFF;
  color: var(--color-text-dark);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(200, 155, 83, 0.5);
}

.demo-form-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 22px;
}

.demo-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-navy);
}

.demo-form-sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #334155;
  margin-bottom: 6px;
}

.form-label span.req {
  color: var(--color-rose);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border-light);
  background-color: #FFFFFF;
  color: var(--color-text-dark);
  font-size: 14px;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-checkbox-card {
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #D97706;
  cursor: pointer;
}

.form-checkbox-card label {
  font-size: 13px;
  font-weight: 700;
  color: #92400E;
  cursor: pointer;
  user-select: none;
}

.form-alert {
  display: none;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  margin-bottom: 16px;
}

.form-alert.error {
  display: block;
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
}

.form-success-view {
  display: none;
  text-align: center;
  padding: 10px 0;
}

.form-success-view.active {
  display: block;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #D1FAE5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

/* FAQ Section */
.faq-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-cream);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--color-amber);
  background: #FFFFFF;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  user-select: none;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(11, 21, 40, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal), background-color var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--color-amber);
  color: #070D19;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px 22px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background-color: var(--color-navy-dark);
  color: #FFFFFF;
  border-top: 1px solid rgba(200, 155, 83, 0.3);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-amber-light);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--color-amber-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  font-size: 14px;
  color: #CBD5E1;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: #64748B;
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating WhatsApp Widget */
.floating-wa-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.floating-wa-card {
  display: none;
  width: 300px;
  background: var(--color-navy);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(37, 211, 102, 0.5);
  margin-bottom: 12px;
}

.floating-wa-card.active {
  display: block;
}

.floating-wa-btn {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-wa);
  transition: transform var(--transition-normal);
  position: relative;
}

.floating-wa-btn:hover {
  transform: scale(1.08);
}

.floating-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: var(--color-amber);
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-full);
}

/* Modal Overlay & Dialog */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(7, 13, 25, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-dialog {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: #F1F5F9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  transition: background-color var(--transition-fast);
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specs-grid,
  .why-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timezone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .navbar-menu,
  .navbar-actions .btn-whatsapp {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 34px;
  }

  .section-title {
    font-size: 28px;
  }

  .specs-grid,
  .why-grid,
  .steps-grid,
  .verification-table-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-specs-grid {
    grid-template-columns: 1fr;
  }

  .floating-wa-container {
    bottom: 16px;
    right: 16px;
  }
}
