/* =========================
   GOOGLE FONT IMPORT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* =========================
   ROOT VARIABLES
========================= */
:root {
  --primary-blue: #2d5f96;
  --secondary-blue: #4da5d9;
  --soft-teal: #65c3cb;
  --dark-text: #35506d;
  --body-text: #5f7487;
  --white: #ffffff;
  --light-bg: #f8fcff;
  --card-bg: rgba(255, 255, 255, 0.95);
  --border-color: #d7e6f2;
  --shadow-soft: 0 10px 24px rgba(75, 114, 145, 0.10);
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: all 0.3s ease;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--body-text);
  background: linear-gradient(180deg, #fafdff 0%, #eef8fc 100%);
  line-height: 1.6;
}

/* =========================
   GLOBAL ELEMENTS
========================= */
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.section-space {
  padding: 25px 0 40px;
}

.section-divider {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, #55bec8 0%, #4c9fd0 100%);
  box-shadow: 0 8px 18px rgba(77, 165, 217, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(77, 165, 217, 0.30);
}

.btn-secondary {
  color: var(--white);
  background: linear-gradient(90deg, #3e8fd0 0%, #2f73bb 100%);
  box-shadow: 0 8px 18px rgba(47, 115, 187, 0.22);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--white);
  background: linear-gradient(90deg, #57b8c6 0%, #5ca8cf 100%);
  padding: 12px 22px;
  border-radius: 14px;
}

/* /* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #dfeaf2;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 22px;
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo img {
  width: 170px;
  object-fit: contain;
}

/* Navbar centered area */
.navbar {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-blue);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: var(--secondary-blue);
  border-radius: 20px;
}

/* Header CTA buttons pushed to far right */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 28px;
  flex-shrink: 0;
}

/* Refined button sizes for header only */
.header-actions .btn {
  min-width: 0;
  padding: 8px 10px;
  font-size: 0.96rem;
  border-radius: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.header-actions .btn-outline {
  background: linear-gradient(90deg, #59b9c7 0%, #5aa8cf 100%);
  color: var(--white);
}

.header-actions .btn-primary {
  background: linear-gradient(90deg, #59b9c7 0%, #4b9fd0 100%);
  color: var(--white);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  margin-left: auto;
}

/* =========================
   HERO
========================= */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 90px;
  background:
    radial-gradient(circle at left top, rgba(101, 195, 203, 0.10), transparent 35%),
    linear-gradient(180deg, #fbfeff 0%, #f3fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 20px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--primary-blue);
  margin-bottom: 14px;
  font-weight: 600;
}

.hero-content h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: var(--dark-text);
  font-weight: 500;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px solid #d7e6f2;
  max-width: 450px;
}

.hero-tagline {
  color: #5d9dca;
  font-size: 1.28rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 60%;
  max-width: 540px;
  object-fit: contain;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 155px;
  background:
    radial-gradient(120% 100% at 10% 100%, rgba(130, 208, 221, 0.18), transparent 45%),
    radial-gradient(120% 100% at 90% 100%, rgba(104, 177, 225, 0.16), transparent 45%);
}

.hero-wave::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: var(--white);
  border-top-left-radius: 55% 100%;
  border-top-right-radius: 55% 100%;
  opacity: 0.88;
}

/* =========================
   SHARED CARD GRIDS
========================= */
.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* =========================
   QUICK INFO CARDS
========================= */
.quick-info-section {
  margin-top: -42px;
  position: relative;
  z-index: 10;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid #dbeaf4;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 22px 18px;
  text-align: center;
}

.info-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.card-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.info-card h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  font-weight: 600;
}

.card-line {
  height: 2px;
  width: 100%;
  background: #d9e8f3;
  margin: 10px 0 14px;
}

