/* ===============================
   1. VARIABLES & GLOBAL RESET
   =============================== */
:root {
    --pink: #FF4081;
    --pink-light: #FFF0F5;
    --dark: #2D3436;
    --gray: #636E72;
    --white: #FFFFFF;
    --footer-dark: #2f3638;
    --shadow: 0 10px 30px rgba(255, 64, 129, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

/* ===============================
   2. NAVIGATION (DESKTOP)
   =============================== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    padding: 12px 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    backdrop-filter: blur(10px);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-logo {
    height: 55px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    color: var(--pink);
    font-size: 1.4rem;
    font-weight: 700;
}

.brand-sub {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-weight: 700;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.25s ease;
}

/* underline hover */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Call Now button */
.nav-cta {
    background: var(--pink);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
    transition: 0.3s;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.45);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--pink);
    border-radius: 5px;
}

/* ===============================
   3. HERO
   =============================== */
.hero {
    padding: 45px 0;
    background: linear-gradient(135deg, var(--pink-light) 0%, #ffffff 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
}

.hero-title .highlight {
    color: var(--pink);
    font-style: italic;
}

.hero-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: -20px 20px 0 rgba(255,64,129,0.1);
}

.trust-bar {
    display: flex;
    gap: 40px;
    margin: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.trust-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.trust-icon {
    font-size: 1.4rem;
}

.trust-item .sub {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.btn-main {
    background: var(--dark);
    color: white;
    box-shadow: 0 10px 20px rgba(45, 52, 54, 0.2);
    transition: 0.3s;
}

.btn-main:hover {
    background: var(--pink);
    transform: translateY(-3px);
}

.btn-wa {
    background: white;
    border: 2px solid #25D366;
    color: #25D366;
}

/* ===============================
   4. DOCTOR + CONSULTATION
   =============================== */
.doc-section {
    padding: 50px 0;
}

.doc-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.doc-visual img {
    width: 85%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--pink-light);
}

.section-subtitle {
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
}

/* Consultation card */
.schedule-card {
    background: white;
    padding: 34px 36px;
    border-radius: 22px;
    border: 1px solid #eee;
    margin-top: 18px;
    transition: 0.3s;
}

.schedule-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(255, 64, 129, 0.12);
}

.card-head {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 22px;
    display: flex;
    gap: 10px;
}

.time-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 14px 0;
    border-bottom: 1px dashed #eee;
}

.time-row:last-child { border-bottom: none; }

.day {
    font-weight: 600;
    color: var(--gray);
}

.time {
    font-weight: 700;
}

.sun .time {
    color: var(--pink);
    font-weight: 800;
}

/* ===============================
   5. SERVICES + FAQ
   =============================== */
.services {
    background: #FAFAFA;
    padding: 80px 0;
}

.title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.center-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
}

.serv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.s-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.s-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--pink-light);
    border-radius: 50%;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.s-card p {
    max-width: 260px;
}

/* ===============================
   6. FOOTER
   =============================== */
.footer {
    background: var(--footer-dark);
    color: white;
    padding: 70px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr;
    gap: 50px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    color: var(--pink);
    font-size: 1.6rem;
}

.footer-map-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.footer-map-link:hover {
    color: var(--pink);
    text-decoration: underline;
}

.copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

/* ===============================
   7. WHATSAPP FIX
   =============================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float img {
    width: 34px;
    pointer-events: none;
}

/* ===============================
   8. MOBILE ONLY FIXES
   =============================== */
@media (max-width: 768px) {

  body { overflow-x: hidden; }

  /* ===============================
     NAV – KEEP ORIGINAL HEIGHT
     =============================== */
  .navbar{
      padding: 8px 0;
  }
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    display: none;
    gap: 18px;
    padding: 24px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 0;
  }

  /* ===============================
     HERO – IMAGE FIRST (CORRECT WAY)
     =============================== */

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content";
    gap: 32px;
  }

  .hero-visual {
    grid-area: image;
  }

  .hero-content {
    grid-area: content;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  /* ===============================
     BUTTONS – SAME WIDTH, CENTER TEXT
     =============================== */

  .btn-group {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
    text-align: center;   /* 🔑 FIX */
    padding: 14px 0;
  }

  /* ===============================
     DOCTOR + CONSULTATION (KEEP GOOD)
     =============================== */

  .doc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .doc-visual img {
    width: 70%;
    margin: 0 auto;
  }

  .schedule-card {
    margin-top: 22px;
    border: 2px solid var(--pink-light);
    background: linear-gradient(180deg, #fff 0%, #fff7fa 100%);
    padding: 24px 20px;
  }

  .time-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 6px;
        padding: 14px 0;
    }
    .day {
        font-weight: 600;
        color: var(--dark);
    }

    .time {
        font-weight: 800;
        font-size: 1.05rem;
    }
   .section-title{
       white-space: nowrap;
       font-size: 2.1rem;
   }
  /* ===============================
     SERVICES → FAQ GAP REDUCE
     =============================== */

  .services {
    padding-bottom: 48px;
  }

  /* ===============================
     FOOTER (AS-IS, SAFE)
     =============================== */

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}



