:root {
  --purple-deep: #3b0764;
  --purple-mid: #7c3aed;
  --purple-light: #6D5DF6;
  --white: #f5f0ff;
  --font-color: #260058;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--font-color);
}

.bg-blob {
  position: fixed;
  top: 100px;
  left: 0%;
  width: 50%;
  height: 110vh;
  transition: transform 0.05s linear;
  background-image: url("../resources/img/services/Ellipse.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════
   HERO
════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 42vw;
  min-height: 260px;
  max-height: 480px;
  overflow: hidden;
  background: var(--font-color);
  z-index: 1;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-video-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0.0) 55%,
      rgba(245, 240, 255, 0.55) 78%,
      rgba(245, 240, 255, 1.0) 100%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 0;
  right: 0;
  padding: 0 40px 0 22px;
  display: flex;
  align-items: center;
  gap: 25px;
  max-width: 600px;
}

.hero-bar {
  width: 3px;
  height: 40px;
  background: var(--purple-light);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(25px, 3.1vw, 37px);
  font-weight: 700;
  color: var(--font-color);
  line-height: 1.2;
}

.hero-sub,
.hero-desc {
  display: none;
}

/* ════════════════════
   RESPONSIVE
════════════════════ */

@media (min-width: 1101px) {
  .hero-content {
    left: 0;
    margin-left: 40px;
    /* bottom: 60px; */
    padding-left: 40px;
  }
}

@media (max-width: 1100px) and (min-width: 851px) {
  .hero-content {
    left: 32px;
    bottom: 20px;
  }
}

@media (max-width: 850px) and (min-width: 538px) {
  .hero {
    height: 48vw;
    min-height: 220px;
    max-height: 340px;
  }

  .hero-content {
    left: 24px;
    bottom: 16px;
  }

  .hero-bar {
    height: 40px;
  }
}

@media (max-width: 537px) {
  .hero {
    height: 52vw;
    min-height: 180px;
    max-height: 280px;
  }

  .hero-content {
    left: 16px;
    bottom: 12px;
    gap: 20px;
  }

  .hero-bar {
    height: 50px;
    width: 3px;
  }

  /* .hero-title {
        font-size: clamp(14px, 4vw, 20px);
    } */
}

@media (max-width: 380px) {
  .hero {
    height: 54vw;
    min-height: 160px;
  }

  .hero-content {
    left: 12px;
    bottom: 10px;
  }
}




/* ════════════════════
   ABOUT SECTION
════════════════════ */
.about-section {
  position: relative;
  z-index: 1;
  padding: 64px 40px 60px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* ── LEFT: card ── */
.about-card-wrap {
  display: flex;
  min-height: 0;
}

.card {
  position: relative;
  width: 100%;
  border-radius: 18px 18px 0px 18px;
  overflow: hidden;
  /* box-shadow: 0 8px 40px rgba(83,74,183,0.18); */
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.card__label {
  background: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 9px 0 0 0;
  padding: 6px 6px 0 6px;
  white-space: nowrap;
}

.label-text {
  background-color: #AFA9EC;
  font-size: 13px;
  font-weight: 600;
  color: #6c2fd4;
  padding: 5px 20px;
  border-radius: 5px;
  display: block;
}

.card__clients {
  background: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 9px 0 0 0;
  padding: 7px 14px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card__circles {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  flex-shrink: 0;
  overflow: hidden;
  background: #AFA9EC;
}

.circle:first-child {
  margin-left: 0;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__clients-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.clients-name {
  font-size: 12px;
  font-weight: 600;
  color: #3C3489;
}

.clients-count {
  font-size: 11px;
  font-weight: 500;
  color: #7F77DD;
}

/* ── RIGHT: text ── */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.about-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--font-color);
}

.about-heading span {
  color: var(--purple-light);
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--font-color);
  text-align: justify;
}

/* ── bottom full-width paragraph ── */
.about-bottom-text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--font-color);
  text-align: justify;
}

/* ════════════════════
   RESPONSIVE
════════════════════ */
@media (max-width: 1100px) and (min-width: 801px) {
  .about-inner {
    gap: 36px;
  }
}

@media (max-width: 800px) {
  .about-section {
    padding: 48px 24px 48px;
    gap: 26px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card__img {
    height: auto;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 537px) {
  .about-section {
    padding: 36px 16px 36px;
    gap: 18px;
  }
}



/* ════════════════════
   STATS ROW
════════════════════ */
.about-stats {
  display: flex;
  align-items: stretch;
  /* background: #ffffff; */
  /* border: 1.5px solid #e0dbf8; */
  border-radius: 16px;
  gap: 0;
  overflow: hidden;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 22px 28px;
}

.stat-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--font-color);
  line-height: 1.15;
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: #7b6fa0;
  line-height: 1.4;
  white-space: nowrap;
}