.info-card p {
  color: var(--body-text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.phone-highlight {
  color: var(--secondary-blue) !important;
  font-size: 1.55rem !important;
  font-weight: 700;
}


/* =========================
   SECTION HEADINGS
========================= */
.section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.section-heading h2 {
  color: var(--primary-blue);
  font-size: 2.6rem;
  text-align: center;
  position: relative;
  padding: 0 26px;
}

.section-heading h2::before,
.section-heading h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 180px;
  height: 1px;
  background: var(--border-color);
}

.section-heading h2::before {
  right: 100%;
}

.section-heading h2::after {
  left: 100%;
}

/* =========================
   SERVICES CARDS
========================= */
.service-card {
  background: var(--card-bg);
  border: 1px solid #dbeaf4;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 20px 14px 16px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.service-card h3 {
  color: var(--dark-text);
  font-size: 1.15rem;
  font-weight: 600;
}

/* =========================
   VISIT US SECTION
========================= */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.visit-symptom-card {
  background: var(--card-bg);
  border: 1px solid #dbeaf4;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 18px 14px 16px;
  text-align: center;
  transition: var(--transition);
}

.visit-symptom-card:hover {
  transform: translateY(-4px);
}

.visit-icon {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.visit-symptom-card h3 {
  color: var(--dark-text);
  font-size: 1.1rem;
  line-height: 1.35;
}


/* =========================
   PREMIUM FOOTER
========================= */
.site-footer {
  margin-top: 60px;
  background: linear-gradient(180deg, #eaf6fb 0%, #dceff8 100%);
  border-top: 1px solid #d2e5f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding: 55px 0 30px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: var(--body-text);
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-about p {
  max-width: 320px;
}

/* Footer Buttons */
.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.whatsapp-btn {
  background: linear-gradient(90deg, #58c1c9 0%, #4ea7cf 100%);
  color: #fff;
}

.call-btn {
  background: #ffffff;
  color: var(--primary-blue);
  border: 1px solid #c8deec;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-2px);
}

/* Map link */
.map-mini-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--secondary-blue);
  font-weight: 600;
  text-decoration: none;
}

.map-mini-link:hover {
  text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #cfe0ec;
  text-align: center;
  padding: 18px 12px;
}

.footer-bottom p {
  color: var(--dark-text);
  font-size: 0.95rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .cards-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .visit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-card {
    grid-column: span 3;
  }

  .about-text h2 {
    font-size: 2.4rem;
  }

  .about-qualification {
    font-size: 1.5rem;
  }

  .about-experience {
    font-size: 1.4rem;
  }

  .about-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 900px) {
  .nav-wrapper {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .navbar {
    width: 100%;
    display: none;
  }

  .navbar.show {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 0 10px;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 1;
    text-align: center;
  }

  .hero-content h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: 2;
  }

  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-card {
    grid-column: span 2;
  }

  .section-heading h2::before,
  .section-heading h2::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .logo img {
    width: 210px;
  }

  .hero-section {
    padding: 40px 0 85px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .cards-grid-4,
  .cards-grid-5,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    grid-column: span 1;
  }

  .about-text h2,
  .section-heading h2 {
    font-size: 2rem;
  }

  .about-qualification {
    font-size: 1.2rem;
  }

  .about-experience {
    font-size: 1.1rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .service-card h3,
  .visit-symptom-card h3 {
    font-size: 1rem;
  }

  .phone-highlight {
    font-size: 1.2rem !important;
  }
}













/* =================================
====================================
====================================
====================================
====================================
====================================
          ABOUT PAGE
====================================
====================================
====================================
====================================
====================================
================================== */

/* =========================
   ABOUT PAGE HERO
========================= */
.about-page-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 32px;
  background:
    radial-gradient(circle at left top, rgba(101, 195, 203, 0.08), transparent 35%),
    linear-gradient(180deg, #fbfeff 0%, #f3fbff 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 28px;
}

.about-hero-content h1 {
  font-size: clamp(2.7rem, 3.2vw, 3.9rem);
  color: var(--primary-blue);
  line-height: 1.05;
  margin-bottom: 14px;
}

.about-hero-content h2 {
  font-size: clamp(1.35rem, 1.2vw, 1.95rem);
  color: var(--dark-text);
  font-weight: 500;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 2px solid #d8e6f1;
  max-width: 540px;
}

.about-hero-intro {
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 620px;
  color: var(--body-text);
  margin-bottom: 26px;
}

.about-hero-content > p {
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 620px;
  color: var(--body-text);
  margin-bottom: 26px;
}

.about-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-image img {
  width: 78%;
  max-width: 540px;
  object-fit: contain;
}

/* =========================
   TOP MINI CARDS
========================= */
.about-top-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 720px;
}

.about-mini-card {
  text-align: center;
  padding: 22px 14px 18px;
  position: relative;
  min-height: 185px;
}

.about-mini-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: #dfeaf3;
}

.about-mini-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.about-mini-card h3 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.about-mini-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--dark-text);
  font-weight: 500;
}

.about-page-wave {
  margin-top: -18px;
  height: 100px;
  background:
    radial-gradient(120% 100% at 10% 100%, rgba(130, 208, 221, 0.16), transparent 45%),
    radial-gradient(120% 100% at 90% 100%, rgba(104, 177, 225, 0.13), transparent 45%);
}

