/* ══════════ BLOBS ══════════ */

.blob-wrap {

  position: absolute;

  inset: 0;

  overflow: hidden;

  pointer-events: none;

}


.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Overlay on top of map */
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  /* glass dark overlay */
  backdrop-filter: blur(6px);
}

.light {

  color: var(--accent);

}

/* Optional: make map interactive only when clicked */
.map-overlay:hover {
  background: rgba(0, 0, 0, 0.35);
}

.blob {

  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  opacity: 0.13;

  animation: blobDrift 12s ease-in-out infinite alternate;

}



.blob-1 {

  width: 520px;

  height: 520px;

  background: var(--blue);

  top: -120px;

  left: -100px;

  animation-delay: 0s;

}



.blob-2 {

  width: 400px;

  height: 400px;

  background: var(--pink);

  top: 60px;

  right: -80px;

  animation-delay: -3s;

  animation-duration: 10s;

}



.blob-3 {

  width: 300px;

  height: 300px;

  background: var(--blue);

  bottom: -60px;

  left: 30%;

  animation-delay: -6s;

  animation-duration: 14s;

}



.blob-4 {

  width: 250px;

  height: 250px;

  background: var(--pink);

  bottom: -40px;

  right: 20%;

  animation-delay: -2s;

  animation-duration: 9s;

}



@keyframes blobDrift {

  0% {

    transform: translate(0, 0) scale(1);

  }



  100% {

    transform: translate(40px, 30px) scale(1.08);

  }

}



.dot-grid {

  position: absolute;

  inset: 0;

  background-image: radial-gradient(rgba(30, 57, 143, 0.12) 1.5px,

      transparent 1.5px);

  background-size: 32px 32px;

  pointer-events: none;

}



/* ══════════ PAGE HERO ══════════ */

#page-hero {

  min-height: 60vh;

  position: relative;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: var(--white);

  padding: 9rem 5% 5rem;

}



.page-hero-inner {

  position: relative;

  z-index: 2;

  max-width: 1280px;

  width: 100%;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  align-items: center;

}



.page-hero-title {

  font-family: var(--font-display);

  font-size: clamp(2.4rem, 4.5vw, 4rem);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -0.03em;

  color: var(--dark);

}



.page-hero-title .grad-text {

  background: var(--grad);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.page-hero-sub {

  font-size: 1.05rem;

  color: #666;

  line-height: 1.75;

  margin: 1.2rem 0 2rem;

  max-width: 500px;

}



/* Hero right — contact card */

/* ===== PAGE HERO VISUAL ===== */

.page-hero-visual {

  position: relative;

  width: 100%;

  min-height: 380px;

  display: flex;

  align-items: stretch;

}



.ct-hero-card {

  position: relative;

  width: 100%;

  min-height: 380px;

  border-radius: 28px;

  background: var(--dark);

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 2.2rem;

  overflow: hidden;

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);

  gap: 1.5rem;

}



.ct-glow {

  position: absolute;

  border-radius: 50%;

  filter: blur(60px);

  pointer-events: none;

}



.ct-glow-pink {

  width: 260px;

  height: 260px;

  background: var(--pink);

  opacity: 0.12;

  top: -70px;

  right: -70px;

}



.ct-glow-blue {

  width: 200px;

  height: 200px;

  background: var(--blue);

  opacity: 0.10;

  bottom: -40px;

  left: -40px;

}



.ct-hero-top,

.ct-info-items,

.ct-resp-badge {

  position: relative;

  z-index: 1;

}



.ct-hero-top {

  display: flex;

  flex-direction: column;

  gap: 0.5rem;

}



.ct-hero-icon {

  width: 64px;

  height: 64px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.08);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 2rem;

}



.ct-hero-title {

  font-family: var(--font-display);

  font-size: 1.5rem;

  font-weight: 800;

  color: #fff;

  line-height: 1.2;

}



.ct-hero-sub {

  font-size: 0.95rem;

  color: rgba(255, 255, 255, 0.68);

  line-height: 1.7;

  max-width: 420px;

}