/* divider flush top-to-bottom — no margin, no padding */
.stat-divider {
  width: 2px;
  background: linear-gradient(180deg, #f5f0ff 0%, #6D5DF6 50%, #f5f0ff 100%);
  flex-shrink: 0;
  align-self: stretch;
}

/* ── responsive stats ── */

/* medium: icon + text still inline, 3 across */
@media (max-width: 800px) {
  .stat-item {
    padding: 18px 20px;
    gap: 12px;
    display: flex;
    flex-direction: column;
  }

  .stat-icon {
    width: 46px;
    height: 46px;
  }

  .stat-text {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* small: each stat = icon left + text right, but all 3 stay in ONE row, wrap allowed */
@media (max-width: 600px) {
  .about-stats {
    flex-wrap: wrap;
    border-radius: 12px;
  }

  /* hide vertical dividers — borders handled by layout */
  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 1 1 calc(50% - 1px);
    min-width: 140px;
    padding: 16px 16px;
    gap: 10px;
    /* border-bottom: 1px solid #e0dbf8; */
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  /* keep 3 in a row if screen allows */
  .stat-item:nth-child(5) {
    border-bottom: none;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-number {
    font-size: 20px;
  }
}

/* very small: stack all 3 vertically, center each */
/* @media (max-width: 420px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
    }
    .stat-item {
        flex: unset;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid #e0dbf8;
        padding: 16px 20px;
    }
    .stat-item:last-child {
        border-bottom: none;
    }
} */




/* ════════════════════
   CONTACT SECTION
════════════════════ */
.contact-section {
  position: relative;
  width: 100%;
  /* background: var(--white); */
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
}

/* purple gradient band - left to right */
.bg-purple {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(76, 0, 176, 1) 0%, rgba(109, 93, 246, 1) 50%, rgba(169, 156, 253, 1) 100%);
  z-index: 0;
}

/* top row: text left + arch right */
.contact-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 40px 0;
}

/* LEFT: text content */
.text-wrap {
  flex: 1 1 55%;
  /* padding: 20px 40px 80px 0; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
}

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.t-white {
  color: var(--white);
}

.t-accent {
  color: #a096fa;
  font-style: italic;
}

.body-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white);
  max-width: 450px;
}

/* RIGHT: arch photo - positioned lower */
.arch-wrap {
  flex: 0 0 260px;
  height: 420px;
  margin-bottom: -220px;
  margin-top: 80px;
  position: relative;
  z-index: 3;
}

.arch-outline {
  position: absolute;
  top: -12px;
  left: -12px;
  width: calc(100% + 24px);
  height: 44%;
  border: 2.5px solid #a096fa;
  border-radius: 130px 130px 0 0;
  border-bottom: none;
  z-index: 1;
}

.arch-photo {
  position: absolute;
  inset: 0;
  border-radius: 120px 120px 0 0;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(70, 10, 150, 0.3);
}

.arch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* BOTTOM: white contact info section */
.contact-info {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 40px 60px;
  padding-top: 0;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--font-color);
  margin-bottom: 16px;
}

.contact-info .info-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--font-color);
  margin-bottom: 40px;
  max-width: 700px;
}

/* contact cards */
.contact-cards {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: #4C00B0;
  border-radius: 30px 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 6px 20px rgba(108, 47, 212, 0.4);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-card strong {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--font-color);
}

.contact-card strong a {
  color: var(--font-color);
  text-decoration: none;
}

.contact-card strong a:hover {
  color: #6c2fd4;
}

.contact-card span {
  font-size: 13px;
  color: #777777;
}


/* ════════════════════
   RESPONSIVE - CONTACT
════════════════════ */

/* Large tablet */
@media (max-width: 1024px) {
  /* .contact-layout {
    padding: 50px 32px 0;
  }
  
  .arch-wrap {
    flex: 0 0 220px;
    height: 360px;
    margin-bottom: -180px;
    margin-top: 60px;
  }
  } */

  .contact-info {
    padding: 80px 32px 50px;
    padding-top: 0;
  }

  .arch-outline {
    height: 42%;
  }

  .contact-info .info-desc {
  max-width: 550px;
}

.contact-cards {
    gap: 80px;
}
}

/* Tablet */
@media (max-width: 900px) {
  .text-wrap {
    padding: 10px 30px 60px 0;
  }

  .arch-wrap {
    flex: 0 0 220px;
    height: 360px;
    margin-bottom: -180px;
    margin-top: 60px;
  }

  .arch-outline {
    height: 53%;
  }

  .contact-cards {
    gap: 70px;
  }

  .contact-info .info-desc {
  max-width: 460px;
}
}

/* Small tablet */
@media (max-width: 768px) {
  .bg-purple {
    height: 50%;
  }

  .contact-layout {
    padding: 40px 24px 0;
  }

  .text-wrap {
    flex: 1 1 50%;
    padding-right: 20px;
  }

  .arch-wrap {
    flex: 0 0 180px;
    height: 300px;
    margin-bottom: -180px;
    margin-top: 50px;
  }

  .arch-outline {
    height: 88%;
  }

  .contact-info {
    padding: 70px 24px 40px;
  }

  .contact-cards {
    gap: 50px;
  }

  .contact-info .info-desc {
  max-width: 800px;
}
}

