/* ============================================================
   COMPRAR CYTOTEC GUATEMALA — Premium Pharmaceutical Stylesheet
   Design System: Clean, Professional, Pharmaceutical
   Typography: Outfit (headings) + Inter (body) via Google Fonts
   Color Palette: Deep blues, clean whites, WhatsApp green, trust gold
   ============================================================ */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES — Design System Variables
   ========================================================================== */
:root {
  /* ── Primary Blues ── */
  --color-primary-900: #1a365d;
  --color-primary-800: #1e3a6e;
  --color-primary-700: #234681;
  --color-primary-600: #2b6cb0;
  --color-primary-500: #3182ce;
  --color-primary-400: #4299e1;
  --color-primary-300: #63b3ed;
  --color-primary-200: #90cdf4;
  --color-primary-100: #bee3f8;
  --color-primary-50: #ebf8ff;

  /* ── Neutral / Whites ── */
  --color-white: #ffffff;
  --color-gray-50: #f7fafc;
  --color-gray-100: #edf2f7;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e0;
  --color-gray-400: #a0aec0;
  --color-gray-500: #718096;
  --color-gray-600: #4a5568;
  --color-gray-700: #2d3748;
  --color-gray-800: #1a202c;
  --color-gray-900: #171923;

  /* ── Accent Colors ── */
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1da851;
  --color-whatsapp-light: #dcf8c6;
  --color-gold: #d69e2e;
  --color-gold-light: #ecc94b;
  --color-gold-dark: #b7791f;

  /* ── Semantic Colors ── */
  --color-success: #38a169;
  --color-warning: #dd6b20;
  --color-danger: #e53e3e;
  --color-info: #3182ce;

  /* ── Typography ── */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  --font-size-5xl: 3.75rem;
  --line-height-tight: 1.2;
  --line-height-snug: 1.375;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.75;
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
  --letter-spacing-wider: 0.05em;

  /* ── Spacing Scale ── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(26, 54, 93, 0.05);
  --shadow-sm: 0 1px 3px rgba(26, 54, 93, 0.08), 0 1px 2px rgba(26, 54, 93, 0.06);
  --shadow-md: 0 4px 6px rgba(26, 54, 93, 0.07), 0 2px 4px rgba(26, 54, 93, 0.06);
  --shadow-lg: 0 10px 15px rgba(26, 54, 93, 0.08), 0 4px 6px rgba(26, 54, 93, 0.05);
  --shadow-xl: 0 20px 25px rgba(26, 54, 93, 0.1), 0 10px 10px rgba(26, 54, 93, 0.04);
  --shadow-2xl: 0 25px 50px rgba(26, 54, 93, 0.15);
  --shadow-glass: 0 8px 32px rgba(26, 54, 93, 0.12);
  --shadow-whatsapp: 0 6px 20px rgba(37, 211, 102, 0.4);

  /* ── Gradients ── */
  --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
  --gradient-primary-light: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
  --gradient-hero: linear-gradient(160deg, #1a365d 0%, #234681 40%, #2b6cb0 100%);
  --gradient-cta: linear-gradient(135deg, #1a365d 0%, #2b6cb0 50%, #3182ce 100%);
  --gradient-whatsapp: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  --gradient-gold: linear-gradient(135deg, #d69e2e 0%, #ecc94b 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

  /* ── Border Radius ── */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-slower: 500ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-Indexes ── */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 1000;
  --z-modal-backdrop: 1500;
  --z-modal: 2000;
  --z-tooltip: 3000;
  --z-whatsapp: 9999;
}


/* ==========================================================================
   2. RESET / NORMALIZE — Modern CSS Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-gray-700);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary-600);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-500);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}


/* ==========================================================================
   3. TYPOGRAPHY SYSTEM — Outfit Headings, Inter Body
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-primary-900);
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

h5 {
  font-size: var(--font-size-md);
  font-weight: 600;
}

h6 {
  font-size: var(--font-size-base);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
}

strong {
  font-weight: 600;
  color: var(--color-gray-800);
}

em {
  font-style: italic;
}

small {
  font-size: var(--font-size-sm);
}


/* ==========================================================================
   4. NAVIGATION STYLES — Sticky Navbar with Glassmorphism
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  padding: var(--space-4) 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 54, 93, 0.06);
  transition: all var(--transition-slow);
}

.navbar.scrolled {
  padding: var(--space-2) 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-decoration: none;
  gap: var(--space-1);
}

.logo-prefix {
  color: var(--color-primary-900);
}

.logo-domain {
  color: var(--color-primary-600);
}

.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gray-600);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: calc(var(--z-navbar) + 10);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-900);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Slide-in Menu */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-white);
  padding: 80px var(--space-8) var(--space-8);
  box-shadow: var(--shadow-2xl);
  z-index: var(--z-navbar);
  animation: slideInRight 0.3s ease forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.nav-links.mobile-open .nav-link {
  font-size: var(--font-size-md);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-gray-100);
  width: 100%;
}


/* ==========================================================================
   5. HERO SECTION — Gradient Background with Shapes
   ========================================================================== */
.hero {
  position: relative;
  padding: calc(80px + var(--space-16)) 0 var(--space-16);
  background: var(--gradient-hero);
  color: var(--color-white);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  line-height: var(--line-height-tight);
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  max-width: 600px;
  line-height: var(--line-height-relaxed);
  position: relative;
  z-index: 2;
}

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

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.price-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-gold-light);
}