.ct-info-items {

  display: flex;

  flex-direction: column;

  gap: 0.85rem;

}



.ct-info-row {

  display: flex;

  align-items: center;

  gap: 0.9rem;

  /*background: rgba(255, 255, 255, 0.07);*/

  border-radius: 14px;

  padding: 0.95rem 1rem;

  /*border: 1px solid rgba(255, 255, 255, 0.1);*/

  min-width: 0;

}



.ct-info-icon {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: var(--grad);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1rem;

  flex-shrink: 0;

  color: #fff;

}



.ct-info-text {

  min-width: 0;

}



.ct-info-text strong {

  display: block;

  font-family: var(--font-mono);

  font-size: 0.62rem;

  letter-spacing: 0.1em;

  color: rgba(255, 255, 255, 0.42);

  margin-bottom: 0.18rem;

}



.ct-info-text span {

  display: block;

  font-size: 0.92rem;

  color: rgba(255, 255, 255, 0.88);

  line-height: 1.5;

  word-break: break-word;

}



.ct-resp-badge {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  align-self: flex-start;

  background: rgba(34, 197, 94, 0.15);

  border: 1px solid rgba(34, 197, 94, 0.3);

  border-radius: 50px;

  padding: 0.55rem 1rem;

  font-family: var(--font-mono);

  font-size: 0.68rem;

  color: #22c55e;

  letter-spacing: 0.08em;

  line-height: 1.4;

  flex-wrap: wrap;

}



.ct-resp-dot {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: #22c55e;

  animation: pulseDot 1.5s ease-in-out infinite;

  flex-shrink: 0;

}



@keyframes pulseDot {



  0%,

  100% {

    opacity: 1;

    transform: scale(1);

  }



  50% {

    opacity: 0.5;

    transform: scale(1.4);

  }

}



/* ══════════ CONTACT CHANNELS ══════════ */

.ct-section {

  padding: 6rem 5%;

  position: relative;

  overflow: hidden;

}



.ct-section:nth-child(odd) {

  background: var(--white);

}



.ct-section:nth-child(even) {

  background: var(--off-white);

}



.ct-inner {

  max-width: 1280px;

  margin: 0 auto;

}



.ct-center {

  display: flex;

  flex-direction: column;

  align-items: center;

  /* horizontal center */

  justify-content: center;

  /* vertical alignment (if height exists) */

  text-align: center;



  max-width: 700px;

  margin: 0 auto 3.5rem;

  padding: 0 1rem;

  /* prevents edge touching on mobile */

}



/* Optional: better spacing between elements */

.ct-center .section-label {

  margin-bottom: 0.6rem;

}



.ct-center .section-title {

  margin-bottom: 0.8rem;

}



.ct-center .section-sub {

  margin: 0;

  max-width: 600px;

  /* tighter readable width */

}



.channel-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;

}



.channel-card {

  border-radius: 22px;

  padding: 2rem 1.6rem;

  position: relative;

  overflow: hidden;

  transition:

    transform 0.3s,

    box-shadow 0.3s,

    border-color 0.3s;



  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 0.5rem;

}



.channel-card::after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: var(--grad);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s;

}



.channel-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 20px 50px rgba(30, 57, 143, 0.12);

}



.channel-card:hover::after {

  transform: scaleX(1);

}



.cc-light {

  background: #fff;

  border: 1.5px solid rgba(30, 57, 143, 0.09);

}



.cc-dark {

  background: var(--dark);

}



.cc-grad {

  background: var(--grad);

}



.channel-icon {

  width: 54px;

  height: 54px;

  border-radius: 14px;

  background: var(--grad);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.5rem;

  color: #fff;

  box-shadow: 0 6px 20px rgba(199, 0, 126, 0.28);

  margin-bottom: 0.8rem;

}



.cc-dark .channel-icon,

.cc-grad .channel-icon {

  background: rgba(255, 255, 255, 0.15);

  box-shadow: none;

}