/* Mobile - stack layout */
@media (max-width: 680px) {
  .bg-purple {
    height: 50%;
  }

  .contact-layout {
    padding: 40px 24px 0;
  }

  .text-wrap {
    flex: 1 1 50%;
    padding-right: 20px;
  }

  .arch-wrap {
    flex: 0 0 180px;
    height: 300px;
    margin-bottom: -180px;
    margin-top: 50px;
  }

  .arch-outline {
    height: 97%;
  }

  .contact-info {
    padding: 100px 20px 40px;
    text-align: center;
  }

  .contact-info .info-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-cards {
    justify-content: center;
    gap: 100px;
  }

  .contact-card {
    align-items: center;
  }
}

/* Small mobile */
@media (max-width: 590px) {
  .contact-layout {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 0;
  }
  
  .text-wrap {
    width: 100%;
    padding: 0 0 30px 0;
    text-align: center;
    align-items: center;
  }
  
  .body-text {
    max-width: 100%;
  }
  
  .arch-wrap {
    flex: none;
    width: 170px;
    height: 260px;
    margin: 20px auto -100px;
    margin-bottom: -80px;
  }

  .arch-outline {
    height: 70%;
  }
  
  .title {
    font-size: 28px;
  }

  .contact-info {
    padding: 90px 16px 35px;
    margin-top: 1rem;
  }

  .contact-cards {
    gap: 65px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-card strong {
    font-size: 14px;
  }
}

@media (max-width: 463px) {
  .arch-outline {
    height: 97%;
  }
}

/* Very small mobile */
@media (max-width: 360px) {
  .arch-wrap {
    width: 150px;
    height: 230px;
    margin-bottom: 50px;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}




/* ════════════════════════════════════════
   CONTACT FORM SECTION
   Add to about.css (after existing styles)
════════════════════════════════════════ */

.contact-form-section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 0 80px;
}

.cf-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Shared heading styles (mirror about-section) ── */
.cf-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 8px;
  display: block;
}

.cf-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--font-color);
  margin-bottom: 14px;
}

.cf-heading span {
  color: var(--purple-light);
}

.cf-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--font-color);
  margin-bottom: 28px;
}

/* ══ LEFT: FORM ══ */
.cf-fields {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.cf-row {
  display: grid;
  gap: 10px;
}

.cf-two { grid-template-columns: 1fr 1fr; }
.cf-one { grid-template-columns: 1fr; }

/* Field box — matches booking.css exactly */
.cf-box {
  background: #fff;
  border: 1.5px solid #e6e0f8;
  border-radius: 8px;
  padding: 9px 13px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.2s;
}

.cf-box:focus-within {
  border-color: var(--purple-mid);
}

.cf-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #9e99b5;
  letter-spacing: 0.02em;
  user-select: none;
}

.cf-input {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #3a3a3a;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.cf-input::placeholder { color: #bbb; }

.cf-textarea {
  resize: none;
  min-height: 180px;
  line-height: 1.6;
}

/* Send button — matches booking.css .book-now-btn */
.cf-send-btn {
  width: 100%;
  padding: 15px 0;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(76,0,176,1) 0%, rgba(109,93,246,1) 50%, rgba(169,156,253,1) 100%);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}

.cf-send-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ══ RIGHT: MAP + SOCIAL ══ */
.cf-right {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* Map */
.cf-map-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #e6e0f8;
  box-shadow: 0 6px 30px rgba(109, 93, 246, 0.1);
  margin-top: 0;
}

.cf-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Social icons — match contact-icon pill style */
.cf-social-icons {
  display: flex;
  gap: 14px;
  margin-top: 0;
}

.cf-social-btn {
  width: 55px;
  height: 55px;
  background: #4C00B0;
  border-radius: 30px 30px 0 0;   /* matches .contact-icon shape */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(108, 47, 212, 0.4);
  transition: background 0.2s, transform 0.2s;
}

.cf-social-btn:hover {
  background: #6f00ff;
  transform: translateY(-3px) scale(1.06);
}

.cf-social-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

/* ══ TOAST ══ */
.cf-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--white);
  border-left: 4px solid var(--purple-mid);
  border-radius: 10px;
  padding: 14px 22px;
  box-shadow: 0 8px 32px rgba(109, 93, 246, 0.18);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--font-color);
  z-index: 999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.cf-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .cf-inner {
    padding: 0 32px;
    gap: 44px;
  }
}

@media (max-width: 800px) {
  .contact-form-section {
    padding: 52px 0 60px;
  }

  .cf-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
}

@media (max-width: 560px) {
  .cf-inner {
    padding: 0 16px;
  }

  .cf-row.cf-two {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 40px 0 52px;
  }
}

@media (max-width: 380px) {
  .cf-heading {
    font-size: 24px;
  }
}