/* =========================
   ABOUT MAIN SECTION
========================= */
.about-main-section {
  position: relative;
  padding: 12px 0 30px;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.about-block {
  margin-bottom: 34px;
}

.about-block h2 {
  color: var(--primary-blue);
  font-size: 2.1rem;
  margin-bottom: 20px;
}

/* =========================
   RICH TEXT CONTENT
========================= */
.about-rich-text {
  display: grid;
  gap: 16px;
}

.about-rich-text p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--body-text);
}

/* =========================
   SPECIALIZATION LIST
========================= */
.specialization-list {
  padding-left: 0;
  list-style: none;
}

.specialization-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-text);
}

.specialization-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #64bccc;
  font-weight: 700;
  font-size: 1.15rem;
}

/* =========================
   QUALIFICATION TEXT
========================= */
.qualification-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--body-text);
  margin-bottom: 22px;
  padding-top: 10px;
  border-top: 1px solid #dbe7f1;
}

/* =========================
   QUALIFICATION CARDS
========================= */
.qualification-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.qualification-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.qualification-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.qualification-card h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 6px;
  line-height: 1.35;
}

.qualification-card p {
  color: var(--dark-text);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* =========================
   PROFESSIONAL ROLES CARD
========================= */
.professional-roles-card {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 20px 22px;
}

.professional-roles-card h3 {
  color: var(--primary-blue);
  font-size: 1.28rem;
  margin-bottom: 14px;
}

.roles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roles-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--dark-text);
  line-height: 1.7;
  font-size: 1rem;
}

.roles-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-blue);
  font-size: 1.2rem;
  font-weight: 700;
}

/* =========================
   REVIEWS SUMMARY CARD
========================= */
.reviews-summary-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
  margin-bottom: 20px;
}

.reviews-summary-header h3 {
  color: var(--primary-blue);
  font-size: 1.55rem;
  margin-bottom: 18px;
  line-height: 1.35;
}

.reviews-summary-header span {
  color: #6f7f8f;
  font-weight: 500;
}

.reviews-summary-body {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.reviews-score-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #1d1f24;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviews-score-circle span {
  color: #ffffff;
  font-size: 1.95rem;
  font-weight: 600;
}

.reviews-score-text p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--dark-text);
  font-weight: 600;
}

.reviews-metrics {
  display: grid;
  gap: 16px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 14px;
}

.metric-row span {
  color: var(--dark-text);
  font-size: 1rem;
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: #e7eef4;
  border-radius: 999px;
  overflow: hidden;
}

.metric-fill {
  width: 100%;
  height: 100%;
  background: #22252b;
  border-radius: 999px;
}

.metric-row strong {
  color: #22252b;
  font-size: 1rem;
}

/* =========================
   TESTIMONIAL CARD
========================= */
.testimonials-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 22px 18px 18px;
  margin-bottom: 20px;
}

.testimonials-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonials-header img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.testimonials-header h3 {
  color: var(--primary-blue);
  font-size: 1.45rem;
}

.testimonial-box {
  background: #ffffff;
  border: 1px solid #e4eef5;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(71, 108, 141, 0.08);
  padding: 18px 18px 14px;
  margin-bottom: 16px;
}

.testimonial-box p {
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 10px;
}

.testimonial-box span {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 0.98rem;
}

.testimonial-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 12px 22px;
  border-radius: 12px;
  background: linear-gradient(90deg, #56bcc8 0%, #4b9fd0 100%);
  color: #fff;
  font-weight: 600;
  margin: 6px auto 0;
}

.testimonials-card .testimonial-btn {
  display: flex;
}

/* =========================
   SIDE APPOINTMENT CARD
========================= */
.appointment-side-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.appointment-side-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.appointment-side-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

/* =========================
   ABOUT CTA SECTION
========================= */
.about-cta-section {
  padding: 18px 0 20px;
}

.about-cta-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 34px 20px 38px;
}

.about-cta-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 70px;
  background:
    radial-gradient(120% 100% at 15% 100%, rgba(130, 208, 221, 0.18), transparent 45%),
    radial-gradient(120% 100% at 85% 100%, rgba(104, 177, 225, 0.16), transparent 45%);
}

.about-cta-card h2 {
  position: relative;
  z-index: 1;
  color: var(--primary-blue);
  font-size: 2.15rem;
  margin-bottom: 14px;
}