.channel-label {

  font-family: var(--font-mono);

  font-size: 0.62rem;

  letter-spacing: 0.12em;

  margin-bottom: 0.2rem;

}



.cc-light .channel-label {

  color: var(--pink);

}



.cc-dark .channel-label,

.cc-grad .channel-label {

  color: rgba(255, 255, 255, 0.5);

}



.channel-val {

  font-family: var(--font-display);

  font-size: 1rem;

  font-weight: 800;

}



.cc-light .channel-val {

  color: var(--dark);

}



.cc-dark .channel-val,

.cc-grad .channel-val {

  color: #fff;

}



.channel-desc {

  font-size: 0.78rem;

  line-height: 1.55;

  margin-top: 0.3rem;

}



.cc-light .channel-desc {

  color: #888;

}



.cc-dark .channel-desc,

.cc-grad .channel-desc {

  color: rgba(255, 255, 255, 0.55);

}



.channel-action {

  margin-top: auto;

  padding-top: 1rem;

}



.ch-btn {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  padding: 0.55rem 1.2rem;

  border-radius: 50px;

  font-family: var(--font-display);

  font-size: 0.78rem;

  font-weight: 700;

  border: none;



  transition: all 0.2s;

}



.cc-light .ch-btn {

  background: var(--grad);

  color: #fff;

  box-shadow: 0 4px 16px rgba(199, 0, 126, 0.3);

}



.cc-dark .ch-btn,

.cc-grad .ch-btn {

  background: rgba(255, 255, 255, 0.15);

  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.2);

}



.ch-btn:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

}



/* ══════════ MAIN CONTACT FORM SECTION ══════════ */

#main-contact {

  background: var(--dark);

  padding: 6rem 5%;

  position: relative;

  overflow: hidden;

}



.mc-blob-1 {

  position: absolute;

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(199, 0, 126, 0.22), transparent 70%);

  top: -150px;

  right: -100px;

  pointer-events: none;

}



.mc-blob-2 {

  position: absolute;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(30, 57, 143, 0.3), transparent 70%);

  bottom: -100px;

  left: -80px;

  pointer-events: none;

}



.mc-inner {

  max-width: 1280px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1.4fr;

  gap: 5rem;

  align-items: start;

  position: relative;

  z-index: 1;

}



/* Left text */

.mc-left .section-label {

  color: rgba(199, 0, 126, 0.8);

}



.mc-left .section-title {

  color: #fff;

}



.mc-left .section-sub {

  color: rgba(255, 255, 255, 0.55);

}



.mc-info-list {

  margin-top: 2rem;

  display: flex;

  flex-direction: column;

  gap: 1rem;

}



.mc-info-row {

  display: flex;

  align-items: center;

  gap: 1rem;

  /*background: rgba(255, 255, 255, 0.05);*/

  /*border: 1px solid rgba(255, 255, 255, 0.1);*/

  border-radius: 14px;

  padding: 1rem 1.2rem;

}



.mc-info-icon {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: var(--grad);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1rem;

  flex-shrink: 0;

}



.mc-info-text strong {

  display: block;

  font-family: var(--font-mono);

  font-size: 0.6rem;

  letter-spacing: 0.1em;

  color: rgba(255, 255, 255, 0.35);

  margin-bottom: 0.2rem;

}



.mc-info-text span {

  font-size: 0.88rem;

  color: rgba(255, 255, 255, 0.8);

}



/* WhatsApp CTA special */

.wa-cta {

  margin-top: 2rem;

  border-radius: 18px;

  padding: 1.5rem;

  background: linear-gradient(135deg,

      rgba(37, 211, 102, 0.15),

      rgba(37, 211, 102, 0.05));

  border: 1.5px solid rgba(37, 211, 102, 0.25);

  display: flex;

  align-items: center;

  gap: 1rem;

}



.wa-cta-icon {

  width: 52px;

  height: 52px;

  border-radius: 50%;

  background: #25d366;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.5rem;

  flex-shrink: 0;

  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);

}