/* Background Decorative Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--color-white);
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  opacity: 1;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 1;
}


/* ==========================================================================
   6. CARD COMPONENTS — Glassmorphism Style
   ========================================================================== */
.card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary-light);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-5);
  transition: transform var(--transition-spring);
}

.card:hover .card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-primary-900);
  margin-bottom: var(--space-3);
}

.card-body {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
}


/* ==========================================================================
   7. BUTTON STYLES — Primary, WhatsApp, Outline, Large
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

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

/* Primary Button */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--color-white);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: var(--gradient-whatsapp);
  color: var(--color-white);
  box-shadow: var(--shadow-whatsapp);
  padding-left: var(--space-5);
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-whatsapp .btn-icon {
  width: 20px;
  height: 20px;
  margin-right: var(--space-1);
}

@keyframes pulse-whatsapp {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp.pulse {
  animation: pulse-whatsapp 2s infinite;
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--color-primary-600);
  border-color: var(--color-primary-600);
}

.btn-outline:hover {
  background: var(--color-primary-600);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Large Variant */
.btn-lg {
  font-size: var(--font-size-base);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
}


/* ==========================================================================
   8. GRID LAYOUTS — Features, Departments, Trust, Steps, Links
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.departments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  counter-reset: step-counter;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}


/* ==========================================================================
   9. BREADCRUMBS — Navigation Trail
   ========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
}

.breadcrumb a {
  color: var(--color-primary-600);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--color-primary-500);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--color-gray-300);
  font-size: var(--font-size-xs);
  user-select: none;
}

.breadcrumb-current {
  color: var(--color-gray-600);
  font-weight: 500;
}


/* ==========================================================================
   10. FAQ ACCORDION — Expandable Questions
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-primary-200);
}

.faq-item.active {
  border-color: var(--color-primary-300);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-primary-900);
  background: var(--color-white);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-base);
}

.faq-question:hover {
  background: var(--color-gray-50);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  color: var(--color-primary-600);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
  color: var(--color-gray-600);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}


/* ==========================================================================
   11. CALCULATOR FORM — Gestational Calculator
   ========================================================================== */
.calculator-container {
  max-width: 650px;
  margin: 0 auto;
}

.calculator-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary-900);
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  color: var(--color-gray-700);
  background: var(--color-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus {
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

.form-help {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
  margin-top: var(--space-1);
}

/* Result Display */
.result-display {
  margin-top: var(--space-8);
}

.result-card {
  background: var(--color-gray-50);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  border: 2px solid var(--color-gray-100);
  transition: border-color var(--transition-base);
}

.result-card.status-green {
  border-color: var(--color-success);
  background: rgba(56, 161, 105, 0.05);
}

.result-card.status-yellow {
  border-color: var(--color-warning);
  background: rgba(221, 107, 32, 0.05);
}

.result-card.status-red {
  border-color: var(--color-danger);
  background: rgba(229, 62, 62, 0.05);
}

.result-weeks {
  margin-bottom: var(--space-4);
}

.weeks-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-primary-900);
}

.days-number {
  font-size: var(--font-size-lg);
  color: var(--color-gray-500);
  font-weight: 500;
}

.result-detail {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  margin-bottom: var(--space-2);
}

.result-status {
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-6);
}