.about-cta-card p {
  position: relative;
  z-index: 1;
  color: var(--body-text);
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.about-cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   ABOUT PAGE RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .about-main-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-content {
    order: 1;
  }

  .about-hero-image {
    order: 2;
  }

  .about-hero-image img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .about-top-cards {
    grid-template-columns: 1fr;
  }

  .about-mini-card {
    min-height: auto;
  }

  .about-mini-card:not(:last-child)::after {
    display: none;
  }

  .qualification-cards {
    grid-template-columns: 1fr;
  }

  .about-block h2 {
    font-size: 1.8rem;
  }

  .testimonials-header h3 {
    font-size: 1.25rem;
  }

  .about-cta-card h2 {
    font-size: 1.8rem;
  }

  .reviews-summary-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .metric-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reviews-score-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-hero-content h2 {
    font-size: 1.12rem;
  }

  .about-hero-intro,
  .about-hero-content > p,
  .about-rich-text p,
  .specialization-list li,
  .qualification-text,
  .testimonial-box p,
  .roles-list li {
    font-size: 0.98rem;
  }

  .appointment-side-link {
    font-size: 1.02rem;
  }

  .reviews-score-circle {
    width: 90px;
    height: 90px;
  }

  .reviews-score-circle span {
    font-size: 1.6rem;
  }

  .reviews-summary-header h3 {
    font-size: 1.3rem;
  }

  .about-hero-image img {
    width: 82%;
  }
}

.facebook-link{
  display:inline-block;
  margin-left:6px;
  color:#3b5998;
  font-weight:500;
  text-decoration:none;
}

.facebook-link:hover{
  text-decoration:underline;
}







/* =========================
/* =========================
/* =========================
/* =========================
/* =========================
/* =========================
   SERVICES PAGE HERO
============================
============================
============================
============================
========================== */
.services-page-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 30px;
  background:
    radial-gradient(circle at left top, rgba(101, 195, 203, 0.08), transparent 35%),
    linear-gradient(180deg, #fbfeff 0%, #f4fbff 100%);
}

.services-hero-content {
  text-align: center;
}

.services-hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--primary-blue);
  line-height: 1.08;
  margin-bottom: 16px;
}

.services-hero-content h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: var(--dark-text);
  font-weight: 500;
  margin-bottom: 20px;
}

.services-hero-content p {
  max-width: 920px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--body-text);
}

.services-page-wave {
  margin-top: 18px;
  height: 90px;
  background:
    radial-gradient(120% 100% at 8% 100%, rgba(130, 208, 221, 0.16), transparent 45%),
    radial-gradient(120% 100% at 92% 100%, rgba(104, 177, 225, 0.14), transparent 45%);
}

/* =========================
   SERVICES PAGE MAIN
========================= */
.services-page-main {
  padding: 10px 0 26px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-detail-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbeaf4;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 20px;
  min-height: 230px;
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-4px);
}

.service-detail-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 16px;
}

.service-detail-card h3 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.service-card-line {
  height: 2px;
  width: 100%;
  background: #d9e8f3;
  margin-bottom: 14px;
}

.service-detail-card p {
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================
   SERVICES SYMPTOMS SECTION
========================= */
.services-symptoms-section {
  padding: 16px 0 24px;
}

.services-symptoms-subtitle {
  text-align: center;
  color: var(--body-text);
  font-size: 1.08rem;
  margin-top: -8px;
  margin-bottom: 22px;
}

.services-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.symptom-mini-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbeaf4;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 18px 12px 16px;
  transition: var(--transition);
}

.symptom-mini-card:hover {
  transform: translateY(-4px);
}

.symptom-mini-icon {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.symptom-mini-card h3 {
  color: var(--dark-text);
  font-size: 1rem;
  line-height: 1.35;
}

/* =========================
   SERVICES CTA
========================= */
.services-cta-section {
  padding: 18px 0 18px;
}

.services-cta-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 34px 20px 36px;
}

.services-cta-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 82px;
  background:
    radial-gradient(120% 100% at 15% 100%, rgba(130, 208, 221, 0.18), transparent 45%),
    radial-gradient(120% 100% at 85% 100%, rgba(104, 177, 225, 0.16), transparent 45%);
}

.services-cta-card h2 {
  position: relative;
  z-index: 1;
  color: var(--primary-blue);
  font-size: 2.25rem;
  margin-bottom: 14px;
}