.wa-cta-text strong {

  display: block;

  font-family: var(--font-display);

  font-size: 0.95rem;

  font-weight: 800;

  color: #fff;

  margin-bottom: 0.2rem;

}



.wa-cta-text span {

  font-size: 0.78rem;

  color: rgba(255, 255, 255, 0.5);

  line-height: 1.45;

}



.wa-btn {

  margin-top: 0.8rem;

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  background: #25d366;

  color: #fff;

  border: none;

  padding: 0.65rem 1.4rem;

  border-radius: 50px;

  font-family: var(--font-display);

  font-size: 0.82rem;

  font-weight: 700;



  transition: all 0.2s;

  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);

}



.wa-btn:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);

}



/* Form */

.mc-form-wrap {

  background: rgba(255, 255, 255, 0.05);

  border: 1.5px solid rgba(255, 255, 255, 0.1);

  border-radius: 28px;

  padding: 2.8rem;

  backdrop-filter: blur(10px);

}



.mc-form-title {

  font-family: var(--font-display);

  font-size: 1.3rem;

  font-weight: 800;

  color: #fff;

  margin-bottom: 0.4rem;

}



.mc-form-title span {

  background: var(--grad-rev-new);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.mc-form-sub {

  font-size: 0.8rem;

  color: rgba(255, 255, 255, 0.35);

  margin-bottom: 2rem;

}



.form-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 1rem;

  margin-bottom: 1rem;

}



.form-group {

  display: flex;

  flex-direction: column;

  gap: 0.4rem;

  margin-bottom: 1rem;

}



.form-group label {

  font-family: var(--font-mono);

  font-size: 0.6rem;

  letter-spacing: 0.12em;

  color: rgba(255, 255, 255, 0.45);

}



.form-group input,

.form-group select,

.form-group textarea {

  background: rgba(255, 255, 255, 0.07);

  border: 1.5px solid rgba(255, 255, 255, 0.12);

  border-radius: 12px;

  padding: 0.85rem 1rem;

  font-family: var(--font-body);

  font-size: 0.9rem;

  color: #fff;

  outline: none;

  transition:

    border-color 0.25s,

    background 0.25s;

  width: 100%;

}



.form-group input::placeholder,

.form-group textarea::placeholder {

  color: rgba(255, 255, 255, 0.22);

}



.form-group select option {

  background: var(--dark);

  color: #fff;

}



.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

  border-color: var(--pink);

  background: rgba(255, 255, 255, 0.1);

}



.form-group textarea {

  resize: vertical;

  min-height: 90px;

}



.ct-submit {

  width: 100%;

  background: var(--grad);

  color: #fff;

  border: none;

  padding: 1rem;

  border-radius: 50px;

  font-family: var(--font-display);

  font-weight: 700;

  font-size: 1rem;



  box-shadow: 0 6px 28px rgba(199, 0, 126, 0.4);

  transition:

    transform 0.22s,

    box-shadow 0.22s;

  margin-top: 0.5rem;

}



.ct-submit:hover {

  transform: translateY(-3px);

  box-shadow: 0 12px 40px rgba(199, 0, 126, 0.55);

}



/* ══════════ OFFICE LOCATIONS ══════════ */

.office-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;

  margin-top: 2rem;

}



.office-card {

  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  border: 1.5px solid rgba(30, 57, 143, 0.09);

  transition:

    transform 0.3s,

    box-shadow 0.3s;



}



.office-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 20px 50px rgba(30, 57, 143, 0.12);

}



.office-card-top {

  height: 140px;

  background: var(--dark);

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  overflow: hidden;

}



.office-card-map-placeholder {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  text-align: center;

}



.office-map-icon {

  font-size: 2.2rem;

}



.office-map-city-tag {

  font-family: var(--font-mono);

  font-size: 0.62rem;

  letter-spacing: 0.1em;

  color: rgba(255, 255, 255, 0.45);

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50px;

  padding: 0.25rem 0.75rem;

}



.office-card-top-glow {

  position: absolute;

  border-radius: 50%;

  filter: blur(50px);

  pointer-events: none;

}



