@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --primary-purple: #91307B;
  --dark-purple: #4A3A75;
  --dark-blue: #1A1C3C;
  --darker-blue: #11132A;
  --text-dark: #333333;
  --text-gray: #666666;
  --green: #39a988;
  --light-bg: #FCF9FC;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background-color: #FFFAF0;
  font-size: 15px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER ===== */
#header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
}
.top-purple-bar {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #91307B 0%, #39a988 100%);
}

.header-inner {
  width: 100%;
  height:100px;
}



.logo {
  height: 120px;
  width: auto;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.phone-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-phone-icon {
  width: 34px;
  height: 34px;
  color: #6D3B82; /* Deep purple */
}

.call-text {
  font-size: 20px;
  font-weight: 600;
  color: #1A244E; /* Dark navy */
  margin-bottom: 1px;
}

.call-number {
  font-size: 1.55rem;
  font-weight: 800;
  color: #6D3B82; /* Magenta/Purple */
  letter-spacing: -0.3px;
}

/* ===== HERO ===== */
.hero-section {
  background: url('../assets/images/ent_header.png');
  min-height: 680px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 0px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-text h1 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.25;
  color: white;
}
.hero-text .right {
  font-size: 1.45rem;
  font-weight: 600;
  color: white;
  margin-top: 20px;
  margin-right : 0%;
  text-align: right;
  line-height: 1.3;
}

.hero-text .left {
  font-size: 1.45rem;
  font-weight: 600;
  color: white;
  margin-bottom: 100px;
  line-height: 1.3;
}

/* ===== FORM CARD ===== */
.form-card {
  background: white;
  border-radius: 18px;
  padding: 28px 30px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  max-width: 420px;
  margin-left: auto;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 4px;
  display: block;
}

.form-control {
  border: none;
  border-bottom: 1.5px solid #ddd;
  border-radius: 0;
  padding: 7px 0;
  font-size: 13px;
  box-shadow: none !important;
  background: transparent;
  color: #555;
}

.form-control::placeholder {
  color: #bbb;
  font-size: 13px;
}

.form-control:focus {
  border-bottom-color: var(--primary-purple);
  background: transparent;
}

.btn-submit {
  background: 
    linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 45%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.3) 100%),
    linear-gradient(90deg, #49ad91 0%, #46487E 100%);
  color: white;
  border: 1.5px solid white;
  border-radius: 6px;
  padding: 5px 5px;
  font-weight: 700;
  font-size: 23px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  cursor: pointer;
  display: block;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-submit:hover,
.btn-submit:focus {
  background: linear-gradient(90deg, #3d947a 0%, #3a3b66 100%);
  color: white;
  box-shadow: inset 0 15px 15px rgba(255, 255, 255, 0.1), 
              inset 0 -15px 15px rgba(0, 0, 0, 0.2), 
              0 3px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(1px);
}

/* ===== CREAM SECTION (Specialists + Procedures + Consult) ===== */
.cream-section {
  
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  padding-top: 60px;
  padding-bottom: 20px;
}

/* ===== SPECIALIST ===== */
.specialist-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.specialist-title-container h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #824277;
  margin: 0;
  white-space: nowrap;
  padding-right: 15px;
}

.specialist-title-container::after {
  content: '';
  flex-grow: 1;
  height: 1.5px;
  background: linear-gradient(90deg, #824277 0%, #39a988 100%);
  margin-top: 12px;
}

.tree-label {
  font-weight: 700;
  font-size: 18px;
  color: #383C79;
}

/* Doctor cards */
.doc-card {
  position: relative;
  border: 1.5px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #91307B 0%, #39a988 100%) border-box;
  border-radius: 16px;
  padding: 10px 10px 16px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.doc-img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  margin: 0 0 16px;
  border-radius: 12px;
  display: block;
}

.doc-name {
  color: #D33346;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.25;
}

.doc-role {
  font-size: 12px;
  color: #1A2254;
  line-height: 1.4;
  font-weight: 500;
}

.doc-quote {
  font-size: 16px;
  font-weight: 600;
  color: #1A2254;
  margin-top: 40px;
  margin-bottom: 10px;
}

/* ===== WAVY SEPARATOR ===== */
.line-separator {
  width: 100%;
  height: 55px;
  margin: 30px 0;
}



/* ===== PROCEDURES ===== */
.procedure-title {
  color: #383C79;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 35px;
}

.proc-tag {
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #91307B 0%, #39a988 100%) border-box;
  border: 2.5px solid transparent;
  padding: 15px 15px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: #1A1A1A;
  text-align: center;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; /* Automatically fills col-md row height */
  width: 100%;
}

/* ===== WHEN TO CONSULT ===== */
.consult-section {
  padding: 20px 0 50px;
}

.consult-title {
  color: #7E3B74;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 25px;
  margin-bottom: 45px;
}

.consult-item {
  position: relative;
  padding-left: 14px;
  color: #1A1A1A;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
}

.consult-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 700;
  top: -2px;
}

.consult-footer-text {
  color: #383C79;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== UNIFIED FOOTER WRAPPER ===== */
.unified-footer-wrapper {
  background: linear-gradient(rgba(26, 29, 46, 0.85), rgba(26, 29, 46, 0.85)), url('../assets/images/footer.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
  border-bottom: 6px solid transparent;
  border-image: linear-gradient(90deg, #91307B 0%, #39a988 100%) 1;
  
}

/* ===== WHY CHOOSE SAKRA ===== */
.why-choose-section {
  background: transparent;
  color: white;
  padding: 70px 0 130px;
  position: relative;
  padding:10% 10%;
}

.why-title {
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  color: white;
  margin-bottom: 50px;
}

.feature-box {
  text-align: center;
  padding: 0 10px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text {
  font-weight: 700;
  font-size: 18.5px;
  line-height: 1.35;
  color: white;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta-container {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
}

.bottom-cta-card {
  background: white;
  border-radius: 12px;
  padding: 18px 45px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 920px;
}

.bottom-cta-text {
  color: #383C79;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
}

.cta-btn {
  background: linear-gradient(90deg, #FF5064, #D61B99);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px 35px;
  font-weight: 700;
  font-size: 21px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(214, 27, 153, 0.3);
  transition: all 0.3s;
  width: auto;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #FA4871, #D325A6);
  color: white;
}

/* ===== FOOTER ===== */
.footer-section {
  background-color: #00000033;
  color: white;
  margin-top: -45px;
  padding:5% 10%;
}

.footer-section p {
  color: white;
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-section h4 {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-phone {
  font-size: 25px;
  font-weight: 700;
  color: white;
  display: block;
}

/* Badges */
.badges {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.badges img {
  height: 120px;
  width: auto;
  border-radius: 50%;
}

.badge-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2A8C50, #1a6038);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Store buttons */
.store-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s;
  line-height: 1;
}

.store-btn i {
  font-size: 20px;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn span small {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  line-height: 1.2;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

.social-icons a {
  color: #1A1D2E;
  font-size: 20px;
  background: white;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.social-icons a:hover {
  background: #EEE;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .consult-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .logo {
    height: 75px;
  }
  .call-text {
    font-size: 14px;
  }
  .call-number {
    font-size: 1.15rem;
  }
  .header-phone-icon {
    width: 26px;
    height: 26px;
  }
  .header-call {
    gap: 8px;
    margin-bottom: 0px;
  }
  .why-choose-section {
    padding: 12% 4%;
  }
  .feature-text {
    font-size: 14px;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
  }
  .proc-tag {
    padding: 12px 6px;
    font-size: 13px;
  }
  .footer-section {
    padding: 10% 5%;
    margin-top: 0px;
  }
  .form-card {
    padding: 20px 20px;
  }
  .hero-section {
    background-image: url('../assets/images/ent_header_mobile.png');
    background-size: contain;
    background-position: center top;
    min-height: auto;
    padding-top: 250px;
    padding-bottom: 40px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text .subtext {
    margin-left: 10%;
    font-size: 1.2rem;
  }

  .form-card {
    margin: 30px auto 0;
    max-width: 100%;
  }

  .cream-section {
    border-radius: 24px 24px 0 0;
  }

  .tree-branch {
    display: none;
  }

  .consult-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bottom-cta-card {
    padding: 20px;
    text-align: center;
    flex-direction: column;
    gap: 16px;
  }

  .store-buttons,
  .social-icons {
    justify-content: center;
  }

  .procedure-title {
    font-size: 1.3rem;
  }

  .why-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .consult-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== PHONE LINKS ===== */
.phone-link {
  text-decoration: none !important;
  color: inherit !important;
}
.phone-link:hover {
  text-decoration: none !important;
  color: inherit !important;
}
.phone-link:hover .call-text {
  color: #1A244E !important;
}
.phone-link:hover .call-number {
  color: #6D3B82 !important;
}
.phone-link:hover .contact-phone {
  color: white !important;
}
.phone-link:hover .header-phone-icon {
  color: #6D3B82 !important;
}