.services-cta-card p {
  position: relative;
  z-index: 1;
  color: var(--body-text);
  font-size: 1.08rem;
  max-width: 780px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.services-cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   SERVICES PAGE RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 2.4rem;
  }

  .services-hero-content h2 {
    font-size: 1.25rem;
  }

  .services-cta-card h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .services-page-grid,
  .services-symptoms-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    min-height: auto;
  }

  .service-detail-card h3,
  .symptom-mini-card h3 {
    font-size: 1rem;
  }

  .services-hero-content p,
  .service-detail-card p,
  .services-symptoms-subtitle,
  .services-cta-card p {
    font-size: 0.98rem;
  }
}











/* =========================
/* =========================
/* =========================
/* =========================
/* =========================
   CONTACT PAGE HERO
============================
============================
============================
============================
============================
========================= */
.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 24px;
  background:
    radial-gradient(circle at left top, rgba(101, 195, 203, 0.08), transparent 35%),
    linear-gradient(180deg, #fbfeff 0%, #f4fbff 100%);
}

.contact-hero-content {
  text-align: center;
}

.contact-hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--primary-blue);
  margin-bottom: 14px;
  line-height: 1.08;
}

.contact-hero-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  color: var(--dark-text);
  font-weight: 500;
}

.contact-page-wave {
  margin-top: 18px;
  height: 90px;
  background:
    radial-gradient(120% 100% at 8% 100%, rgba(130, 208, 221, 0.16), transparent 45%),
    radial-gradient(120% 100% at 92% 100%, rgba(104, 177, 225, 0.14), transparent 45%);
}

/* =========================
   CONTACT TOP SECTION
========================= */
.contact-top-section {
  padding: 12px 0 26px;
}

.contact-top-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: start;
}