.office-card-body {

  padding: 1.5rem;

}



.office-city-name {

  font-family: var(--font-display);

  font-size: 1.05rem;

  font-weight: 800;

  color: var(--dark);

  margin-bottom: 0.2rem;

}



.office-type-badge {

  font-family: var(--font-mono);

  font-size: 0.58rem;

  letter-spacing: 0.1em;

  color: var(--pink);

  margin-bottom: 0.8rem;

  display: block;

}



.office-addr {

  font-size: 0.82rem;

  color: #888;

  line-height: 1.6;

  margin-bottom: 1rem;

}



.office-details {

  display: flex;

  flex-direction: column;

  gap: 0.4rem;

}



.od-row {

  display: flex;

  align-items: center;

  gap: 0.5rem;

  font-size: 0.78rem;

  color: #777;

}



.od-icon {

  width: 22px;

  height: 22px;

  border-radius: 50%;

  background: rgba(30, 57, 143, 0.07);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0.65rem;

  flex-shrink: 0;

}



.office-card-footer {

  padding: 0.8rem 1.5rem 1.2rem;

}



.office-dir-btn {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  background: var(--grad);

  color: #fff;

  border: none;

  padding: 0.55rem 1.2rem;

  border-radius: 50px;

  font-family: var(--font-display);

  font-size: 0.75rem;

  font-weight: 700;



  transition: all 0.2s;

  box-shadow: 0 4px 14px rgba(199, 0, 126, 0.3);

}



.office-dir-btn:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 24px rgba(199, 0, 126, 0.45);

}



/* ══════════ MAP SECTION ══════════ */

.map-section {

  background: var(--off-white);

  padding: 5rem 5%;

}



.map-inner {

  max-width: 1280px;

  margin: 0 auto;

}



.map-wrap {

  border-radius: 26px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);

  border: 1.5px solid rgba(30, 57, 143, 0.09);

  height: 480px;

  position: relative;

  background: var(--dark);

}



.map-placeholder {

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 1rem;

  text-align: center;

  position: relative;

  overflow: hidden;

}



.map-placeholder-glow {

  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  pointer-events: none;

}



.map-pin-icon {

  font-size: 4rem;

  position: relative;

  z-index: 1;

  animation: mapPinBounce 2.5s ease-in-out infinite;

}



@keyframes mapPinBounce {



  0%,

  100% {

    transform: translateY(0);

  }



  50% {

    transform: translateY(-12px);

  }

}



.map-placeholder-text {

  position: relative;

  z-index: 1;

}



.map-placeholder-title {

  font-family: var(--font-display);

  font-size: 1.4rem;

  font-weight: 800;

  color: #fff;

  margin-bottom: 0.4rem;

}



.map-placeholder-sub {

  font-size: 0.85rem;

  color: rgba(255, 255, 255, 0.4);

  margin-bottom: 1.2rem;

}



.map-locations-row {

  display: flex;

  gap: 1rem;

  flex-wrap: wrap;

  justify-content: center;

  position: relative;

  z-index: 1;

}



.map-loc-chip {

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 50px;

  padding: 0.4rem 1.1rem;

  font-family: var(--font-mono);

  font-size: 0.7rem;

  color: rgba(255, 255, 255, 0.7);

  letter-spacing: 0.06em;

}



.map-open-btn {

  background: var(--grad);

  color: #fff;

  border: none;

  padding: 0.75rem 2rem;

  border-radius: 50px;

  font-family: var(--font-display);

  font-weight: 700;

  font-size: 0.88rem;



  box-shadow: 0 6px 24px rgba(199, 0, 126, 0.35);

  transition: all 0.2s;

  position: relative;

  z-index: 1;

}



.map-open-btn:hover {

  transform: translateY(-3px);

  box-shadow: 0 12px 36px rgba(199, 0, 126, 0.5);

}



/* ══════════ FAQ ══════════ */

.faq-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 1.2rem;

  margin-top: 2rem;

}