.status-green .result-status {
  background: rgba(56, 161, 105, 0.12);
  color: var(--color-success);
}

.status-yellow .result-status {
  background: rgba(221, 107, 32, 0.12);
  color: var(--color-warning);
}

.status-red .result-status {
  background: rgba(229, 62, 62, 0.12);
  color: var(--color-danger);
}

.result-cta {
  margin-top: var(--space-4);
}


/* ==========================================================================
   12. CONTACT PAGE — WhatsApp Card, Steps, Trust Badges
   ========================================================================== */
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-100);
  max-width: 600px;
  margin: 0 auto;
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: var(--gradient-whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-3xl);
  color: var(--color-white);
  box-shadow: var(--shadow-whatsapp);
}

.contact-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary-900);
  margin-bottom: var(--space-4);
}

.step-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.trust-badges-section {
  padding: var(--space-12) 0;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.trust-badge-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  font-size: var(--font-size-lg);
}

.contact-info-section {
  padding: var(--space-12) 0;
  background: var(--color-gray-50);
}

.contact-details {
  max-width: 700px;
  margin: 0 auto;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-gray-200);
}

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


/* ==========================================================================
   13. CONTENT PAGE — Sidebar Layout, Prose Styles
   ========================================================================== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.content-body {
  flex: 1;
}

/* Prose styles for content-body */
.content-body p {
  margin-bottom: var(--space-5);
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
}

.content-body h2 {
  font-size: var(--font-size-2xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-primary-100);
}

.content-body h3 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.content-body h4 {
  font-size: var(--font-size-lg);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.content-body ul,
.content-body ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.content-body ul {
  list-style-type: disc;
}

.content-body ol {
  list-style-type: decimal;
}

.content-body li {
  margin-bottom: var(--space-2);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
}

.content-body a {
  color: var(--color-primary-600);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--color-primary-200);
  text-underline-offset: 3px;
  transition: all var(--transition-base);
}

.content-body a:hover {
  color: var(--color-primary-500);
  text-decoration-color: var(--color-primary-500);
}

.content-body strong {
  color: var(--color-gray-800);
  font-weight: 600;
}

/* Sidebar */
.sidebar {
  width: 100%;
}

.sidebar-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  margin-bottom: var(--space-6);
  position: sticky;
  top: 100px;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  border-bottom: 1px solid var(--color-gray-100);
}

.sidebar-links li:last-child {
  border-bottom: none;
}

.sidebar-links a {
  display: block;
  padding: var(--space-3) var(--space-2);
  color: var(--color-gray-600);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: all var(--transition-base);
  border-radius: var(--radius-sm);
}

.sidebar-links a:hover {
  color: var(--color-primary-600);
  background: var(--color-primary-50);
  padding-left: var(--space-4);
}

.sidebar-price {
  text-align: center;
  padding: var(--space-6);
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.sidebar-price h1,
.sidebar-price h2,
.sidebar-price h3,
.sidebar-price h4,
.sidebar-price h5,
.sidebar-price h6,
.sidebar-price p,
.sidebar-price span {
  color: var(--color-white);
}

.sidebar-price-amount {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-gold-light);
}

.sidebar-features {
  list-style: none;
}

.sidebar-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

.sidebar-features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}


/* ==========================================================================
   14. DEPARTMENT PAGE — Department Hero
   ========================================================================== */
.dept-hero {
  position: relative;
  padding: calc(80px + var(--space-12)) 0 var(--space-12);
  background: var(--gradient-primary);
  color: var(--color-white);
  overflow: hidden;
}

.dept-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.dept-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
}


/* ==========================================================================
   15. FOOTER — Dark Background, Multi-column
   ========================================================================== */
.footer {
  background: var(--color-primary-900);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-col {
  min-width: 0;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: var(--space-2);
}

.footer-contact {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--line-height-relaxed);
}

.footer-disclaimer {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
  line-height: var(--line-height-relaxed);
}

.footer-bottom {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
}


/* ==========================================================================
   16. WHATSAPP FLOATING BUTTON - Pill shape, fixed position
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: var(--z-whatsapp);
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-lg);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: whatsapp-pulse 2.5s infinite;
  transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  animation: none;
  color: #fff;
}

.whatsapp-float-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-float-text {
  display: inline-block;
}

@keyframes whatsapp-pulse {
  0%   { transform: scale(1); }
  15%  { transform: scale(1.05); }
  30%  { transform: scale(1); }
  45%  { transform: scale(1.02); }
  60%  { transform: scale(1); }
  100% { transform: scale(1); }
}


/* ==========================================================================
   17. SCROLL ANIMATIONS — Fade In Up / Left / Right
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ==========================================================================
   18. RESPONSIVE DESIGN — Mobile-first Breakpoints
   ========================================================================== */

