/* ============================================
   Azkar App - Website Stylesheet
   Colors: Teal + Dark Navy Blue
   ============================================ */

/* --- CSS Variables --- */
:root {
  --teal: #00897B;
  --teal-light: #4DB6AC;
  --teal-dark: #00695C;
  --teal-50: #E0F2F1;
  --teal-100: #B2DFDB;
  --navy: #0D1B2A;
  --navy-light: #1B2838;
  --navy-mid: #142233;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --gold: #F59E0B;
  --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-arabic: 'Noto Sans Arabic', 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 48px 0;
  }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

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

.nav-logo img {
  height: 44px;
  width: 44px;
  border-radius: 10px;
}

.nav-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a:not(.nav-cta) {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-light);
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a.nav-cta:hover {
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--teal-dark) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,137,123,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77,182,172,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,137,123,0.2);
  border: 1px solid rgba(0,137,123,0.4);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--teal-light);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero .hero-arabic {
  font-size: 2rem;
  color: var(--teal-light);
  font-family: var(--font-arabic);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero .hero-tagline {
  font-size: 1.25rem;
  color: var(--teal-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.store-badge {
  height: 48px;
  transition: transform 0.2s;
}

.store-badge:hover {
  transform: scale(1.05);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-light);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  border: 4px solid rgba(255,255,255,0.1);
}

.phone-mockup img {
  width: 100%;
  display: block;
}

.phone-mockup-secondary {
  position: absolute;
  width: 240px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.1);
  right: -40px;
  top: 60px;
}

.phone-mockup-secondary img {
  width: 100%;
  display: block;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .phone-mockup-secondary {
    right: -20px;
    width: 200px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .hero-arabic {
    font-size: 1.5rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .phone-mockup {
    width: 220px;
  }

  .phone-mockup-secondary {
    width: 180px;
    right: -10px;
    top: 40px;
  }
}

/* --- Features Strip --- */
.features-strip {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}

.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-strip-item {
  text-align: center;
  padding: 24px 16px;
}

.feature-strip-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
}

.feature-strip-icon svg {
  width: 28px;
  height: 28px;
}

.feature-strip-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--gray-900);
}

.feature-strip-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .features-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .features-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-strip-item {
    padding: 16px 8px;
  }
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-50);
  color: var(--teal-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header.light p {
  color: rgba(255,255,255,0.7);
}

.section-header.light .section-label {
  background: rgba(0,137,123,0.2);
  color: var(--teal-light);
}

/* --- Feature Section (alternating) --- */
.feature-section {
  background: var(--white);
}

.feature-section.alt {
  background: var(--off-white);
}

.feature-section.dark {
  background: var(--navy);
}

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

.feature-grid.reversed {
  direction: rtl;
}

.feature-grid.reversed > * {
  direction: ltr;
}

.feature-content {
  max-width: 480px;
}

.feature-content h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.feature-section.dark .feature-content h2 {
  color: var(--white);
}

.feature-content .feature-subtitle {
  font-size: 1.1rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-content p {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-section.dark .feature-content p {
  color: rgba(255,255,255,0.7);
}

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

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list-icon {
  width: 24px;
  height: 24px;
  background: var(--teal-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

.feature-section.dark .feature-list-icon {
  background: rgba(0,137,123,0.2);
  color: var(--teal-light);
}

.feature-list-icon svg {
  width: 14px;
  height: 14px;
}

.feature-list-item span {
  font-size: 0.95rem;
  color: var(--gray-700);
}

.feature-section.dark .feature-list-item span {
  color: rgba(255,255,255,0.8);
}

.feature-visual {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.feature-phone {
  width: 240px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--gray-200);
}

.feature-section.dark .feature-phone {
  border-color: rgba(255,255,255,0.1);
}

.feature-phone img {
  width: 100%;
}

.feature-phone-small {
  width: 200px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gray-200);
  margin-top: 40px;
}

.feature-section.dark .feature-phone-small {
  border-color: rgba(255,255,255,0.1);
}

.feature-phone-small img {
  width: 100%;
}

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid.reversed {
    direction: ltr;
  }

  .feature-content {
    max-width: 100%;
    text-align: center;
  }

  .feature-list {
    align-items: center;
  }

  .feature-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .feature-phone {
    width: 200px;
  }

  .feature-phone-small {
    width: 170px;
  }
}

/* --- Highlight Features (Chromecast, Languages, etc.) --- */
.highlights {
  background: var(--off-white);
}

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

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.highlight-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
}

.highlight-icon.gold {
  background: #FEF3C7;
  color: var(--gold);
}

.highlight-icon.navy {
  background: #E8EDF4;
  color: var(--navy);
}

.highlight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.highlight-card .badge-unique {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

@media (max-width: 992px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Screenshots Gallery --- */
.screenshots-section {
  background: var(--navy);
  overflow: hidden;
}

.screenshots-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 24px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.screenshot-item {
  flex-shrink: 0;
  width: 220px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.1);
  scroll-snap-align: center;
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.03);
}

.screenshot-item img {
  width: 100%;
  display: block;
}

.screenshot-label {
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .screenshot-item {
    width: 180px;
    border-radius: 20px;
  }
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.social-links a svg {
  width: 20px;
  height: 20px;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 48px 0 24px;
}

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

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

.footer-brand img {
  height: 40px;
  width: 40px;
  border-radius: 10px;
}

.footer-brand span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 6px 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: var(--teal-light);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Contact Page --- */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.contact-section {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-card h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.contact-card .contact-subtitle {
  color: var(--gray-500);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,137,123,0.15);
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* --- Names Pages --- */
.names-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  padding: 120px 0 60px;
  text-align: center;
}

.names-hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.names-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.name-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
  transition: var(--transition);
}

.name-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

.name-card h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.name-card .arabic-name {
  font-size: 2.5rem;
  color: var(--teal);
  font-family: var(--font-arabic);
  text-align: center;
  margin-bottom: 20px;
}

.name-card .definition {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* Job box for name list */
.filter-result .job-box {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.filter-result .job-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}

/* --- Utility classes --- */
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-teal { background: var(--teal); }

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* --- Responsive Typography --- */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.75rem;
  }

  .feature-content h2 {
    font-size: 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }
}
