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

/* ============================================================
   CSS Variables
============================================================ */
:root {
  --primary:       #0272B0;
  --primary-dark:  #01528A;
  --primary-light: #E0F2FE;
  --accent:        #06B6D4;
  --dark:          #0F172A;
  --body-text:     #334155;
  --gray:          #64748B;
  --border:        #CBD5E1;
  --light-bg:      #F0F9FF;
  --white:         #FFFFFF;
  --green:         #10B981;
  --wa-green:      #25D366;
  --font:          'Plus Jakarta Sans', sans-serif;
  --shadow-sm:     0 2px 8px rgba(2,114,176,.10);
  --shadow-md:     0 6px 24px rgba(2,114,176,.15);
  --shadow-lg:     0 16px 48px rgba(2,114,176,.20);
  --radius:        14px;
  --radius-sm:     8px;
  --transition:    .3s ease;
}

/* ============================================================
   Reset & Base
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ============================================================
   Typography
============================================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p  { max-width: 68ch; }

/* ============================================================
   Utility Classes
============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--light { background: var(--light-bg); }
.section--blue  { background: var(--primary); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary); }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--primary);
  background: var(--primary-light);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title--white { color: var(--white); }
.section-label--white { background: rgba(255,255,255,.2); color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn--outline-blue {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline-blue:hover {
  background: var(--primary);
  color: var(--white);
}
.btn--wa {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn--wa:hover {
  background: #20BD5A;
  border-color: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   Top Bar
============================================================ */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  padding: .5rem 0;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.top-bar__item:hover { color: var(--accent); }
.top-bar__item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   Header & Navigation
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
  transition: var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}
.header__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.header__logo .logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.header__logo .logo-sub {
  font-size: .7rem;
  color: var(--gray);
  font-weight: 500;
}

/* Nav */
.nav { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  padding: .55rem .9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}
.nav__link:hover, .nav__link.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
}
.nav__dropdown-toggle svg {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--body-text);
  transition: var(--transition);
}
.nav__dropdown-link:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 1.3rem;
}
.nav__dropdown-link svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