/* ── Tablet: 768px ── */
@media (min-width: 768px) {
  h1 {
    font-size: var(--font-size-4xl);
  }

  .hero h1 {
    font-size: var(--font-size-4xl);
  }

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

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

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

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

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

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

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

  .content-wrapper {
    flex-direction: row;
    gap: var(--space-10);
  }

  .content-body {
    flex: 2;
  }

  .sidebar {
    flex: 1;
    min-width: 280px;
  }
}

/* ── Desktop: 1024px ── */
@media (min-width: 1024px) {
  h1 {
    font-size: var(--font-size-4xl);
  }

  .hero h1 {
    font-size: var(--font-size-5xl);
  }

  .hero {
    min-height: 600px;
  }

  /* Full navigation visible */
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .departments-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .whatsapp-float-btn {
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    font-size: var(--font-size-xl);
  }
  
  .whatsapp-float-btn svg {
    width: 32px;
    height: 32px;
  }
}

/* ── Wide Desktop: 1280px ── */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }

  h1 {
    font-size: var(--font-size-5xl);
  }

  .hero h1 {
    font-size: var(--font-size-5xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-lg);
  }

  .section {
    padding: var(--space-20) 0;
  }

  .features-grid,
  .departments-grid {
    gap: var(--space-8);
  }
}


/* ==========================================================================
   19. PRINT STYLES — Clean Print Output
   ========================================================================== */
@media print {
  .navbar,
  .footer,
  .whatsapp-float-btn,
  .menu-toggle,
  .btn-whatsapp,
  .hero-shapes {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .hero {
    background: none !important;
    color: #000;
    padding: 1rem 0;
    min-height: auto;
  }

  .hero h1,
  .hero-subtitle {
    color: #000;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
    backdrop-filter: none;
    break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .section {
    padding: 1rem 0;
  }
}


/* ==========================================================================
   20. UTILITY CLASSES — Container, Section, Text, Backgrounds
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.section {
  padding: var(--space-16) 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary-900);
  text-align: center;
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-gray-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-10);
  line-height: var(--line-height-relaxed);
}

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

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

.bg-light {
  background-color: var(--color-gray-50);
}

.bg-gradient {
  background: var(--gradient-primary);
}


/* ==========================================================================
   21. TRUST SECTION — Badges with Icon, Title, Description
   ========================================================================== */
.trust-section {
  padding: var(--space-16) 0;
  background: var(--color-gray-50);
}

.trust-badge {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xl);
  transition: background var(--transition-base), transform var(--transition-spring);
}

.trust-badge:hover .trust-icon {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.trust-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-primary-900);
  margin-bottom: var(--space-2);
}

.trust-badge p {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
}


/* ==========================================================================
   22. CTA SECTIONS — Gradient Call to Action
   ========================================================================== */
.cta-section {
  padding: var(--space-16) 0;
  background: var(--gradient-cta);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4,
.cta-section h5,
.cta-section h6,
.cta-section p,
.cta-section span {
  color: var(--color-white);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-subtitle {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}


/* ==========================================================================
   23. LINKS SECTION — Link Cards with Hover Effect
   ========================================================================== */
.links-section {
  padding: var(--space-12) 0;
}

.link-card {
  display: block;
  position: relative;
  padding: var(--space-4) var(--space-6);
  padding-right: var(--space-12);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-gray-700);
  transition: all var(--transition-base);
}

.link-card h3 {
  font-size: var(--font-size-lg);
  color: var(--color-primary-900);
  margin-bottom: var(--space-2);
  transition: color var(--transition-base);
}

.link-card p {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  margin-bottom: 0;
  line-height: var(--line-height-relaxed);
}

.link-card:hover {
  border-color: var(--color-primary-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.link-card:hover h3 {
  color: var(--color-primary-600);
}

.link-arrow {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-400);
  font-size: var(--font-size-xl);
  transition: transform var(--transition-base), color var(--transition-base);
}

.link-card:hover .link-arrow {
  color: var(--color-primary-600);
  transform: translate(4px, -50%);
}
