/* ============================================
   DOTLOOM - Custom CSS Overrides
   Corporate BPO & IT Services Website
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Primary Colors - Corporate Blue */
  --color-primary-50: #eff6ff;
  --color-primary-100: #dbeafe;
  --color-primary-200: #bfdbfe;
  --color-primary-300: #93c5fd;
  --color-primary-400: #60a5fa;
  --color-primary-500: #3b82f6;
  --color-primary-600: #2563eb;
  --color-primary-700: #1d4ed8;
  --color-primary-800: #1e40af;
  --color-primary-900: #1e3a8a;

  /* Neutral Colors - Slate */
  --color-neutral-50: #f8fafc;
  --color-neutral-100: #f1f5f9;
  --color-neutral-200: #e2e8f0;
  --color-neutral-300: #cbd5e1;
  --color-neutral-400: #94a3b8;
  --color-neutral-500: #64748b;
  --color-neutral-600: #475569;
  --color-neutral-700: #334155;
  --color-neutral-800: #1e293b;
  --color-neutral-900: #0f172a;

  /* Accent Color - Emerald (Trust/Success) */
  --color-accent-500: #10b981;
  --color-accent-600: #059669;

  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 5rem;
  --container-max: 1280px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for sticky header */
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  transition: var(--transition-base);
  transition-property: background-color, box-shadow, padding;
}
.scrolled .nav-link
{
  color: white;
}
.header.scrolled {
  background-color: rgb(30 60 145);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.header.scrolled .header-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav-link {
  position: relative;
  color: var(--color-neutral-600);
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-600);
  transition: width var(--transition-base);
}

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

/* Mobile Menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #58b37f 0%, var(--color-primary-700) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

/* Hero Animation States */
.hero-animate {
  opacity: 0;
  transform: translateY(30px);
}

.hero-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TYPEWRITER EFFECT
   ============================================ */
.typewriter-text {
  display: inline;
}

.typewriter-cursor {
  display: inline-block;
  animation: blink 1s infinite;
  color: var(--color-primary-300);
  font-weight: 300;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Hero Visual Container */
.hero-visual-container {
  perspective: 1000px;
}

/* Central Orb */
.hero-orb {
  animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

.animate-pulse-slow {
  animation: pulseSlow 3s ease-in-out infinite;
}

@keyframes pulseSlow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Floating Icons */
.floating-icon {
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-icon:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.2);
}

.floating-icon .icon-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.floating-icon:hover .icon-label {
  opacity: 1;
}

.icon-1 { animation: float1 6s ease-in-out infinite; }
.icon-2 { animation: float2 7s ease-in-out infinite; }
.icon-3 { animation: float3 5s ease-in-out infinite; }
.icon-4 { animation: float4 8s ease-in-out infinite; }
.icon-5 { animation: float5 6.5s ease-in-out infinite; }
.icon-6 { animation: float6 7.5s ease-in-out infinite; }

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes float4 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-4deg); }
}

@keyframes float5 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

@keyframes float6 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-3deg); }
}

/* Connecting Lines Animation */
.connecting-line {
  stroke-dashoffset: 100;
  animation: dashMove 3s linear infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.5s; }
.line-3 { animation-delay: 1s; }
.line-4 { animation-delay: 1.5s; }
.line-5 { animation-delay: 2s; }
.line-6 { animation-delay: 2.5s; }

@keyframes dashMove {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

/* Particle Effects */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 30%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 70%; animation-delay: 1s; }
.particle-3 { top: 60%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 60%; animation-delay: 3s; }
.particle-5 { top: 30%; left: 80%; animation-delay: 4s; }
.particle-6 { top: 70%; left: 40%; animation-delay: 5s; }
.particle-7 { top: 15%; left: 55%; animation-delay: 6s; }
.particle-8 { top: 85%; left: 25%; animation-delay: 7s; }

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) translateX(20px) scale(1.2);
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-200px) translateX(-10px) scale(0.8);
    opacity: 0;
  }
}

/* Data Flow Animation for Hero */
.data-flow {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-primary-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary-400);
}

/* ============================================
   CLIENT LOGOS - Normalized Display
   ============================================ */
