/* ============================================
   ASTRALEI - Shared Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
  --background: #ffffff;
  --foreground: #1e293b;
  --primary: #0f2b5c;
  --primary-foreground: #ffffff;
  --secondary: #e0f2fe;
  --secondary-foreground: #0f2b5c;
  --accent: #ff4757;
  --accent-foreground: #ffffff;
  --success: #059669;
  --success-foreground: #ffffff;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --input: #ffffff;
  --card: #ffffff;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  line-height: 1.2;
  font-weight: 800;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background-color: #020617;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  padding: 8px 0;
}

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

.top-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-contact-item iconify-icon {
  color: var(--accent);
  font-size: 14px;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-social span {
  font-size: 12px;
  opacity: 0.8;
}

.top-social a {
  color: inherit;
  font-size: 16px;
  transition: color 0.2s;
}

.top-social a:hover {
  color: var(--accent);
}

@media (max-width: 576px) {
  .top-bar {
    display: none;
  }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: none;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}

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

.btn-primary {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background-color: var(--muted);
}

.btn-outline {
  border: 2px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-nav {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
}

@media (max-width: 576px) {
  .nav-actions .btn-outline {
    display: none;
  }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #081a3a 100%);
  padding: 60px 0 80px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 99px;
}

.hero-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.badge-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.badge-pill iconify-icon {
  color: var(--accent);
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 0 100px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
}

/* Hero Form Card */
.hero-form-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: var(--foreground);
}

.hero-form-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
}

.hero-form-sub {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

/* Hero Centered */
.hero-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-centered .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-ctas {
  justify-content: center;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 60px 0;
}

.section-alt {
  background-color: var(--muted);
}

.section-dark {
  background-color: var(--primary);
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-dark .section-title {
  color: white;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: #94a3b8;
}

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .section-subtitle {
    font-size: 18px;
  }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--secondary);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 24px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.card-text {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Card Grids */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 15px;
  background-color: #f8fafc;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px var(--secondary);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

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

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 20px 50px rgba(255, 71, 87, 0.15);
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-bottom-left-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-name {
  font-size: 16px;
  color: var(--muted-foreground);
  margin-bottom: 12px;
  font-weight: 600;
}

.price {
  font-size: 36px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.price span {
  font-size: 14px;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-left: 6px;
}

.gst-note {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.feature-list {
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.feature-item iconify-icon {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .price {
    font-size: 42px;
  }
}

/* ============================================
   STEPS / TIMELINE
   ============================================ */
.steps-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .steps-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.steps-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
}

.steps-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.steps-title iconify-icon {
  color: var(--accent);
  font-size: 24px;
}

.step-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
}

.step-row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 36px;
  bottom: -20px;
  width: 2px;
  background-color: var(--border);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.step-text-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--foreground);
}

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

/* Timeline (Horizontal) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
  }
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--primary);
  font-size: 18px;
}

.step h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============================================
   SPLIT LAYOUTS
   ============================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  
  .split-layout.reverse .text-col {
    order: 2;
  }
  
  .split-layout.reverse .img-col {
    order: 1;
  }
}

.img-frame {
  background: #fff;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.img-frame img {
  border-radius: var(--radius-lg);
  width: 100%;
}

/* ============================================
   LOGO STRIP
   ============================================ */
.logo-strip {
  padding: 32px 0;
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.logo-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.logo-strip-logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.logo-strip-logos span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 768px) {
  .logo-strip-inner {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
  
  .logo-strip-logos {
    gap: 32px;
  }
}

/* ============================================
   STATS
   ============================================ */
.stats-strip {
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trust Banner */
.trust-banner {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 32px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
  gap: 24px;
}

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

.trust-item h4 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 14px;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 2fr;
    gap: 64px;
  }
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-question {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.faq-answer {
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background-color: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 60px 0;
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-text {
    font-size: 18px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.info-cards-container {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .info-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.info-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon-circle {
  width: 64px;
  height: 64px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.info-card p {
  color: var(--muted-foreground);
  font-size: 14px;
  margin-bottom: 24px;
}

.info-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Contact Main Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
  }
}

.form-box {
  background: var(--muted);
  padding: 32px;
  border-radius: var(--radius-xl);
}

.office-details {
  padding-top: 20px;
}

.map-wrapper {
  height: 200px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  background: #eee;
  position: relative;
}

@media (min-width: 768px) {
  .map-wrapper {
    height: 300px;
  }
}

.detail-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

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

.detail-icon {
  color: var(--accent);
  font-size: 24px;
  margin-top: 4px;
}

.detail-content h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.detail-content p {
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.search-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 576px) {
  .search-input-wrapper {
    flex-direction: row;
  }
  
  .search-input-wrapper .form-input {
    flex: 1;
  }
}

/* ============================================
   PARTNER PAGE
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.benefit-card {
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

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

/* Partner Models */
.models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

.model-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.model-header {
  padding: 24px;
  background-color: var(--primary);
  color: #ffffff;
}

.model-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}

.model-sub {
  opacity: 0.8;
  font-size: 14px;
}

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

.model-list {
  margin: 0 0 24px;
  flex: 1;
}

.model-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--foreground);
}

.model-list li iconify-icon {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--primary);
  color: #e2e8f0;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.footer-about {
  font-size: 14px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: white;
  font-size: 20px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-link {
  color: #cbd5e1;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: #cbd5e1;
}

.footer-contact-item iconify-icon {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: inherit;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-bottom-social {
  display: flex;
  gap: 16px;
}

.footer-bottom-social a {
  color: inherit;
  font-size: 18px;
}

.footer-bottom-social a:hover {
  color: white;
}

@media (min-width: 768px) {
  .footer {
    padding: 80px 0 32px;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md-hidden {
    display: none;
  }
  
  .md-block {
    display: block;
  }
}

/* Check Feature */
.feature-check {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
}

/* Compliance Box */
.compliance-box {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
}

.compliance-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.compliance-header h4 {
  color: #9f1239;
  font-size: 16px;
}

.compliance-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #881337;
}

.compliance-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}