.faq-mini-card {

  background: #fff;

  border-radius: 18px;

  padding: 1.5rem;

  border: 1.5px solid rgba(30, 57, 143, 0.09);

  transition: border-color 0.25s;



}



.faq-mini-card:hover {

  border-color: rgba(199, 0, 126, 0.2);

}



.fmq {

  font-family: var(--font-display);

  font-size: 0.92rem;

  font-weight: 800;

  color: var(--dark);

  margin-bottom: 0.5rem;

  display: flex;

  align-items: center;

  gap: 0.6rem;

}



.fmq::before {

  content: "Q";

  width: 22px;

  height: 22px;

  border-radius: 50%;

  background: var(--grad);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0.6rem;

  font-weight: 900;

  flex-shrink: 0;

}



.fma {

  font-size: 0.82rem;

  color: #777;

  line-height: 1.6;

}



/* ══════════ CTA BAND ══════════ */

.pricing-band {

  background: var(--grad);

  padding: 4.5rem 5%;

  text-align: center;

}



.pricing-band h2 {

  font-family: var(--font-display);

  font-size: clamp(1.7rem, 3vw, 2.6rem);

  font-weight: 800;

  color: #fff;

  letter-spacing: -0.025em;

  line-height: 1.15;

  margin-bottom: 0.8rem;

}



.pricing-band p {

  color: rgba(255, 255, 255, 0.75);

  font-size: 1rem;

  margin-bottom: 2rem;

  line-height: 1.6;

}



.pricing-band-btns {

  display: flex;

  gap: 1rem;

  justify-content: center;

  flex-wrap: wrap;

}



.pb-btn-white {

  background: #fff;

  color: var(--pink);

  border: none;

  padding: 0.9rem 2.2rem;

  border-radius: 50px;

  font-family: var(--font-display);

  font-weight: 700;

  font-size: 0.95rem;



  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);

  transition:

    transform 0.2s,

    box-shadow 0.2s;

}



.pb-btn-white:hover {

  transform: translateY(-3px);

  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);

}



.pb-btn-outline {

  background: transparent;

  color: #fff;

  border: 2px solid rgba(255, 255, 255, 0.55);

  padding: 0.9rem 2.2rem;

  border-radius: 50px;

  font-family: var(--font-display);

  font-weight: 700;

  font-size: 0.95rem;



  transition: all 0.2s;

}



.pb-btn-outline:hover {

  background: rgba(255, 255, 255, 0.12);

  border-color: #fff;

}

/*============ company  ============== */

#main-company-contact {
  position: relative;
  padding: 7rem 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #070712 0%, #05050d 100%);
}

.loc-blob-pink {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 0, 126, 0.22), transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.loc-blob-blue {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 57, 143, 0.30), transparent 70%);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.loc-wrap {
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.loc-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.loc-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--pink);
  margin-bottom: 0.9rem;
}

.loc-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1rem;
}

.loc-title span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loc-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}

.loc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.loc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(199, 0, 126, 0.28);
}

.loc-card-top {
  height: 150px;
  background: linear-gradient(135deg, rgba(11, 37, 69, 1) 0%, rgba(30, 57, 143, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.loc-top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  z-index: 2;
}

.loc-top-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.loc-top-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
}

.loc-top-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.loc-top-glow-a {
  width: 220px;
  height: 220px;
  background: rgba(30, 57, 143, 0.22);
  top: -70px;
  left: -70px;
}

.loc-top-glow-b {
  width: 180px;
  height: 180px;
  background: rgba(199, 0, 126, 0.18);
  bottom: -60px;
  right: -60px;
}

.loc-top-glow-c {
  width: 220px;
  height: 220px;
  background: rgba(199, 0, 126, 0.20);
  top: -70px;
  right: -70px;
}

.loc-top-glow-d {
  width: 170px;
  height: 170px;
  background: rgba(30, 57, 143, 0.18);
  bottom: -50px;
  left: -50px;
}

.loc-card-body {
  padding: 1.5rem 1.35rem 1rem;
  flex: 1;
}

.loc-city {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.loc-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: #ff5bcf;
  margin-bottom: 0.95rem;
}

.loc-address {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.loc-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.loc-row-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  flex-shrink: 0;
  margin-top: 0.08rem;
}

.loc-card-foot {
  padding: 0 1.35rem 1.35rem;
}

.loc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  background: var(--grad);
  color: #fff;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(199, 0, 126, 0.24);
}

