/* =====================================================
   SLM / VEF Group — Modern Minimal CSS
   Style: Clean · Minimal · Elegant
   Font: Prompt (Thai) | Palette: Navy + Teal
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --navy:        #0f0a5e;
  --navy-light:  #1a1280;
  --teal:        #00c9c8;
  --teal-light:  #e0f9f9;
  --white:       #ffffff;
  --off-white:   #f9f9fb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #6b7280;
  --gray-800:    #1f2937;
  --text:        #111827;

  --font:        'Prompt', sans-serif;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;

  --shadow-xs:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.09);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --duration:    0.28s;

  /* Aliases & Compatibility */
  --primary:        var(--navy);
  --primary-light:  var(--navy-light);
  --accent:         var(--teal);
  --accent-dark:    #00a8a8;
  --transition:     all var(--duration) var(--ease);
}

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
img { max-width: 100%; height: auto; display: block; }

/* ================================================
   NAVBAR
================================================ */
.slm-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.slm-navbar.scrolled {
  background: rgba(15, 10, 94, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.navbar-brand img {
  height: 42px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.brand-name {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}

.brand-name span {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.70);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--white); font-weight: 500; }

.nav-cta {
  background: var(--teal) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.45rem 1.15rem !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: #00b5b5 !important; color: var(--navy) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: var(--duration);
}

/* ================================================
   HERO SLIDER (Home)
================================================ */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 68px;
  background: #0f0a5e;
  user-select: none;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 640;
  min-height: 240px;
  max-height: 600px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-slide.active img {
  transform: scale(1.02);
}

/* Glassmorphic Navigation Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 10, 94, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.hero-arrow:hover {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 201, 200, 0.45);
}
.hero-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.hero-prev {
  left: 24px;
}
.hero-next {
  right: 24px;
}

/* Indicators */
.hero-dots-container {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(15, 10, 94, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.25);
}
.hero-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 201, 200, 0.7);
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  height: 280px;
  margin-top: 68px;
  overflow: hidden;
}
.page-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,10,94,0.72), rgba(15,10,94,0.25));
  display: flex;
  align-items: center;
  padding: 0 8%;
}
.page-hero-overlay h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.page-hero-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-top: 0.4rem;
  font-weight: 300;
}

/* ================================================
   LAYOUT UTILITIES
================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 88px 0; }
.section-alt { background: var(--off-white); }

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: #008b8b;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.divider {
  width: 40px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ================================================
   STATS BAR
================================================ */
.stats-bar {
  background: var(--navy);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item { color: var(--white); }
.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.35rem;
  font-weight: 300;
}

/* ================================================
   SERVICE CARDS (Home grid)
================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  cursor: default;
}
.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 68px; height: 68px;
  margin: 0 auto 1.1rem;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}
.service-card:hover .service-icon { background: var(--teal-light); }
.service-icon img { width: 38px; height: 38px; object-fit: contain; }

.service-name {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.45;
}

/* ================================================
   REFERENCES GRID
================================================ */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.ref-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.ref-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.ref-item img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================
   ABOUT LAYOUT
================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img { width: 100%; height: 380px; object-fit: cover; }

.about-content .section-header { text-align: left; }
.about-content .divider { margin-left: 0; }

.about-list {
  list-style: none;
  margin-top: 1.5rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 300;
}

.about-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: var(--teal-light)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2300c9c8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/12px no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================================================
   CONTACT
================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-info-item:last-child { border: none; }

.contact-icon {
  width: 38px; height: 38px;
  background: var(--off-white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-text span {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.55;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* ================================================
   CONTACT FORM
================================================ */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,201,200,0.12);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

.form-success {
  display: none;
  text-align: center;
  padding: 1.75rem;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  color: #008b8b;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Contact Info Box */
.contact-info-box {
  background: linear-gradient(145deg, #0f0a5e 0%, #160e7e 100%);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(15, 10, 94, 0.18);
}

.contact-info-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-box .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-box .contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-box .contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 201, 200, 0.15);
  border: 1px solid rgba(0, 201, 200, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-info-box .contact-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-box .contact-text span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--duration) var(--ease);
  color: #ffffff;
}
.social-link:hover {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 201, 200, 0.35);
}

/* ================================================
   BUTTONS
================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.7rem 1.65rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.7rem 1.65rem;
  border-radius: 50px;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.btn-accent:hover {
  background: #00b5b5;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,201,200,0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.7rem 1.65rem;
  border-radius: 50px;
  border: 1.5px solid var(--navy);
  transition: all var(--duration) var(--ease);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 48px;
  border-radius: 6px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.7;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
  font-size: 0.83rem;
  font-weight: 300;
  opacity: 0.65;
  transition: opacity var(--duration), color var(--duration);
}
.footer-links a:hover { opacity: 1; color: var(--teal); }

.footer-contact-item {
  display: flex;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 0.6rem;
  opacity: 0.7;
  align-items: flex-start;
  line-height: 1.6;
}
.footer-contact-item .ico { font-size: 0.85rem; margin-top: 1px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  opacity: 0.45;
  font-weight: 300;
}

/* ================================================
   SERVICE FULL PAGE CARDS
================================================ */
.service-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  transition: border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  align-items: flex-start;
}

.service-full-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-full-icon {
  width: 60px; height: 60px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration) var(--ease);
}
.service-full-card:hover .service-full-icon { background: var(--teal-light); }
.service-full-icon img { width: 36px; height: 36px; object-fit: contain; }

.service-full-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.service-full-body p {
  font-size: 0.83rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--gray-600);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.6rem;
  border: 1px solid var(--gray-200);
}

/* Service Banner Strips */
.banner-strip {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
}
.banner-strip img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88); }
.banner-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,10,94,0.60), transparent);
  display: flex; align-items: center; padding: 0 2rem;
}
.banner-strip-overlay h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* About Page: Vision Cards */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.vision-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--teal);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.vision-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.vision-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.vision-desc {
  font-size: 0.845rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.7;
}

/* About Page: Values */
.value-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.value-row:last-child { border: none; }

.value-num {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.value-content p {
  font-size: 0.83rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ================================================
   SCROLL ANIMATIONS
================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  .navbar-inner { padding: 0 1.25rem; height: 62px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(15,10,94,0.97);
    backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1.5rem; border-radius: 0; width: 100%; }
  .nav-toggle { display: flex; }

  .hero { margin-top: 62px; }
  .hero-arrow { width: 38px; height: 38px; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  .hero-dots-container { bottom: 12px; }
  .page-hero { margin-top: 62px; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .service-full-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
