/* Elegant Dark Theme Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #020204;
  --accent-color: #60a5fa;
  --background-dark: #0f172a;
  --surface-dark: #1e293b;
  --surface-light: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --gradient-primary: linear-gradient(135deg, #3b82f6, #60a5fa);
  --gradient-surface: linear-gradient(135deg, #1e293b, #334155);
  --shadow-elegant: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(59, 130, 246, 0.2);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Elegant Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}

/* ==== GLOBAL RESET ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: sans-serif;
  background: var(--background-dark);
}

/* ==== HERO SECTION ==== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding: 8rem 2rem 2rem; /* Extra top padding to account for navbar */
}

/* ==== BACKGROUND ELEMENTS ==== */
.hero-background,
.gradient-mesh,
.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gradient-mesh {
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.floating-elements .element {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.05;
  animation: float 8s ease-in-out infinite;
}

.element-1 { width: 200px; height: 200px; top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { width: 150px; height: 150px; top: 60%; right: 15%; animation-delay: 3s; }
.element-3 { width: 100px; height: 100px; bottom: 30%; left: 60%; animation-delay: 6s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ==== CONTENT WRAPPER ==== */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* ==== BADGE ==== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-dark);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-color);
}

/* ==== TITLE ==== */
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==== SUBTITLE ==== */
.hero-subtitle {
  font-size: 1.25rem;
  margin: 0 auto 2.5rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
  font-weight: 400;
}

/* ==== BUTTONS - PROPERLY CENTERED ==== */
.hero-buttons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1.5rem; /* Smaller gap for desktop */
  margin: 0 auto 3rem auto !important;
  flex-wrap: wrap;
  width: 100% !important;
  text-align: center !important;
  max-width: 600px; /* Limit container width to keep buttons closer */
}

.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px; /* Consistent button width */
  max-width: 250px; /* Prevent buttons from getting too wide */
  text-align: center !important;
  margin: 0 !important;
  flex: 0 0 auto; /* Don't grow or shrink */
}

.btn-icon { 
  width: 18px; 
  height: 18px; 
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-elegant);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--surface-dark);
  border-color: var(--accent-color);
}

/* ==== STATS - PROPERLY CENTERED ==== */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  text-align: center;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  min-width: 120px; /* Ensures consistent spacing */
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }
.stat-item:nth-child(5) { animation-delay: 0.6s; }

.stat-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.stat-label {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
  flex-shrink: 0;
}

.stat-item:hover .stat-icon { 
  transform: scale(1.15); 
}

@keyframes fadeUp {
  0% { transform: translateY(15px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}

/* ==== CANVAS POSITIONING ==== */
#hero-bg,
.hero-canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

/* ==== RESPONSIVE ADJUSTMENTS ==== */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    max-width: none; /* Remove max-width constraint on mobile */
  }

  .btn {
    width: 280px; /* Fixed width for perfect centering on mobile */
    max-width: 90%; /* Responsive max-width */
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 1.5rem;
  }
  
  .hero-buttons {
    gap: 0.75rem;
  }
}

/* Minimalist Services Section */
.services {
  padding: 6rem 0;
  background: var(--background-dark);
}

.section-badge {
  
  display: inline-flex;
  align-items: center;
  background: var(--surface-dark);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-color);
  margin-left: auto;  /* for flex/grid */
  margin-right: auto; /* for flex/grid */

}


.section-header {
  text-align: center; /* centers inline-block elements like .section-badge */
}


.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--surface-dark);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  color: var(--accent-color);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.service-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.service-price {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
  text-align: center;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

@keyframes borderGlow {
  0% {
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.4), 0 0 10px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.8);
  }
  50% {
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.4), 0 0 15px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 1);
  }
  100% {
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.4), 0 0 10px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.8);
  }
}

/* Featured Most Popular */
@keyframes borderGlow {
  0% {
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.4), 0 0 10px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.8);
  }
  50% {
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.4), 0 0 15px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 1);
  }
  100% {
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.4), 0 0 10px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.8);
  }
}

.featured {
  position: relative;
  overflow: visible;
  border: 2px solid var(--accent-color);
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
  transform: scale(1.05);
  animation: borderGlow 2s infinite ease-in-out;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.featured:hover {
  transform: scale(1.08);
}

.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 3;
}



.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-price {
  margin-top: auto;
}

/* Minimalist About Section */
.about {
  padding: 6rem 0;
  background: var(--surface-dark);
  text-align: center;
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mission-card {
  background: var(--background-dark);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column; /* Changed from row to column */
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--border-color);
  text-align: center; /* Center align text content */
}

.mission-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
}

.mission-content h4 {
  font-family: "Playfair Display", serif;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.mission-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center; /* Center align the mission description */
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--background-dark);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.value-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Minimalist Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--background-dark);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--surface-dark);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.contact-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-card p {
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-form-container {
  background: var(--surface-dark);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-dark);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* ADD THESE STYLES TO YOUR EXISTING CSS FILE */

/* Form status messages */
.form-status-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.form-status-message.success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.form-status-message.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

/* Button loading state */
.btn.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Minimalist Footer */
.footer {
  background: var(--surface-dark);
  color: var(--text-primary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-tagline {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.social-link:hover {
  border-color: var(--accent-color);
  background: rgba(59, 130, 246, 0.1);
}

.social-link:hover svg {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-menu {
    position: fixed;
    left: 0%;
    top: -500px;
    flex-direction: column;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .nav-menu.active {
    top: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .stat-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }
}

/* Smooth animations */
html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.value-card,
.contact-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
