*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --p:   #f05c62;
  --p2:  #d94a50;
  --s:   #2f3440;
  --s2:  #1e2330;
  --w:   #ffffff;
  --lt:  #f8f8f9;
  --bd:  #e8eaee;
  --mu:  #7a8394;
  --r:   14px;
  --sh:  0 16px 56px rgba(0,0,0,.11);
}

html { scroll-behavior: smooth; }

/* ─── NAVBAR ────────────────────────────────── */
.ctp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.ctp-logo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--s);
  letter-spacing: .5px;
  text-decoration: none;
}
.ctp-logo span { color: var(--p); }
.ctp-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.ctp-nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--s);
  text-decoration: none;
  letter-spacing: .3px;
  position: relative;
  transition: color .2s;
}
.ctp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--p);
  border-radius: 2px;
  transition: width .25s;
}
.ctp-nav-links a:hover { color: var(--p); }
.ctp-nav-links a:hover::after,
.ctp-nav-links a.active::after { width: 100%; }
.ctp-nav-links a.active { color: var(--p); }
.ctp-nav-cta {
  padding: 10px 26px;
  background: var(--p);
  color: var(--w);
  font-size: .9rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(240,92,98,.3);
}
.ctp-nav-cta:hover {
  background: var(--p2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,92,98,.4);
}

/* ─── HERO HEADER ───────────────────────────── */
.ctp-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* margin-top: 72px; */
}
.ctp-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80') center/cover no-repeat;
}
.ctp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(47,52,64,.92) 0%, rgba(47,52,64,.55) 60%, rgba(240,92,98,.18) 100%);
}
.ctp-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 90px;
  background: var(--lt);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.ctp-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 1;
}
.ctp-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 780px;
}
.ctp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,92,98,.2);
  border: 1px solid rgba(240,92,98,.5);
  color: #ffb3b6;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeUp .6s .1s both;
}
.ctp-hero-badge i { color: var(--p); font-size: .85rem; }
.ctp-hero-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--w);
  line-height: 1.08;
  margin-bottom: 16px;
  animation: fadeUp .6s .25s both;
}
.ctp-hero-title span { color: var(--p); }
.ctp-hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 480px;
  animation: fadeUp .6s .4s both;
}

/* ─── STAT STRIP ─────────────────────────────── */
.ctp-stats {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  transform: translateY(-44px);
  position: relative;
  z-index: 10;
  animation: fadeUp .6s .55s both;
}
.ctp-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--w);
  border-radius: var(--r);
  box-shadow: var(--sh);
  overflow: hidden;
}
.ctp-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--bd);
  transition: background .25s;
}
.ctp-stat:last-child { border-right: none; }
.ctp-stat:hover { background: #fff6f6; }
.ctp-stat-icon {
  width: 48px; height: 48px;
  background: rgba(240,92,98,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--p);
  font-size: 1.2rem;
  transition: background .25s, transform .25s;
}
.ctp-stat:hover .ctp-stat-icon {
  background: var(--p);
  color: var(--w);
  transform: scale(1.1);
}
.ctp-stat-val {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--s);
  line-height: 1;
  margin-bottom: 4px;
}
.ctp-stat-lbl {
  font-size: .82rem;
  font-weight: 500;
  color: var(--mu);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ─── SECTION LABEL ─────────────────────────── */
.ctp-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.ctp-section-label span {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
padding-top: 30px;
  color: var(--p);
}

/* ─── MAIN SECTION ──────────────────────────── */
.ctp-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.ctp-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: start;
}

/* ─── INFO CARD ─────────────────────────────── */
.ctp-info-card {
  background: var(--s);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.ctp-info-card-top {
  position: relative;
  padding: 44px 40px 36px;
  overflow: hidden;
}
.ctp-info-card-top::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(240,92,98,.12);
  border: 2px solid rgba(240,92,98,.2);
}
.ctp-info-card-top::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(240,92,98,.08);
}
.ctp-info-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--w);
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.ctp-info-title span { color: var(--p); }
.ctp-info-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.ctp-details {
  padding: 28px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.ctp-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ctp-detail-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(240,92,98,.15);
  border: 1px solid rgba(240,92,98,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p);
  font-size: 1rem;
  transition: background .2s, transform .2s;
}
.ctp-detail-row:hover .ctp-detail-icon {
  background: var(--p);
  color: var(--w);
  transform: scale(1.08);
}
.ctp-detail-text strong {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 3px;
}
.ctp-detail-text span {
  font-size: .97rem;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}