.client-logo-wrapper {
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.client-logo-wrapper:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.client-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* For light backgrounds (non-hero sections) */
.section-alt .client-logo-wrapper {
  background: rgba(0, 0, 0, 0.05);
}

/* ============================================
   BUTTONS
   ============================================ */
/* ============================================
   BUTTONS - Eye-catching, Professional Design
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Shimmer effect overlay */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

/* Primary Button - Gradient with Glow */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-700) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-400) 0%, var(--color-primary-600) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4), 0 0 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

/* Pulse animation for primary buttons */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5), 0 0 30px rgba(59, 130, 246, 0.2); }
}

.btn-primary {
  animation: btnPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  animation: none;
}

/* Secondary Button */
.btn-secondary {
  background: white;
  color: var(--color-primary-700);
  border: 2px solid var(--color-primary-200);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--color-primary-50) 0%, white 100%);
  border-color: var(--color-primary-400);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

/* Accent Button */
.btn-accent {
  background: linear-gradient(135deg, var(--color-accent-500) 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #34d399 0%, var(--color-accent-500) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-accent:hover {
  background-color: var(--color-accent-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Outline Button - Glass Effect */
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.98);
}

/* Dark background outline variant */
.btn-outline-dark {
  background: transparent;
  color: var(--color-primary-600);
  border: 2px solid var(--color-primary-300);
}

.btn-outline-dark:hover {
  background: var(--color-primary-50);
  border-color: var(--color-primary-500);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background-color: white;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin-bottom: 1rem;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-neutral-500);
  max-width: 600px;
}

.section-dark .section-subtitle {
  color: var(--color-neutral-400);
}

/* Scroll Animation States */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--color-neutral-200);
  transition: all var(--transition-base);
  height: 100%;
}

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

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-100);
  color: var(--color-primary-600);
  border-radius: 0.625rem;
  margin-bottom: 1rem;
}

.service-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-neutral-800);
  margin-bottom: 0.5rem;
}

.service-card-text {
  font-size: 0.9375rem;
  color: var(--color-neutral-500);
  line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary-600);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--color-neutral-500);
  font-weight: 500;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent-500);
  color: white;
  border-radius: 50%;
}

.feature-title {
  font-weight: 600;
  color: var(--color-neutral-800);
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.9375rem;
  color: var(--color-neutral-500);
}

/* ============================================
   INDUSTRIES / CASE STUDIES
   ============================================ */
.industry-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--color-neutral-200);
  transition: all var(--transition-base);
}

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

.industry-image {
  height: 160px;
  background-color: var(--color-neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-400);
  font-size: 0.875rem;
}

.industry-content {
  padding: 1.5rem;
}

.industry-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-primary-100);
  color: var(--color-primary-700);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.industry-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-neutral-800);
  margin-bottom: 0.5rem;
}

.industry-text {
  font-size: 0.9375rem;
  color: var(--color-neutral-500);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--color-neutral-200);
}

.testimonial-text {
  font-size: 1.0625rem;
  color: var(--color-neutral-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-700);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-neutral-800);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--color-neutral-500);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-700) 0%, var(--color-primary-900) 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--color-neutral-700);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-neutral-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: var(--color-neutral-700);
  background-color: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px var(--color-primary-100);
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-neutral-900);
  color: var(--color-neutral-400);
  padding: 4rem 0 2rem;
}

.footer-title {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-link {
  display: block;
  color: var(--color-neutral-400);
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--color-neutral-800);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
}

/* ============================================
   PAGE HEADERS (Internal Pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--color-primary-800) 0%, var(--color-primary-900) 100%);
  padding: 8rem 0 4rem;
  color: white;
  text-align: center;
}

.page-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--color-neutral-200);
  text-align: center;
}

.team-photo {
  height: 200px;
  background-color: var(--color-neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-400);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-weight: 600;
  color: var(--color-neutral-800);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-primary-600);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary-400) 0%, var(--color-primary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 4rem;
  }

  .hero {
    min-height: 80vh;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
  }

  html {
    scroll-padding-top: 70px;
  }

  .hero {
    min-height: 70vh;
    padding-top: 5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-title {
    font-size: 1.875rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .mobile-menu,
  .cta-section,
  .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: white;
    color: black;
  }

  .section {
    padding: 1.5rem 0;
  }
}
