:root {
  --accent: #4285F4;
  --accent-light: #7BAAF7;
  --accent-dark: #1967D2;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fb;
  --text-primary: #202124;
  --text-secondary: #5f6368;
  --text-muted: #9aa0a6;
  --border-color: #e8eaed;
  --shadow-sm: 0 1px 2px rgba(60,64,67,0.08);
  --shadow-md: 0 4px 12px rgba(60,64,67,0.10);
  --shadow-lg: 0 8px 32px rgba(60,64,67,0.12);
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ════════════════════════════════════════════════════════════ */
/* HEADER */
/* ════════════════════════════════════════════════════════════ */
.header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.logo {
    justify-self: start;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.header .btn-primary {
    justify-self: end;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo i {
  font-size: 22px;
  color: var(--accent);
}

.logo-badge {
  font-size: 11px;
  background: rgba(66, 133, 244, 0.1);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1;
}

.nav-menu a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg-primary);
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 14px;
}

.btn-sm {
  padding: 8px 12px;
  font-size: 12px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #faf8f3 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -50px;
  left: -100px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero p {
  font-size: clamp(14px, 3.5vw, 18px);
  color: var(--text-secondary);
  margin-bottom: 30px;
  animation: slideUp 0.8s ease 0.4s both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: slideUp 0.8s ease 0.6s both;
}

.hero-image {
  position: relative;
  height: 300px;
  margin-top: 40px;
  animation: slideUp 0.8s ease 0.8s both;
}

.illustration-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 60px;
  color: var(--accent);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════════════ */
/* STATS SECTION */
/* ════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 60px 20px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
  width: 56px;
  height: 56px;
  background: rgba(66, 133, 244, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.counter {
  display: inline-block;
}

/* ════════════════════════════════════════════════════════════ */
/* SERVE SECTION (WHO WE SERVE) */
/* ════════════════════════════════════════════════════════════ */
.serve-section {
  padding: 60px 20px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.serve-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}

.serve-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(66, 133, 244, 0.02) 100%);
}

.serve-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.serve-icon {
  font-size: 36px;
  color: var(--accent);
  width: 56px;
  height: 56px;
  background: rgba(66, 133, 244, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.serve-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.serve-description {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

.serve-services {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.serve-services h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.serve-services ul {
  list-style: none;
}

.serve-services li {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.serve-services i {
  color: var(--accent);
  font-size: 12px;
}

/* ════════════════════════════════════════════════════════════ */
/* SERVICES SECTION */
/* ════════════════════════════════════════════════════════════ */
.services-section {
  padding: 60px 20px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
  width: 64px;
  height: 64px;
  background: rgba(66, 133, 244, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.service-benefits span {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(66, 133, 244, 0.08);
  color: var(--accent);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════ */
/* WHY CHOOSE SECTION */
/* ════════════════════════════════════════════════════════════ */
.why-section {
  padding: 60px 20px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.why-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
  width: 56px;
  height: 56px;
  background: rgba(66, 133, 244, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════ */
/* TESTIMONIALS SECTION */
/* ════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 60px 20px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto 40px;
}

.testimonial-slide {
  animation: slideUp 0.8s ease both;
}

.testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-secondary);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: #f9a825;
  font-size: 14px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.carousel-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 16px;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════ */
/* CTA SECTION */
/* ════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 28px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════ */
/* PAGE HEADER (CONTACT PAGE) */
/* ════════════════════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ════════════════════════════════════════════════════════════ */
/* CONTACT SECTION */
/* ════════════════════════════════════════════════════════════ */
.contact-section {
  padding: 60px 20px;
  background: var(--bg-primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-form-wrapper > p,
.contact-info-wrapper > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.alert {
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.alert-error {
  background: rgba(244, 67, 54, 0.1);
  color: #c62828;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.contact-info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 14px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.info-icon {
  font-size: 24px;
  color: var(--accent);
  width: 48px;
  height: 48px;
  background: rgba(66, 133, 244, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-info-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-info-wrapper h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 16px;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
}

.contact-social a:hover {
  border-color: var(--accent);
  background: rgba(66, 133, 244, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(66, 133, 244, 0.05) 100%);
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 24px;
}

.placeholder-content {
  text-align: center;
}

.placeholder-content i {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
  opacity: 0.5;
}

.placeholder-content p {
  color: var(--text-secondary);
  font-size: 13px;
}

/* ════════════════════════════════════════════════════════════ */
/* SCHEDULE SECTION */
/* ════════════════════════════════════════════════════════════ */
.schedule-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.schedule-section > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.consultation-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.consultation-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.consultation-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.consultation-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgba(66, 133, 244, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultation-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.consultation-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════ */
/* FOOTER */
/* ════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .schedule-section {
    padding: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 16px;
  }

  .hero {
    padding: 60px 16px 40px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .serve-grid,
  .services-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
  }
}
.footer {
    background: #0f172a !important;
    color: rgba(255,255,255,.85);

    padding: clamp(40px, 10vw, 70px) clamp(16px, 4vw, 20px) clamp(20px, 5vw, 30px);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(160px, 40vw, 220px), 1fr));
    gap: clamp(20px, 5vw, 40px);
    margin-bottom: clamp(24px, 5vw, 40px);
}

.footer-section h4 {
    font-size: clamp(12px, 2.5vw, 14px);
    margin-bottom: clamp(10px, 2vw, 15px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    font-family: 'Syne';
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: clamp(8px, 1.5vw, 10px);
}

.footer-logo i {
    color: var(--accent);
    margin-right: 6px;
}

.footer-section p {
    font-size: clamp(12px, 2.5vw, 14px);
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: clamp(6px, 1.5vw, 10px);
    font-size: clamp(12px, 2.5vw, 14px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.2s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-social {
    margin-top: clamp(10px, 2vw, 15px);
    display: flex;
    gap: clamp(6px, 1.5vw, 10px);
    flex-wrap: wrap;
}

.footer-social a {
    width: clamp(32px, 8vw, 35px);
    height: clamp(32px, 8vw, 35px);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
    font-size: clamp(12px, 3vw, 16px);
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(10px, 2.5vw, 15px);
    text-align: center;
    font-size: clamp(11px, 2.5vw, 13px);
    color: rgba(255, 255, 255, 0.6);
}
