:root {
  /* Light Theme (default) */
  --primary: #1a6b5a;
  --primary-dark: #0a2e25;
  --primary-light: #2e8f79;
  --primary-glow: rgba(26, 107, 90, 0.2);
  --primary-glow-strong: rgba(26, 107, 90, 0.4);
  --secondary: #2c5f8a;
  --accent: #e8a735;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e0;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
  --card-radius: 1.5rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-theme="dark"] {
  --primary: #3da88f;
  --primary-dark: #2e8f79;
  --primary-light: #4db89f;
  --primary-glow: rgba(61, 168, 143, 0.2);
  --primary-glow-strong: rgba(61, 168, 143, 0.4);
  --secondary: #4a90c4;
  --accent: #f0b84a;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --border-light: #334155;
  --border-medium: #475569;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  animation: fadeIn 0.5s ease-out;
}

/* Custom Scrollbar - Enhanced */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
  width: 10px;
}

/* Selection Color */
::selection {
  background: var(--primary);
  color: white;
}

/* Typography - Enhanced */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== ENHANCED LOGO STYLES ========== */
.brand {
  display: inline-block;
  position: relative;
  transition: var(--transition-slow);
}

.brand img {
  height: 110px;
  width: auto;
  transition: var(--transition-slow);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Scrolled navbar logo size adjustment */
.navbar.scrolled .brand img {
  height: 80px;
}

/* Responsive logo */
@media (max-width: 768px) {
  .brand img {
    height: 100px;
  }
  
  .navbar.scrolled .brand img {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .brand img {
    height: 55px;
  }
}

/* Call Button Styles */
.call-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 600 !important;
  border: none;
  transition: var(--transition);
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white !important;
}

.call-btn::after {
  display: none !important;
}

.call-icon {
  font-size: 1rem;
}

/* Theme Toggle Button - Enhanced */
.theme-toggle {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  cursor: pointer;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.theme-toggle:hover::before {
  width: 200px;
  height: 200px;
}

.theme-toggle:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.theme-icon {
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* Navbar - Enhanced */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

body.homepage .navbar {
  position: fixed;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
}

body.homepage .navbar.scrolled {
  background: var(--bg-primary);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] body.homepage .navbar.scrolled {
  background: var(--bg-primary);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 16px 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  position: relative;
  transition: var(--transition);
}

body.homepage .navbar:not(.scrolled) .nav-links a {
  color: #ffffff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* Hero Section - Enhanced */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 33, 55, 0.85), rgba(14, 75, 64, 0.7));
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: none;
  white-space: normal;
  word-wrap: break-word;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-3px);
  border-color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Stats Section - Enhanced */
.stats-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  position: relative;
  transform: translateY(-30px);
  margin-bottom: -30px;
  border-radius: 30px 30px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.stat-item {
  transition: var(--transition-bounce);
  padding: 20px;
  border-radius: 20px;
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Section Styling - Enhanced */
.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
}

.section-header p {
  font-size: 1.1rem;
  margin-top: 24px;
  color: var(--text-secondary);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 32px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Cards - Premium Enhanced */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  transition: var(--transition-bounce);
  display: inline-block;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.card-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Feature Card with Image - Enhanced */
.feature-card {
  background: var(--bg-primary);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card-content {
  padding: 24px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Page Hero - Enhanced */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  color: white;
  padding: 140px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2a38 0%, #1a4a3e 100%);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: var(--transition-slow);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 24, 45, 0.85), rgba(15, 84, 70, 0.7));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  animation: fadeInUp 0.5s ease-out;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-size: 1rem;
  animation: fadeInUp 0.5s ease-out 0.1s both;
}

/* Content Block - Enhanced */
.content-block {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px;
  margin-top: 32px;
  transition: var(--transition);
}

.content-block:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin-top: 24px;
  color: var(--text-primary);
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block ul {
  padding-left: 24px;
  margin: 16px 0;
}

.content-block li {
  margin: 8px 0;
  color: var(--text-secondary);
  transition: var(--transition);
}

.content-block li:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Form Styling - Enhanced */
.form-wrap {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px;
  margin-top: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.form-wrap:hover {
  box-shadow: var(--shadow-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

input, select, textarea {
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.95rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  transform: translateY(-1px);
}

/* Age input styling */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 0.5;
}

/* Form Success Message */
.form-success {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--card-radius);
  color: white;
  animation: fadeInUp 0.5s ease-out;
}

.form-success h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: bounce 0.6s ease-out;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

button {
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

button::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;
}

button:hover::before {
  left: 100%;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* Footer - Enhanced */
footer {
  background: linear-gradient(135deg, #0a2e25, #0a2e25);
  color: #dbe8e5;
  margin-top: 60px;
  position: relative;
}

[data-theme="dark"] footer {
  background: linear-gradient(135deg, #0a1219, #0a1219);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
}

.footer-links a {
  color: #cbd5e0;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: white;
  transform: translateX(3px);
}

.small {
  font-size: 0.8rem;
  color: #94a3b8;
  padding-bottom: 32px;
  text-align: center;
}

/* Back to Top Button - Enhanced */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  border: none;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-inner {
    flex-direction: column;
    gap: 16px;
    padding: 12px 0;
  }

  .nav-links {
    gap: 20px;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    min-height: 80vh;
    padding: 120px 0 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }

  .btn-primary, .btn-outline {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
  
  .stat-number {
    font-size: 2rem;
  }

  .call-btn {
    padding: 6px 14px !important;
    font-size: 0.85rem !important;
  }
}