.loc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(199, 0, 126, 0.32);
}

/* ══════════ RESPONSIVE ══════════ */

@media (max-width: 1200px) {
  .loc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {

  .page-hero-inner {

    grid-template-columns: 1fr;

  }



  /* .page-hero-visual {

    display: none;

  } */

  .page-hero-visual {

    display: block;

    /* important: do not hide */

    min-height: auto;

    margin-top: 1.5rem;

  }



  .ct-hero-card {

    min-height: auto;

    padding: 1.8rem;

    border-radius: 24px;

  }



  .ct-hero-title {

    font-size: 1.35rem;

  }



  .ct-hero-sub {

    font-size: 0.9rem;

    max-width: 100%;

  }



  .channel-grid {

    grid-template-columns: 1fr 1fr;

  }



  .mc-inner {

    grid-template-columns: 1fr;

    gap: 3rem;

  }



  .office-grid {

    grid-template-columns: 1fr 1fr;

  }



  .faq-grid {

    grid-template-columns: 1fr;

  }

}



@media (max-width: 767px) {

  .page-hero-visual {

    margin-top: 1.25rem;

  }



  .ct-hero-card {

    padding: 1.4rem;

    border-radius: 20px;

    gap: 1.2rem;

  }



  .ct-hero-icon {

    width: 54px;

    height: 54px;

    font-size: 1.6rem;

    border-radius: 14px;

  }



  .ct-hero-title {

    font-size: 1.2rem;

  }



  .ct-hero-sub {

    font-size: 0.85rem;

    line-height: 1.6;

  }



  .ct-info-row {

    gap: 0.75rem;

    padding: 0.85rem 0.9rem;

    border-radius: 12px;

  }



  .ct-info-icon {

    width: 36px;

    height: 36px;

    font-size: 0.9rem;

  }



  .ct-info-text strong {

    font-size: 0.56rem;

  }



  .ct-info-text span {

    font-size: 0.84rem;

  }



  .ct-resp-badge {

    font-size: 0.6rem;

    padding: 0.5rem 0.85rem;

  }



  .ct-glow-pink {

    width: 180px;

    height: 180px;

    top: -50px;

    right: -50px;

  }



  .ct-glow-blue {

    width: 140px;

    height: 140px;

    bottom: -35px;

    left: -35px;

  }



  .channel-grid {

    grid-template-columns: 1fr;

  }



  .office-grid {

    grid-template-columns: 1fr;

  }



  .form-row {

    grid-template-columns: 1fr;

  }



  .mc-form-wrap {

    padding: 1.8rem 1.4rem;

  }



  .map-wrap {

    height: 320px;

  }

  #main-company-contact {
    padding: 5rem 1rem;
  }

  .loc-grid {
    grid-template-columns: 1fr;
  }

  .loc-head {
    margin-bottom: 2.2rem;
  }

  .loc-card-top {
    height: 135px;
  }

  .loc-card-body {
    padding: 1.25rem 1rem 0.95rem;
  }

  .loc-card-foot {
    padding: 0 1rem 1rem;
  }

}



@media (max-width: 480px) {

  .ct-hero-card {

    padding: 1.15rem;

    border-radius: 18px;

  }



  .ct-hero-title {

    font-size: 1.05rem;

  }



  .ct-hero-sub {

    font-size: 0.8rem;

  }



  .ct-info-row {

    align-items: flex-start;

  }



  .ct-info-text span {

    font-size: 0.8rem;

  }



  .ct-resp-badge {

    width: 100%;

    justify-content: center;

    text-align: center;

  }

}