.header__cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header__book {
  background: var(--primary);
  color: var(--white);
  padding: .6rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  transition: var(--transition);
  white-space: nowrap;
}
.header__book:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav__link {
  display: block;
  padding: .7rem 0;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__sub { padding-left: 1rem; }
.mobile-nav__sub a {
  display: block;
  padding: .5rem 0;
  color: var(--gray);
  font-size: .88rem;
  font-weight: 500;
}

/* ============================================================
   Hero Section
============================================================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 40%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 8rem;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  padding: .35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--accent); }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero__stat { }
.hero__stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.hero__info-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero__info-card h4 { font-size: 1rem; margin-bottom: .3rem; color: var(--white); }
.hero__info-card p { font-size: .85rem; color: rgba(255,255,255,.75); max-width: none; }
.hero__price-badge {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}
.hero__price-badge .price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.hero__price-badge .price-label { font-size: .75rem; color: var(--gray); }

/* Wave divider */
.wave-divider { display: block; width: 100%; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   Page Banner (non-home pages)
============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner__label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: .75rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================================
   About Section (Home)
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: .9rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-badge__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-badge__icon svg { color: var(--primary); width: 22px; height: 22px; }
.about-badge__text strong { display: block; font-size: 1.1rem; color: var(--dark); }
.about-badge__text span { font-size: .78rem; color: var(--gray); }

.about-content { }
.about-content .section-label { margin-bottom: .75rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--gray); margin-bottom: 1.5rem; }

.pricing-pills { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.pricing-pill {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1.5px solid rgba(2,114,176,.2);
  border-radius: 50px;
  padding: .5rem 1.2rem;
  font-size: .88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pricing-pill svg { width: 14px; height: 14px; }

/* ============================================================
   Features Grid
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: attr(data-num);
  position: absolute;
  top: -.5rem;
  right: .75rem;
  font-size: 5rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  pointer-events: none;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card__icon svg { color: var(--primary); width: 24px; height: 24px; }
.feature-card h4 { font-size: 1rem; margin-bottom: .4rem; color: var(--dark); }
.feature-card p { font-size: .88rem; color: var(--gray); max-width: none; line-height: 1.6; }

/* ============================================================
   Mission / Vision
============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mv-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.mv-card__icon svg { color: var(--primary); width: 28px; height: 28px; }
.mv-card h3 { margin-bottom: .75rem; }
.mv-card p { color: var(--gray); font-size: .95rem; max-width: none; }

/* ============================================================
   Services Grid
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.services-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-card__img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--light-bg);
  padding: 1.5rem;
  transition: transform .4s ease;
}
.service-card:hover .service-card__img { transform: scale(1.04); }
.service-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { font-size: 1.15rem; margin-bottom: .6rem; color: var(--dark); }
.service-card__body p { font-size: .9rem; color: var(--gray); flex: 1; margin-bottom: 1.25rem; max-width: none; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}
.service-card__link svg { width: 16px; height: 16px; }
.service-card__link:hover { gap: .7rem; }

/* Service Detail Page */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-detail__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--light-bg);
  padding: 2rem;
  text-align: center;
}
.service-detail__img img {
  max-height: 300px;
  margin: 0 auto;
  object-fit: contain;
}
.service-list { margin: 1.25rem 0; }
.service-list li {
  padding: .5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.service-list li strong { color: var(--dark); }

.process-steps { margin-top: 1.5rem; }
.process-step {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step__content { }
.process-step__content h5 { font-size: .95rem; color: var(--dark); margin-bottom: .2rem; }
.process-step__content p { font-size: .88rem; color: var(--gray); max-width: none; }

/* ============================================================
   WhatsApp Form
============================================================ */
.wa-form-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0;
}
.wa-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wa-form-intro { color: var(--white); }
.wa-form-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.wa-form-intro p { color: rgba(255,255,255,.8); max-width: none; }
.wa-form-intro .wa-icon {
  width: 80px;
  height: 80px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.wa-form-intro .wa-icon svg { color: var(--white); width: 42px; height: 42px; }

.wa-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.wa-form h3 { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--dark); }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .3rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2,114,176,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   Contact Section
============================================================ */
.contact-section { padding: 4rem 0; background: var(--light-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--gray); margin-bottom: 1.5rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { color: var(--primary); width: 22px; height: 22px; }
.contact-card__body { }
.contact-card__body h5 { font-size: .85rem; color: var(--gray); font-weight: 500; margin-bottom: .2rem; }
.contact-card__body a, .contact-card__body p { font-size: .95rem; color: var(--dark); font-weight: 600; max-width: none; }
.contact-card__body a:hover { color: var(--primary); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   Apply Now Form
============================================================ */
.apply-section { padding: 5rem 0; }
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.apply-info h2 { margin-bottom: 1rem; }
.apply-info p { color: var(--gray); margin-bottom: 1.5rem; }
.apply-checklist { }
.apply-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .6rem 0;
  font-size: .92rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.apply-checklist li:last-child { border-bottom: none; }
.apply-checklist li svg { color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; }

.apply-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
}
.apply-form-card h3 { font-size: 1.35rem; margin-bottom: 1.5rem; color: var(--dark); }

/* ============================================================
   Footer
============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand { }
.footer__brand .logo-wrap { margin-bottom: 1rem; }
.footer__brand .logo-wrap img { height: 50px; }
.footer__brand p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.6); max-width: 38ch; }
.footer__social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.footer__social a:hover { background: var(--primary); color: var(--white); }
.footer__social svg { width: 16px; height: 16px; }

.footer__col h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer__links a:hover { color: var(--accent); padding-left: .3rem; }
.footer__links a svg { width: 12px; height: 12px; flex-shrink: 0; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .85rem;
}
.footer__contact-item svg { color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; margin-top: .2rem; }
.footer__contact-item span { color: rgba(255,255,255,.65); }
.footer__contact-item a { color: rgba(255,255,255,.65); }
.footer__contact-item a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   Floating Buttons
============================================================ */
.floating-btns {
  position: fixed;
  right: 1.25rem;
  bottom: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  color: var(--white);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-btn--wa { background: var(--wa-green); }
.float-btn--call { background: var(--primary); }
.float-btn svg { width: 26px; height: 26px; }
.float-tooltip {
  position: absolute;
  right: 64px;
  background: var(--dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ============================================================
   Privacy Policy
============================================================ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}
.policy-content h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; color: var(--dark); }
.policy-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; color: var(--dark); }
.policy-content p { color: var(--gray); margin-bottom: 1rem; max-width: none; }
.policy-content ul { margin: .75rem 0 1rem 1.5rem; list-style: disc; }
.policy-content ul li { color: var(--gray); margin-bottom: .4rem; font-size: .95rem; }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: span 2; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header__book { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .wa-form-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > :first-child { grid-column: span 1; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .top-bar__group:last-child { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 0 5rem; }
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-pills { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   Animations
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease forwards; }
.fade-up-delay-1 { animation-delay: .15s; opacity: 0; }
.fade-up-delay-2 { animation-delay: .3s; opacity: 0; }
.fade-up-delay-3 { animation-delay: .45s; opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
