:root {
  --color-primary: #6C63FF;
  --color-accent:  #D63384;
  --color-light:   #FAFAFA;
  --color-bg-alt:  #FFF0F6;
  --color-bg-alt2: #FDF6FB;
  --color-text:    #333;
  --radius:        12px;
  --radius-pill:   250px;
  --shadow-light:  0 4px 12px rgba(0,0,0,0.08);
  --shadow-strong: 0 4px 20px rgba(0,0,0,0.1);
}

/*====================================
  GLOBAL
====================================*/
html {
  scroll-behavior: smooth;
}
.main-body {
  flex: 1;
  width: 100%;
  margin-top: 0 !important;
}

/*====================================
  HERO & SEARCH
====================================*/
.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}
.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: white;
}
.hero-search-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.hero-search-bar .search-form {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #FFF;
  padding: 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-strong);
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}
.hero-search-bar .search-form select,
.hero-search-bar .search-form .search-button {
  flex-shrink: 0;
}
.hero-search-bar .search-form select {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border-radius: 50px;
  border: 1px solid #CCC;
  min-width: 220px;
  appearance: none;
}
.hero-search-bar .search-button {
  padding: 1rem 1.5rem;
  background: var(--color-accent);
  color: #FFF;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

/*====================================
  FEATURED SERVICES
====================================*/
.featured-services {
  padding: 4rem 2rem;
  background: var(--color-bg-alt);
  text-align: center;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.service-card {
  background: #FFF;
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 160px;
  box-shadow: var(--shadow-light);
  text-align: center;
}
.service-card i {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: .5rem;
}

/*====================================
  TESTIMONIALS
====================================*/
.testimonials-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #FFF, #E9E5FF);
  text-align: center;
}
.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-accent);
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial-card {
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #FCE3EF;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-fallback {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-accent);
}
.testimonial-text {
  font-size: .95rem;
  font-style: italic;
  color: #555;
  margin: 1rem 0;
  line-height: 1.6;
}
.testimonial-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin: .5rem 0 .2rem;
}
.testimonial-role {
  font-size: .9rem;
  color: #888;
}

/*====================================
  PROFESSIONALS CARDS
====================================*/
.cta-professionals {
  padding: 4rem 2rem;
  background: var(--color-bg-alt2);
  text-align: center;
}
.professional-card {
  background: #FFF;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform .2s;
  cursor: default;
}
.professional-card:hover {
  transform: translateY(-4px);
}
.avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: #F0E1F5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 1.5rem;
  font-weight: bold;
  color: #6A2A66;
}
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro-name {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 600;
}

/*====================================
  WHY US
====================================*/
.why-us-section {
  padding: 4rem 2rem;
  background: #FFF;
  text-align: center;
}
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.why-card {
  background: #F9F9FF;
  padding: 2rem;
  border-radius: var(--radius);
  width: 260px;
  text-align: center;
  box-shadow: var(--shadow-light);
}
.why-card i {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/*====================================
  CONTACT FORM
====================================*/
.contact-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #F8F4FF, #FFF);
  text-align: center;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-control {
  width: 100%;
  max-width: 90%;
  padding: .75rem;
  font-size: 1rem;
  border: 1px solid #CCC;
  border-radius: var(--radius);
}
.form-submit {
  text-align: center;
}
.form-submit .btn-primary {
  background: var(--color-accent);
  color: #FFF;
  padding: .75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: bold;
  cursor: pointer;
}
.form-submit .btn-primary:hover {
  background: #B4296D;
}

/*====================================
  MODAL
====================================*/
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #FFF;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: fadeIn .3s ease;
}
.modal-content h2 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.modal-content p {
  color: #555;
  margin-bottom: 2rem;
}
.modal-content .btn-primary {
  background: var(--color-accent);
  color: #FFF;
  padding: .6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