.ctp-socials-strip {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ctp-socials-strip p {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ctp-socials-row { display: flex; gap: 10px; }
.ctp-soc {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.ctp-soc:hover {
  background: var(--p);
  color: var(--w);
  border-color: var(--p);
  transform: translateY(-3px);
}

/* ─── FORM CARD ─────────────────────────────── */
.ctp-form-card {
  background: var(--w);
  border-radius: var(--r);
  padding: 50px 48px;
  box-shadow: var(--sh);
}
.ctp-form-head { margin-bottom: 32px; }
.ctp-form-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--s);
  line-height: 1.12;
  margin-bottom: 10px;
}
.ctp-form-title span { color: var(--p); }
.ctp-form-sub { font-size: .97rem; color: var(--mu); line-height: 1.6; }
.ctp-form-bar { width: 48px; height: 4px; background: var(--p); border-radius: 4px; margin: 16px 0 20px; }

.ctp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ctp-fld { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.ctp-fld label { font-size: .85rem; font-weight: 700; color: var(--s); letter-spacing: .2px; }
.ctp-fld label sup { color: var(--p); font-size: .8rem; }
.ctp-fld input,
.ctp-fld textarea,
.ctp-fld select {
  width: 100%;
  padding: 13px 16px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: .96rem;
  color: var(--s);
  background: var(--lt);
  border: 1.5px solid var(--bd);
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: none;
  appearance: none;
}
.ctp-fld input::placeholder,
.ctp-fld textarea::placeholder { color: #b0b8c4; }
.ctp-fld input:focus,
.ctp-fld textarea:focus,
.ctp-fld select:focus {
  border-color: var(--p);
  background: var(--w);
  box-shadow: 0 0 0 3.5px rgba(240,92,98,.11);
}
.ctp-fld textarea { height: 108px; }

.ctp-check-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 28px; }
.ctp-check-row input[type="checkbox"] { width: 17px; height: 17px; min-width: 17px; accent-color: var(--p); cursor: pointer; margin-top: 2px; }
.ctp-check-row label { font-size: .88rem; color: var(--mu); line-height: 1.55; cursor: pointer; }
.ctp-check-row label a { color: var(--p); text-decoration: none; font-weight: 600; }

.ctp-submit-row { display: flex; gap: 16px; align-items: center; }
.ctp-btn {
  flex: 1;
  padding: 15px 20px;
  background: var(--p);
  color: var(--w);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 28px rgba(240,92,98,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.ctp-btn:hover { background: var(--p2); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(240,92,98,.42); }
.ctp-btn:active { transform: translateY(0); }
.ctp-btn-ghost {
  padding: 15px 22px;
  background: transparent;
  color: var(--s);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  border: 1.5px solid var(--bd);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.ctp-btn-ghost:hover { border-color: var(--p); color: var(--p); background: rgba(240,92,98,.04); }

.ctp-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(240,92,98,.07);
  border: 1.5px solid rgba(240,92,98,.25);
  border-radius: 10px;
  color: var(--p);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 20px;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.ctp-success.show { display: flex; }

/* ─── MAP SECTION ───────────────────────────── */
.ctp-map-section {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 40px;
}
.ctp-map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.ctp-map-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--s);
  line-height: 1.15;
}
.ctp-map-title span { color: var(--p); }
.ctp-map-addr { font-size: .92rem; color: var(--mu); line-height: 1.6; max-width: 340px; text-align: right; }
.ctp-map-addr i { color: var(--p); margin-right: 5px; }
.ctp-map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 3px solid var(--w);
}
.ctp-map-wrap iframe { width: 100%; height: 420px; display: block; border: none; }

.ctp-map-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.ctp-map-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--w);
  border: 1.5px solid var(--bd);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--s);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: border-color .2s, color .2s, box-shadow .2s, transform .2s;
  font-family: 'DM Sans', Arial, sans-serif;
}
.ctp-map-pill i { color: var(--p); font-size: .9rem; }
.ctp-map-pill:hover { border-color: var(--p); color: var(--p); box-shadow: 0 4px 16px rgba(240,92,98,.18); transform: translateY(-2px); }

/* ─── ANIMATIONS ────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ctp-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.ctp-reveal.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ────────────────────────────── */
@media(max-width: 960px) {
  .ctp-nav { padding: 0 28px; }
  .ctp-nav-links { display: none; }
  .ctp-hero-content { padding: 0 40px 72px; }
  .ctp-hero-title { font-size: 2.6rem; }
  .ctp-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .ctp-stat:nth-child(2) { border-right: none; }
  .ctp-grid { grid-template-columns: 1fr; }
  .ctp-form-card { padding: 36px 28px; }
  .ctp-main { padding: 0 20px 60px; }
  .ctp-stats { padding: 0 20px; }
  .ctp-map-section { padding: 0 20px; }
  .ctp-map-head { flex-direction: column; align-items: flex-start; }
  .ctp-map-addr { text-align: left; }
}
@media(max-width: 600px) {
  .ctp-hero { height: 360px; }
  .ctp-hero-title { font-size: 2.1rem; }
  .ctp-row { grid-template-columns: 1fr; }
  .ctp-submit-row { flex-direction: column; }
  .ctp-btn, .ctp-btn-ghost { width: 100%; }
  .ctp-info-card-top, .ctp-details { padding-left: 24px; padding-right: 24px; }
  .ctp-socials-strip { flex-direction: column; align-items: flex-start; }
}