/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: #1a2a3a;
  line-height: 1.6;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Colors from logo ──
   Teal-blue gradient: #4EC5C1 (light teal) → #1B6B93 (mid blue) → #0D4F6F (deep blue)
   Gold accent: #E5A825
   Dark: #0C3B5E
*/

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.nav-logo img { height: 44px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: #555;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1B6B93; }
.nav-links a.active { color: #1B6B93; }
.nav-cta {
  background: linear-gradient(135deg, #1B6B93, #0D4F6F) !important;
  color: #fff !important;
  padding: 8px 20px; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #333;
  margin: 6px 0; transition: 0.3s;
}

/* ── Hero ── */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: #0D4F6F;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: url('images/hero1.jpg'); }
.hero-slide:nth-child(2) { background-image: url('images/hero2.jpg'); }
.hero-slide:nth-child(3) { background-image: url('images/hero3.jpg'); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-logo { width: 280px; height: 280px; margin: 0 auto 28px; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 4px 24px rgba(0,0,0,0.4);
}
.hero h1 .accent {
  color: #E5A825;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 4px 24px rgba(0,0,0,0.4);
}
.hero p {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5), 0 2px 16px rgba(0,0,0,0.3);
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px;
  font-size: 1rem; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-white { background: #fff; color: #1B6B93; }
.btn-gold {
  background: linear-gradient(135deg, #E5A825, #d49b20);
  color: #fff;
  box-shadow: 0 4px 16px rgba(229,168,37,0.5), 0 2px 8px rgba(0,0,0,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f0b52e, #E5A825);
  box-shadow: 0 6px 24px rgba(229,168,37,0.6), 0 4px 12px rgba(0,0,0,0.3);
}
.btn-outline {
  background: linear-gradient(135deg, #4EC5C1, #1B6B93);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(27,107,147,0.5), 0 2px 8px rgba(0,0,0,0.3);
}
.btn-outline:hover {
  background: linear-gradient(135deg, #5DD4D0, #2279A3);
  box-shadow: 0 6px 24px rgba(27,107,147,0.6), 0 4px 12px rgba(0,0,0,0.3);
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Sections ── */
section { padding: 100px 24px; position: relative; overflow: hidden; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #E5A825; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; color: #0C3B5E;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.1rem; color: #5a7a8a;
  max-width: 600px; margin-bottom: 56px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Mission & Vision ── */
.mission {
  background: #fff;
}
.mission::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(78,197,193,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.mission::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(229,168,37,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.mission-card {
  padding: 44px 36px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.mission-card.card-mission {
  background: linear-gradient(145deg, #f0faf9, #e6f7f5);
  border: 1px solid #d4f1ed;
}
.mission-card.card-mission::before {
  background: linear-gradient(90deg, #4EC5C1, #1B6B93);
}
.mission-card.card-vision {
  background: linear-gradient(145deg, #FFF9EE, #FFF5E0);
  border: 1px solid #FFEFC7;
}
.mission-card.card-vision::before {
  background: linear-gradient(90deg, #E5A825, #D49B20);
}
.mission-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.mission-card h3 {
  font-size: 1.3rem; font-weight: 800;
  color: #0C3B5E; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px;
}
.mission-card p {
  font-size: 1.05rem; color: #4a6a7a;
  line-height: 1.85;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: #f6fafb;
  border: 1px solid #e8f0f2;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,79,111,0.08);
}
.value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
  background: linear-gradient(135deg, #4EC5C1, #1B6B93);
  color: #fff;
}
.value-card h4 {
  font-size: 1rem; font-weight: 700;
  color: #0C3B5E; margin-bottom: 8px;
}
.value-card p {
  font-size: 0.9rem; color: #5a7a8a;
  line-height: 1.7;
}

/* ── Overview ── */
.overview {
  background: linear-gradient(180deg, #f6fafb 0%, #eef6f9 100%);
}
.overview::before {
  content: '';
  position: absolute; bottom: -60px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,107,147,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.feature-card {
  background: #fff; border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #e8f0f2;
  border-top: 3px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,79,111,0.1);
}
.feature-card:nth-child(1) { border-top-color: #E5A825; }
.feature-card:nth-child(2) { border-top-color: #4EC5C1; }
.feature-card:nth-child(3) { border-top-color: #1B6B93; }
.feature-card:nth-child(4) { border-top-color: #9B59B6; }
.feature-card:nth-child(5) { border-top-color: #E67E22; }
.feature-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #0C3B5E; }
.feature-card p { font-size: 0.95rem; color: #5a7a8a; line-height: 1.7; }
.icon-order { background: #FFF5E0; }
.icon-papalit { background: #E6F7F5; }
.icon-pahatod { background: #E3F0F7; }
.icon-rider { background: #FFF0E8; }
.icon-market { background: #F3E8FD; }

/* ── How It Works ── */
#how-it-works {
  background: linear-gradient(180deg, #fff 0%, #f0f8fa 100%);
}
#how-it-works::before {
  content: '';
  position: absolute; top: 40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(27,107,147,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  counter-reset: step;
}
.step {
  text-align: center; position: relative;
  padding: 32px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8f0f2;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,79,111,0.1);
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #4EC5C1, #1B6B93);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(27,107,147,0.3);
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #0C3B5E; }
.step p { font-size: 0.9rem; color: #5a7a8a; }

/* Phone mockups */
.step-phone { margin: 16px auto 20px; }
.phone-mockup {
  width: 140px; margin: 0 auto;
  background: #1a2a3a;
  border-radius: 20px;
  padding: 8px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.phone-screen {
  background: #fff;
  border-radius: 14px;
  padding: 12px 10px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Shared mock elements */
.mock-header {
  height: 14px; width: 60%;
  background: linear-gradient(90deg, #0C3B5E, #1B6B93);
  border-radius: 4px;
}
.mock-search {
  height: 20px;
  background: #f0f4f6;
  border-radius: 10px;
  border: 1px solid #e0e8ec;
}
.mock-card {
  height: 36px;
  background: linear-gradient(135deg, #f6fafb, #eef3f6);
  border-radius: 8px;
  border: 1px solid #e8f0f2;
}
.mock-card.short { width: 75%; }
.mock-line {
  height: 8px; width: 80%;
  background: #e8f0f2;
  border-radius: 4px;
}
.mock-line.short { width: 55%; }
.mock-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #4EC5C1, #1B6B93);
  border-radius: 50%;
  margin: 4px auto;
}
.mock-badge {
  height: 24px; width: 70%;
  background: linear-gradient(135deg, #4EC5C1, #1B6B93);
  border-radius: 12px;
  margin: 4px auto 0;
}
.mock-map {
  height: 80px;
  background: linear-gradient(180deg, #d4eaf5 0%, #e6f3eb 50%, #f0f4e8 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.mock-map::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: #E5A825;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(229,168,37,0.3);
}
.mock-progress {
  height: 6px;
  background: #e8f0f2;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.mock-progress::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 65%;
  background: linear-gradient(90deg, #4EC5C1, #1B6B93);
  border-radius: 3px;
}
.mock-check {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #4EC5C1, #27ae60);
  border-radius: 50%;
  margin: 12px auto 4px;
  position: relative;
}
.mock-check::after {
  content: '';
  position: absolute;
  top: 14px; left: 12px;
  width: 18px; height: 10px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}
.mock-btn {
  height: 26px;
  background: linear-gradient(135deg, #E5A825, #d49b20);
  border-radius: 13px;
  margin-top: 4px;
}

/* Screen color accents */
.screen-order .mock-header { background: linear-gradient(90deg, #E5A825, #d49b20); }
.screen-track .mock-header { background: linear-gradient(90deg, #4EC5C1, #1B6B93); }
.screen-done .mock-header { background: linear-gradient(90deg, #27ae60, #2ecc71); }

/* ── Services ── */
.services {
  background: linear-gradient(180deg, #f6fafb 0%, #edf5f8 100%);
}
.services::before {
  content: '';
  position: absolute; top: 80px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229,168,37,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.service-list { display: flex; flex-direction: column; gap: 64px; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e8f0f2;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13,79,111,0.08);
}
.service-row:nth-child(even) .service-visual { order: -1; }
.service-visual {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  position: relative;
}
.service-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; top: 0; left: 0;
  border-radius: 20px;
  transition: transform 0.4s;
}
.service-row:hover .service-visual img {
  transform: scale(1.05);
}
.service-text h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; color: #0C3B5E; }
.service-text p { font-size: 1rem; color: #5a7a8a; line-height: 1.8; margin-bottom: 16px; }
.service-tag {
  display: inline-block;
  padding: 6px 14px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 8px;
}
.tag-order { background: #FFF5E0; color: #B8860B; }
.tag-papalit { background: #E6F7F5; color: #1B8A7A; }
.tag-pahatod { background: #E3F0F7; color: #1B6B93; }
.tag-market { background: #F3E8FD; color: #6610F2; }

/* ── Benefits ── */
.benefits {
  background: linear-gradient(180deg, #f6fafb 0%, #fff 100%);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.benefit-card {
  background: #fff;
  border: 1px solid #e8f0f2;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,79,111,0.08);
}
.benefit-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.benefit-buyer .benefit-icon { background: #FFF3E0; }
.benefit-seller .benefit-icon { background: #E8F5E9; }
.benefit-rider .benefit-icon { background: #E3F0F7; }
.benefit-provider .benefit-icon { background: #F3E8FD; }
.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0C3B5E;
  margin-bottom: 16px;
}
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.benefit-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.85rem;
  color: #3a5a6a;
  line-height: 1.5;
}
.benefit-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  font-weight: 700;
}
.benefit-buyer .benefit-list li::before { color: #F5A623; }
.benefit-seller .benefit-list li::before { color: #43A047; }
.benefit-rider .benefit-list li::before { color: #1B6B93; }
.benefit-provider .benefit-list li::before { color: #6610F2; }

/* ── FAQ ── */
#faq {
  background: linear-gradient(180deg, #fff 0%, #f6fafb 100%);
}
.faq-list {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 8px 32px;
  border: 1px solid #e8f0f2;
  box-shadow: 0 8px 32px rgba(13,79,111,0.05);
}
.faq-item { border-bottom: 1px solid #edf3f5; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 1.05rem; font-weight: 600;
  color: #0C3B5E; text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-question:hover { color: #1B6B93; }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #f0f8fa, #e8f4f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #8ab0c0; flex-shrink: 0; margin-left: 16px;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #4EC5C1, #1B6B93);
  color: #fff;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 0 24px; font-size: 0.95rem;
  color: #5a7a8a; line-height: 1.8;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0C3B5E 0%, #0D4F6F 50%, #1B6B93 100%);
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(78,197,193,0.15) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -40px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(229,168,37,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section .section-title { color: #fff; position: relative; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.75); position: relative; }

/* ── Legal Pages ── */
.legal-page {
  padding-top: 120px;
}
.legal-meta {
  font-size: 0.9rem;
  color: #8ab0c0;
  margin-bottom: 48px;
}
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-size: 1.3rem; font-weight: 700;
  color: #0C3B5E;
  margin: 40px 0 16px;
  padding-top: 16px;
  border-top: 1px solid #edf3f5;
}
.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}
.legal-content h3 {
  font-size: 1.05rem; font-weight: 600;
  color: #1B6B93;
  margin: 24px 0 12px;
}
.legal-content p {
  font-size: 0.95rem;
  color: #4a6a7a;
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 0.95rem;
  color: #4a6a7a;
  line-height: 1.85;
  padding: 6px 0 6px 24px;
  position: relative;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4EC5C1, #1B6B93);
}
.legal-content a {
  color: #1B6B93;
  text-decoration: underline;
  transition: color 0.2s;
}
.legal-content a:hover {
  color: #4EC5C1;
}
.legal-contact {
  background: #f6fafb;
  border: 1px solid #e8f0f2;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
}
.legal-contact p {
  margin-bottom: 4px;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 900px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e8f0f2;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,79,111,0.1);
}
.contact-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.contact-messenger .contact-icon { background: #E8F0FE; }
.contact-facebook .contact-icon { background: #E8F0FE; }
.contact-instagram .contact-icon { background: #FCEEF5; }
.contact-tiktok .contact-icon { background: #F0F0F0; }
.contact-email .contact-icon { background: #E3F0F7; }
.contact-card h3 {
  font-size: 1.2rem; font-weight: 700;
  color: #0C3B5E; margin-bottom: 4px;
}
.contact-handle {
  font-size: 1rem; font-weight: 600;
  color: #1B6B93; margin-bottom: 12px;
}
.contact-desc {
  font-size: 0.9rem; color: #5a7a8a;
  line-height: 1.7; flex: 1;
  margin-bottom: 20px;
}
.contact-action {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem; font-weight: 600;
  text-align: center;
  transition: opacity 0.2s;
}
.contact-messenger .contact-action {
  background: linear-gradient(135deg, #0084FF, #0066CC);
  color: #fff;
}
.contact-facebook .contact-action {
  background: linear-gradient(135deg, #1877F2, #1565D8);
  color: #fff;
}
.contact-email .contact-action {
  background: linear-gradient(135deg, #1B6B93, #0D4F6F);
  color: #fff;
}
.contact-instagram .contact-action {
  background: linear-gradient(135deg, #D62976, #962FBF);
  color: #fff;
}
.contact-tiktok .contact-action {
  background: linear-gradient(135deg, #010101, #333);
  color: #fff;
}
.contact-card:hover .contact-action { opacity: 0.9; }

/* Contact form wrapper */
.contact-form-wrapper {
  max-width: 560px;
  margin-bottom: 16px;
}
.contact-form-wrapper .contact-card {
  width: 100%;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  width: 100%;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d0dfe6;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #f7fbfc;
  color: #0C3B5E;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1B6B93;
}
.contact-form textarea { resize: vertical; }
.contact-form .contact-action {
  border: none;
  cursor: pointer;
  width: 100%;
}
/* ── Footer ── */
.footer {
  background: #091E2F; color: rgba(255,255,255,0.45);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo img { height: 36px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: #4EC5C1; }
.footer-copy { font-size: 0.8rem; width: 100%; text-align: center; margin-top: 24px; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; padding: 24px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 20px;
  }
  .nav-toggle { display: block; }
  .service-row { grid-template-columns: 1fr; padding: 24px 20px; }
  .service-row:nth-child(even) .service-visual { order: 0; }
  .faq-list { padding: 8px 20px; }
  .hero-logo { width: 200px; height: 200px; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
  .mission-grid { grid-template-columns: 1fr; gap: 24px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