.contact-right-stack {
  display: grid;
  gap: 18px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbeaf4;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-card-header img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-card-header h3 {
  color: var(--primary-blue);
  font-size: 1.6rem;
}

.contact-card-line {
  height: 2px;
  width: 100%;
  background: #d9e8f3;
  margin-bottom: 16px;
}

.contact-main-text {
  color: var(--dark-text);
  font-size: 1.08rem;
  margin-bottom: 14px;
}

.contact-map-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.contact-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(90deg, #57bcca 0%, #4d9fd0 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  color: var(--dark-text);
  font-size: 1.02rem;
}

.hours-row span:first-child {
  font-weight: 600;
}

.touch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.touch-row p {
  color: var(--primary-blue);
  font-size: 1.3rem;
  font-weight: 600;
}

.touch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

.call-touch-btn {
  background: linear-gradient(90deg, #57bcca 0%, #4d9fd0 100%);
}

.whatsapp-touch-btn {
  width: 100%;
  background: linear-gradient(90deg, #62c4a4 0%, #49b58e 100%);
}

/* =========================
   CONTACT FORM SECTION
========================= */
.contact-form-section {
  padding: 20px 0 22px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 22px;
  align-items: start;
}

.contact-form-wrapper h2 {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  color: var(--body-text);
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe7f1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark-text);
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8bc6df;
  box-shadow: 0 0 0 4px rgba(124, 190, 220, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-submit-btn {
  width: fit-content;
  border: none;
  border-radius: 14px;
  padding: 14px 26px;
  background: linear-gradient(90deg, #57bcca 0%, #4d9fd0 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(77, 165, 217, 0.22);
}

/* =========================
   DOCTOR CONTACT CARD
========================= */
.doctor-contact-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbeaf4;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.doctor-contact-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.doctor-contact-content {
  padding: 20px 18px 22px;
}

.doctor-contact-content h3 {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 6px;
}

.doctor-title {
  color: var(--dark-text);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.doctor-info-line {
  height: 2px;
  width: 100%;
  background: #d9e8f3;
  margin-bottom: 14px;
}

.doctor-contact-content p {
  color: var(--dark-text);
  font-size: 1rem;
  line-height: 1.75;
}

.doctor-evening-time {
  padding-left: 66px;
}

/* =========================
   CONTACT CTA
========================= */
.contact-bottom-cta {
  padding: 16px 0 18px;
}

.contact-cta-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 34px 20px 36px;
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 82px;
  background:
    radial-gradient(120% 100% at 15% 100%, rgba(130, 208, 221, 0.18), transparent 45%),
    radial-gradient(120% 100% at 85% 100%, rgba(104, 177, 225, 0.16), transparent 45%);
}

.contact-cta-card h2 {
  position: relative;
  z-index: 1;
  color: var(--primary-blue);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-cta-card p {
  position: relative;
  z-index: 1;
  color: var(--body-text);
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto 22px;
  line-height: 1.8;
}

.contact-cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   CONTACT FORM + DOCTOR CARD
========================= */
.contact-form-section {
  padding: 20px 0 22px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
}

.contact-form-wrapper h2 {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  color: var(--body-text);
  font-size: 1.02rem;
  margin-bottom: 18px;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe7f1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 15px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark-text);
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8bc6df;
  box-shadow: 0 0 0 4px rgba(124, 190, 220, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-submit-btn {
  width: fit-content;
  border: none;
  border-radius: 14px;
  padding: 14px 26px;
  background: linear-gradient(90deg, #57bcca 0%, #4d9fd0 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(77, 165, 217, 0.22);
  transition: var(--transition);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   DOCTOR CONTACT CARD
========================= */
.doctor-contact-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dbeaf4;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.doctor-contact-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.doctor-contact-content {
  padding: 22px 20px 24px;
}

.doctor-contact-content h3 {
  color: var(--primary-blue);
  font-size: 1.9rem;
  margin-bottom: 6px;
}

.doctor-title {
  color: var(--dark-text);
  font-size: 1.08rem;
  margin-bottom: 14px;
}

.doctor-info-line {
  height: 2px;
  width: 100%;
  background: #d9e8f3;
  margin-bottom: 14px;
}

.doctor-contact-content p {
  color: var(--dark-text);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.doctor-note {
  margin-top: 10px;
  color: var(--body-text) !important;
}

.doctor-card-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.doctor-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.call-doctor-btn {
  background: #ffffff;
  color: var(--primary-blue);
  border: 1px solid #cfe0ec;
}

.whatsapp-doctor-btn {
  background: linear-gradient(90deg, #62c4a4 0%, #49b58e 100%);
  color: #fff;
}

.call-doctor-btn:hover,
.whatsapp-doctor-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   SUCCESS POPUP
========================= */
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(18, 32, 46, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.success-popup.show {
  display: flex;
}

.success-popup-content {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(36, 64, 92, 0.18);
  animation: popupFade 0.25s ease;
}

.success-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #62c4a4 0%, #49b58e 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.success-popup-content h3 {
  color: var(--primary-blue);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.success-popup-content p {
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.success-popup-content button {
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  background: linear-gradient(90deg, #57bcca 0%, #4d9fd0 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   CONTACT RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper h2,
  .doctor-contact-content h3 {
    font-size: 1.65rem;
  }
}

@media (max-width: 600px) {
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper,
  .doctor-contact-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .doctor-contact-card img {
    height: 250px;
  }

  .doctor-card-buttons {
    flex-direction: column;
  }

  .doctor-card-btn {
    width: 100%;
  }
}

/* =========================
   CONTACT PAGE RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .contact-top-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2.3rem;
  }

  .contact-hero-content h2 {
    font-size: 1.15rem;
  }

  .contact-card-header h3 {
    font-size: 1.3rem;
  }

  .contact-form-wrapper h2,
  .contact-cta-card h2,
  .doctor-contact-content h3 {
    font-size: 1.7rem;
  }

  .touch-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper > p,
  .contact-main-text,
  .hours-row,
  .contact-form input,
  .contact-form textarea,
  .contact-cta-card p,
  .doctor-contact-content p {
    font-size: 0.96rem;
  }

  .doctor-evening-time {
    padding-left: 0;
  }

  .contact-map-image {
    height: 180px;
  }
}





/* =========================
   PREMIUM FLOATING ACTION BUTTONS
========================= */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1500;
}

.floating-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(29, 54, 79, 0.18);
  transition: all 0.3s ease;
  overflow: hidden;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 28px rgba(29, 54, 79, 0.24);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  flex-shrink: 0;
}

/* Label bubble */
.floating-label {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: var(--dark-text);
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(29, 54, 79, 0.12);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.floating-btn:hover .floating-label {
  opacity: 1;
  visibility: visible;
  right: 68px;
}

/* Button themes */
.whatsapp-float {
  background: linear-gradient(135deg, #61c8a4 0%, #41b883 100%);
}

.call-float {
  background: linear-gradient(135deg, #5ec2dc 0%, #4397d1 100%);
}

.top-float {
  background: linear-gradient(135deg, #3f8ad6 0%, #2c66b5 100%);
  display: none; /* hidden until scroll */
}

/* Optional subtle border shine */
.floating-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .floating-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Hide labels on smaller screens for cleaner look */
  .floating-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }
}