/* =======================================
   RATH HOME CARE - MAIN STYLESHEET
   ======================================= */

/* ---- ROOT VARIABLES ---- */
:root {
  --primary: #0f4c81;
  --primary-dark: #0a365c;
  --secondary: #00a896;
  --accent: #028090;
  --highlight-cyan: #64dfdf;
  --success-green: #25D366;
  --text-dark: #1b263b;
  --text-muted: #5c6b7d;
  --bg-light: #f4f8fb;
  --border-light: #e1ebf4;
  --white: #ffffff;
  --shadow-sm: 0 2px 15px rgba(15, 76, 129, 0.08);
  --shadow-md: 0 8px 40px rgba(15, 76, 129, 0.14);
  --radius-lg: 1.25rem;
  --transition: all 0.3s ease;
}

/* ---- GLOBAL ---- */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ============================
   TOP BAR
============================= */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.84rem;
  font-weight: 500;
}

/* ============================
   NAVBAR
============================= */
#mainNav {
  background: var(--white) !important;
  padding: 12px 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}

#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md) !important;
}

.navbar-brand img {
  transition: var(--transition);
}

.nav-link {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white) !important;
  border: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 95, 168, 0.35);
  color: var(--white) !important;
}

/* ============================
   HERO SECTION
============================= */
.hero-section {
  background: linear-gradient(135deg, #071e3d 0%, #0f4c81 60%, #0a2f5c 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  min-height: 620px;
  color: #ffffff;
}

.hero-section h1,
.hero-section .display-4,
.hero-section .hero-title {
  color: #ffffff !important;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero-section p.lead,
.hero-section .hero-subtitle {
  color: #f1f5f9 !important;
  font-size: 1.15rem;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.min-vh-hero {
  min-height: 80vh;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 600px;
  font-weight: 400;
}

/* Stats in hero */
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 8px;
  color: white;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #64dfdf;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 500;
}

/* Hero Card Float */
.hero-card-float {
  animation: float-card 3s ease-in-out infinite;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-info-card {
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-info-card .form-control,
.hero-info-card .form-select {
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.hero-info-card .form-control:focus,
.hero-info-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1);
}

/* ============================
   SECTION STYLES
============================= */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #4481eb);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================
   SERVICE CARDS
============================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transition: var(--transition);
  border-radius: 0 0 4px 4px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(26, 95, 168, 0.1), rgba(26, 95, 168, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), #4481eb);
  color: white;
  transform: scale(1.1);
}

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.btn-link-custom {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.btn-link-custom:hover {
  color: var(--primary-dark);
  gap: 8px;
}

/* ============================
   WHY US SECTION
============================= */
.why-us-section {
  background: var(--bg-light);
  position: relative;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #4481eb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-image-grid {
  position: relative;
  display: inline-block;
}

.why-image-grid img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  height: 480px;
}

.why-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  animation: float-card 3s ease-in-out infinite;
}

/* ============================
   HOW IT WORKS - STEP CARDS
============================= */
.step-card {
  padding: 2.5rem 1.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: rgba(26, 95, 168, 0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), #4481eb);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transform: rotate(10deg) scale(1.1);
}

/* ============================
   TESTIMONIALS
============================= */
.testimonial-section {
  background: linear-gradient(135deg, #f8faff 0%, #eef3fb 100%);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: 'Poppins', sans-serif;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-weight: 800;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #4481eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================
   CTA SECTION
============================= */
.cta-section {
  background: linear-gradient(135deg, #0a3d72 0%, #1a5fa8 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

/* ============================
   PAGE HERO (Inner Pages)
============================= */
.page-hero {
  background: linear-gradient(135deg, #0a3d72 0%, #1a5fa8 100%);
  padding: 80px 0 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ============================
   FOOTER
============================= */
.footer-section {
  background: #091322;
  color: #d1d7e0;
}

.footer-logo-wrapper {
  display: inline-block;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.2rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  display: block;
  filter: none;
  opacity: 1;
}

.footer-desc {
  color: #c2c9d6 !important;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-links a,
.footer-contact a {
  color: #d1d7e0;
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

.footer-contact li {
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  color: #e2e8f0;
}

.footer-contact li i {
  color: var(--secondary);
  width: 20px;
}

.footer-bottom-text {
  color: #a0aec0 !important;
  font-size: 0.88rem;
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.15);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon.whatsapp {
  background: #25D366;
  color: white;
}

.social-icon.phone {
  background: var(--primary);
  color: white;
}

.social-icon.email {
  background: var(--accent);
  color: white;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.1);
}

/* ============================
   FLOATING BUTTONS
============================= */
.float-whatsapp,
.float-call {
  position: fixed;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  z-index: 99999;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  text-decoration: none;
  animation: float-pulse 2s ease-in-out infinite;
}

.float-whatsapp {
  background: #25D366;
  color: white;
  bottom: 88px;
  right: 22px;
}

.float-call {
  background: var(--primary);
  color: white;
  bottom: 22px;
  right: 22px;
}

@keyframes float-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

.float-call {
  animation-name: float-pulse-blue;
}

@keyframes float-pulse-blue {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(26, 95, 168, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 10px rgba(26, 95, 168, 0);
  }
}

.float-whatsapp:hover,
.float-call:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: 68px;
  background: #333;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-whatsapp:hover .float-tooltip,
.float-call:hover .float-tooltip {
  opacity: 1;
}

/* ============================
   ABOUT PAGE
============================= */
.team-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ============================
   CONTACT PAGE
============================= */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.form-section .form-control,
.form-section .form-select,
.form-section textarea {
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.93rem;
  transition: var(--transition);
}

.form-section .form-control:focus,
.form-section .form-select:focus,
.form-section textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1);
}

/* ============================
   SERVICES PAGE
============================= */
.service-detail-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-detail-card .card-header {
  background: linear-gradient(135deg, var(--primary), #4481eb);
  color: white;
  border: none;
  padding: 1.5rem;
}

/* ============================
   PRIVACY POLICY
============================= */
.policy-section h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* ============================
   BREADCRUMB
============================= */
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-item.active {
  color: var(--secondary);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================
   UTILITY CLASSES
============================= */
.text-primary-custom {
  color: var(--primary) !important;
}

.bg-primary-custom {
  background-color: var(--primary) !important;
}

/* ============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .float-whatsapp {
    bottom: 84px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .float-call {
    bottom: 24px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .why-image-grid img {
    height: 300px;
  }

  .why-badge-float {
    left: 0;
    bottom: -10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.93rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* ============================
   PRICING CARDS
============================= */
.pricing-card {
  border: 2px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  background: var(--white);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.pricing-popular {
  border-color: #00a896;
  transform: scale(1.02);
  box-shadow: 0 12px 50px rgba(0, 168, 150, 0.15);
  background: linear-gradient(135deg, #0f4c81, #13609e);
}

.pricing-popular:hover {
  transform: scale(1.02) translateY(-8px);
  border-color: #00a896;
  box-shadow: 0 20px 60px rgba(0, 168, 150, 0.25);
}

.pricing-premium {
  border-color: #2b5c8f;
  background: linear-gradient(135deg, #1b263b, #0d1b2a);
}

.pricing-premium:hover {
  border-color: #00a896;
  box-shadow: 0 12px 50px rgba(15, 76, 129, 0.2);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: -1px;
  background: #00a896;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 16px 5px 12px;
  border-radius: 20px 0 0 20px;
  letter-spacing: 0.03em;
  z-index: 2;
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding: 2rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-popular .pricing-header,
.pricing-premium .pricing-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-icon {
  width: 56px;
  height: 56px;
  background: rgba(15, 76, 129, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pricing-popular .pricing-icon {
  background: rgba(0, 168, 150, 0.2);
  color: #64dfdf;
}

.pricing-premium .pricing-icon {
  background: rgba(15, 76, 129, 0.3);
  color: #64dfdf;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.pricing-popular .pricing-name,
.pricing-premium .pricing-name {
  color: var(--white);
}

.pricing-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-popular .pricing-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-premium .pricing-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-body {
  padding: 1.5rem 1.75rem 2rem;
}

.pricing-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-popular .pricing-amount,
.pricing-premium .pricing-amount {
  color: var(--white);
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-popular .pricing-amount .currency {
  color: #64dfdf;
}

.pricing-premium .pricing-amount .currency {
  color: #64dfdf;
}

.pricing-amount .per {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-popular .pricing-amount .per {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-premium .pricing-amount .per {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.pricing-popular .pricing-tagline,
.pricing-premium .pricing-tagline {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.pricing-popular .pricing-features li,
.pricing-premium .pricing-features li {
  color: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.pricing-features li .fa-check {
  color: #00b894;
  font-size: 0.75rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(0, 184, 148, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-features li .fa-times {
  color: #b2bec3;
  font-size: 0.75rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-features li.text-muted {
  color: #adb5bd !important;
}

.care-tab {
  transition: var(--transition);
}

.care-tab.active-tab {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(26, 95, 168, 0.3);
}

@media (max-width: 768px) {
  .pricing-popular {
    transform: scale(1);
  }

  .pricing-popular:hover {
    transform: translateY(-8px);
  }

  .pricing-amount {
    font-size: 2rem;
  }
}

/* ============================
   ANIMATIONS
============================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =======================================
   PREMIUM HEALTHCARE HEADER & TOP BAR
   ======================================= */
.top-bar {
  background: #071b2f;
  color: #e2e8f0;
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.01em;
}

.top-bar a {
  color: #e2e8f0;
  transition: var(--transition);
}

.top-bar a:hover {
  color: #64dfdf;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseGreen 1.8s infinite;
  margin-right: 6px;
  vertical-align: middle;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.navbar-medical {
  background: #ffffff;
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.06);
}

.navbar-medical.scrolled {
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.12);
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
}

.logo-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(15, 76, 129, 0.15);
  border: 2px solid #e1ebf4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  flex-shrink: 0;
}

.logo-box img,
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #0a2540;
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00a896;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 3px;
}

@media (min-width: 992px) {
  .navbar-medical .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-medical .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 1.25rem;
  }

  .navbar-medical .navbar-nav {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }
}

.nav-link-custom {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: #1e293b !important;
  padding: 7px 12px !important;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap !important;
  margin: 0 1px;
}

@media (min-width: 1200px) {
  .nav-link-custom {
    padding: 8px 16px !important;
    font-size: 0.96rem;
    margin: 0 2px;
  }
}

.nav-link-custom:hover {
  color: #0f4c81 !important;
  background-color: rgba(15, 76, 129, 0.06);
}

.nav-link-custom.active {
  color: #0f4c81 !important;
  background-color: rgba(15, 76, 129, 0.1);
  font-weight: 700;
}

.btn-header-whatsapp {
  background-color: #25D366;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 50px;
  padding: 8px 18px;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.btn-header-whatsapp:hover {
  background-color: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.38);
  color: #ffffff !important;
}

.btn-header-call {
  background: linear-gradient(135deg, #0f4c81 0%, #00a896 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50px;
  padding: 8px 18px;
  border: none;
  box-shadow: 0 4px 15px rgba(15, 76, 129, 0.3);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.btn-header-call:hover {
  background: linear-gradient(135deg, #0a365c 0%, #028090 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 76, 129, 0.4);
  color: #ffffff !important;
}

/* =======================================
   PREMIUM HOSPITAL FOOTER
   ======================================= */
.footer-medical {
  background: linear-gradient(180deg, #091a2b 0%, #040c15 100%) !important;
  color: #cbd5e1;
  border-top: 4px solid #00a896;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
}

.footer-trust-strip {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 168, 150, 0.15);
  border: 1px solid rgba(0, 168, 150, 0.3);
  color: #64dfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.footer-heading {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: #00a896;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #64dfdf !important;
  transform: translateX(4px);
}

.footer-links a i {
  font-size: 0.75rem;
  color: #00a896;
  transition: all 0.2s ease;
}

.footer-links a:hover i {
  color: #64dfdf;
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 168, 150, 0.15);
  border: 1px solid rgba(0, 168, 150, 0.3);
  color: #64dfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #64dfdf;
}

.text-cyan {
  color: #64dfdf !important;
}

.text-teal {
  color: #00a896 !important;
}

.footer-bottom {
  background: #040910;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  font-size: 0.84rem;
  color: #64748b;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #64dfdf;
}

/* =======================================
   FLOATING WHATSAPP & ACTIONS
   ======================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 85px;
  right: 25px;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 50px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  z-index: 99999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: floatPulse 2.5s infinite;
}

.floating-whatsapp:hover {
  background-color: #1ebc59;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
  color: #ffffff !important;
}

.floating-whatsapp i {
  font-size: 1.45rem;
  line-height: 1;
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .floating-whatsapp {
    bottom: 75px;
    right: 20px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none !important;
  }

  .floating-whatsapp i {
    font-size: 1.7rem;
  }
}

/* ==========================================================================
   Pagination Styling (Clean, Proportional Bootstrap 5)
   ========================================================================== */
.pagination {
  display: flex !important;
  padding-left: 0 !important;
  list-style: none !important;
  gap: 6px !important;
  margin-bottom: 0 !important;
  align-items: center !important;
}

.pagination .page-item .page-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0 14px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--color-primary-navy) !important;
  background-color: #ffffff !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out !important;
}

.pagination .page-item.active .page-link {
  background-color: var(--color-primary-teal) !important;
  border-color: var(--color-primary-teal) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.25) !important;
}

.pagination .page-item:not(.active) .page-link:hover {
  background-color: #f0fdfa !important;
  border-color: var(--color-primary-teal) !important;
  color: var(--color-primary-teal) !important;
}

.pagination .page-item.disabled .page-link {
  color: #adb5bd !important;
  pointer-events: none !important;
  background-color: #f8f9fa !important;
  border-color: #dee2e6 !important;
}

.pagination svg,
nav[role="navigation"] svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  vertical-align: middle !important;
}