/* 
 * Hair O Graft - Premium Hair Transplant & Cosmetic Clinic CSS
 * Theme: White, Royal Blue, Deep Navy Blue, Sky Blue, and Light Gray Accents
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0A66C2;       /* Royal Blue */
  --primary-hover: #0854a0;
  --secondary: #0F2D52;     /* Deep Navy Blue */
  --secondary-hover: #0a1f3a;
  --light-bg: #F5F7FA;      /* Subtle Light Gray Accent */
  --sky-blue: #EAF6FF;      /* Sky Blue Accent */
  --white: #FFFFFF;         /* Crisp White */
  --text-dark: #1E293B;     /* Slate Dark Text */
  --text-muted: #64748B;    /* Slate Gray Text */
  --border-color: #E2E8F0;  /* Clean border lines */
  --whatsapp-color: #25D366;
  --shadow-sm: 0 4px 6px -1px rgba(10, 102, 194, 0.03), 0 2px 4px -2px rgba(10, 102, 194, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(15, 45, 82, 0.05), 0 4px 6px -4px rgba(15, 45, 82, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 45, 82, 0.08), 0 8px 10px -6px rgba(15, 45, 82, 0.08);
  --shadow-glow: 0 0 25px rgba(10, 102, 194, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

/* Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 600;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--primary-hover);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Section Spacing & Headers */
.section-padding {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background-color: var(--sky-blue);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-desc {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px auto;
  color: var(--text-muted);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.pulse-logo {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--sky-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(10, 102, 194, 0.4);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

.pulse-logo i {
  font-size: 2.2rem;
  color: var(--primary);
}

.preloader-text {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--secondary);
  font-size: 1.2rem;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 102, 194, 0.7);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(10, 102, 194, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 102, 194, 0);
  }
}

/* Buttons */
.btn-premium {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#navBookBtn {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-premium-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
}

.btn-premium-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}

.btn-premium-secondary {
  background-color: var(--white);
  color: var(--secondary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-premium-secondary:hover {
  background-color: var(--light-bg);
  border-color: var(--text-muted);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-premium-navy {
  background-color: var(--secondary);
  color: var(--white);
  border: 1px solid var(--secondary);
}

.btn-premium-navy:hover {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 45, 82, 0.25);
}

/* Header & Sticky Navbar */
.navbar-custom {
  padding: 20px 0;
  transition: var(--transition-smooth);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-custom.scrolled {
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-brand-img {
  height: 52px;
  width: auto;
  margin-right: 10px;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled .navbar-brand-img {
  height: 42px;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-left: 10px;
}

.brand-text span {
  color: var(--primary);
}

.navbar-custom .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.95rem;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: calc(100% - 32px);
}

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

/* Brand Subtitle Phone Link Styles */
.brand-phone-sub {
  transition: color 0.3s ease;
}

.brand-phone-sub:hover {
  color: var(--secondary) !important;
}

.brand-phone-sub:hover i {
  animation: phoneRing 0.5s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

/* Background Swiper */
.hero-bg-swiper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 0;
}

.hero-bg-slide {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .hero-bg-swiper {
    top: 130px;
    bottom: 50px;
    width: 65%;
    border-radius: 0;
    border: none;
  }
  .hero-bg-slide {
    background-position: center right;
  }
}

/* Text Swiper */
.hero-text-swiper {
  width: 100%;
  padding-bottom: 45px;
}

/* Customized colored typography matching the brand theme */
.txt-skin {
  color: var(--primary); /* Royal Blue */
  font-weight: 800;
}

.txt-hair {
  color: #0284C7; /* Premium sky/cyan blue */
  font-weight: 800;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
}

.txt-dental {
  color: var(--secondary); /* Deep Navy Blue */
  font-weight: 800;
}

/* CTA Gradient Button and extra text aligned to theme */
.btn-cta-gradient {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.25);
  font-family: var(--font-heading);
}

.btn-cta-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.35);
}

.cta-extra-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Bottom Dark Stats Panel aligned to Deep Navy and Sky Blue */
.hero-stats-banner {
  background-color: rgba(15, 45, 82, 0.96); /* Deep Navy */
  border-radius: 10px;
  border: 1px solid rgba(10, 102, 194, 0.15);
  padding: 14px 18px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  max-width: 500px;
}

.hero-stats-banner .stat-col {
  flex: 1;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 10px;
}

.hero-stats-banner .stat-col:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-stats-banner h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #38BDF8; /* Sky blue numeric highlights */
  margin-bottom: 2px;
}

.hero-stats-banner p {
  font-size: 0.65rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

/* Custom Swiper Pagination lines aligned to theme */
.hero-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  gap: 6px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 3px;
  border-radius: 0;
  background-color: #94A3B8;
  opacity: 0.4;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary) !important; /* Royal Blue active bullet */
  opacity: 1;
  width: 32px;
}

/* Removed top-right glow to ensure header stays pure white */
.hero-section::before {
  display: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 45, 82, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-text-panel {
  position: relative;
  z-index: 1;
}

.hero-text-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -20px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(10, 102, 194, 0.12) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: -1;
  pointer-events: none;
}

.hero-text-panel::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.06) 0%, rgba(56, 189, 248, 0.03) 40%, transparent 70%);
  z-index: -2;
  filter: blur(20px);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-tag i {
  color: var(--primary);
  font-size: 0.7rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--secondary);
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, #1E88E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 500px;
  color: var(--text-muted);
}

.hero-stats {
  margin-bottom: 24px;
}

.stat-item h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.stat-item p {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 45, 82, 0.15), 0 0 0 10px rgba(255, 255, 255, 0.6);
  border: none;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover .hero-image-container {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image-container img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero-image-wrapper:hover .hero-image-container img {
  transform: scale(1.1);
}

/* Floating Card widget */
.floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 28px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.4s ease;
}

.floating-badge:hover {
  transform: translateY(-5px) scale(1.02);
}

.floating-badge-1 {
  bottom: 40px;
  left: -30px;
}

.floating-badge-2 {
  top: 40px;
  right: -20px;
}

@media (max-width: 991px) {
  .floating-badge {
    position: static;
    margin-top: 20px;
    width: fit-content;
  }
}

.badge-icon {
  width: 48px;
  height: 48px;
  background-color: var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
}

.badge-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.badge-info p {
  font-size: 0.75rem;
  margin-bottom: 0;
  font-weight: 500;
}

/* About Us Section */
.about-image-grid-wrap {
  position: relative;
  padding-bottom: 20px;
}

.about-image-grid {
  position: relative;
}

.about-img-main {
  width: 85%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 45, 82, 0.05);
}

.about-img-sub {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 45%;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge-floating {
  position: absolute;
  bottom: 0px;
  left: -20px;
  background-color: var(--secondary);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 45, 82, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-badge-floating h4 {
  font-size: 2rem;
  font-weight: 800;
  color: #38BDF8; /* Sky Blue */
  margin-bottom: 0;
  line-height: 1;
}

.about-badge-floating p {
  font-size: 0.7rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Pillar Card Grid */
.about-pillars-grid {
  margin: 24px 0;
}

.about-pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 12px 14px;
  transition: all 0.3s ease;
  height: 100%;
}

.about-pillar-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.05);
}

.pillar-icon-wrap {
  background-color: var(--sky-blue);
  color: var(--primary);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon-wrap i {
  font-size: 0.85rem;
}

.about-pillar-card h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}

.about-pillar-card p {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.3;
}

/* Why Choose Us Section */
.choose-card {
  background: var(--white);
  border: 1px solid rgba(15, 45, 82, 0.08);
  border-radius: 16px;
  padding: 35px 28px;
  height: 100%;
  box-shadow: 0 4px 20px -2px rgba(15, 45, 82, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #38BDF8 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.choose-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 40px -10px rgba(10, 102, 194, 0.12), 0 0 0 1px rgba(10, 102, 194, 0.05);
}

.choose-card:hover::before {
  opacity: 1;
}

.choose-icon {
  width: 52px;
  height: 52px;
  background-color: var(--sky-blue);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(10, 102, 194, 0.1);
}

.choose-card:hover .choose-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(360deg);
  box-shadow: 0 0 15px rgba(10, 102, 194, 0.3);
  border-color: transparent;
}

.choose-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.3px;
}

.choose-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================
   Premium Services Section & Tabs CSS
   ========================================== */

#treatments {
  position: relative;
  overflow: hidden;
}

.treatments-watermark {
  position: absolute;
  width: 400px;
  height: 400px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.treatments-watermark-left {
  top: 15%;
  left: -100px;
}

.treatments-watermark-right {
  bottom: 10%;
  right: -100px;
}

#treatments .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .treatments-watermark {
    width: 250px;
    height: 250px;
    opacity: 0.1;
  }
  .treatments-watermark-left {
    left: -70px;
  }
  .treatments-watermark-right {
    right: -70px;
  }
}

.services-tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
  padding: 8px;
  background: var(--light-bg);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-color);
}

.services-tab-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-tab-btn i {
  font-size: 0.95rem;
}

.services-tab-btn:hover {
  color: var(--primary);
  background: rgba(10, 102, 194, 0.05);
}

.services-tab-btn.active {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.25);
}

/* Service Category Content Pane */
.services-pane {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.services-pane.active {
  display: block;
  animation: paneReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Premium Service Grid Card */
.premium-service-card {
  background: var(--white);
  border: 1px solid rgba(15, 45, 82, 0.06);
  border-radius: 16px;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.premium-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #38BDF8);
  opacity: 0;
  transition: var(--transition-smooth);
}

.premium-service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.premium-service-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: var(--sky-blue);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.premium-service-badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: var(--light-bg);
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.premium-service-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--secondary);
  transition: var(--transition-smooth);
}

.premium-service-card-body p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 0;
}

.premium-service-card-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
}

.premium-service-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.premium-service-link i {
  transition: transform 0.3s ease;
}

/* Hover States */
.premium-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 102, 194, 0.15);
}

.premium-service-card:hover::before {
  opacity: 1;
}

.premium-service-card:hover .premium-service-icon-wrap {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.premium-service-card:hover .premium-service-card-body h3 {
  color: var(--primary);
}

.premium-service-card:hover .premium-service-link {
  color: var(--primary-hover);
}

.premium-service-card:hover .premium-service-link i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .services-tabs-container {
    border-radius: 20px;
    padding: 6px;
  }
  .services-tab-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }
  .premium-service-card {
    padding: 24px 20px;
  }
}

/* Clinical Journey - Premium Watermark Steps Grid */
.journey-wrapper {
  position: relative;
  background-color: #F4F7FC;
  background-image: linear-gradient(rgba(244, 247, 252, 0.72), rgba(244, 247, 252, 0.72)), url('../images/facility.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
  padding: 40px 30px;
  border-radius: 20px;
}

.journey-card {
  background: var(--white);
  border: 1px solid rgba(15, 45, 82, 0.06);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(15, 45, 82, 0.01);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-align: left;
}

.journey-card::after {
  position: absolute;
  right: 15px;
  bottom: -5px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(10, 102, 194, 0.10);
  line-height: 1;
  z-index: 1;
  transition: all 0.4s ease;
  pointer-events: none;
}

.journey-card[data-step="01"]::after { content: '01'; }
.journey-card[data-step="02"]::after { content: '02'; }
.journey-card[data-step="03"]::after { content: '03'; }
.journey-card[data-step="04"]::after { content: '04'; }
.journey-card[data-step="05"]::after { content: '05'; }

.journey-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.journey-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: var(--sky-blue);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.4s ease;
}

.journey-step-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(10, 102, 194, 0.06);
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.journey-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 102, 194, 0.12);
  box-shadow: 0 15px 35px rgba(10, 102, 194, 0.08);
}

.journey-card:hover::after {
  color: rgba(10, 102, 194, 0.18);
  transform: scale(1.05);
}

.journey-card:hover .journey-icon-wrap {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.journey-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.journey-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* Before & After Gallery (Interactive Sliders) */
.before-after-slider {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 45, 82, 0.08);
  border: 4px solid #FFFFFF;
}

@media (max-width: 576px) {
  .before-after-slider {
    height: 300px;
  }
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  user-select: none;
  pointer-events: none;
}

.slider-img-after {
  z-index: 1;
}

.slider-img-before {
  z-index: 2;
  width: 100%;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--white);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  border: 3px solid var(--white);
  color: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.before-after-slider:hover .slider-handle-button {
  transform: translate(-50%, -50%) scale(1.05);
}

.slider-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 12px;
  background-color: rgba(15, 45, 82, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-label-after {
  right: 20px;
}

.slider-label-before {
  left: 20px;
}

/* Gallery Info Card - Premium Layout */
.gallery-info-card {
  padding: 35px;
  background: var(--white);
  border: 1px solid rgba(15, 45, 82, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 45, 82, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.3px;
}

.gallery-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.gallery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.gallery-stat-item {
  background: rgba(10, 102, 194, 0.02);
  border: 1px solid rgba(15, 45, 82, 0.06);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.gallery-stat-item:hover {
  background: rgba(10, 102, 194, 0.04);
  border-color: rgba(10, 102, 194, 0.12);
}

.gallery-stat-item h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.gallery-stat-item p {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

/* Meet Our Doctors (Scientific Philosophy Layout) */
.doctors-image-grid-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.doctors-image-grid {
  position: relative;
  height: 380px;
  width: 100%;
}

.doctor-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 45, 82, 0.08);
  border: 4px solid var(--white);
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.doctor-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 65%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 45, 82, 0.12);
  border: 4px solid var(--white);
  z-index: 3;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.doctors-image-grid-wrap:hover .doctor-img-main {
  transform: scale(1.02) translateY(-2px);
}

.doctors-image-grid-wrap:hover .doctor-img-sub {
  transform: scale(1.03) translateY(2px);
}

/* Single Doctor Layout Styling */
.single-doctor-img-box {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 45, 82, 0.08);
  border: 4px solid var(--white);
  z-index: 2;
}

.doctor-img-single {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.doctors-image-grid-wrap:hover .doctor-img-single {
  transform: scale(1.03);
}

.doctors-logo-floating {
  position: absolute;
  top: -35px;
  left: -35px;
  background-color: var(--white);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(15, 45, 82, 0.15);
  z-index: 4;
  border: 1px solid rgba(15, 45, 82, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatDoctorsLogo 4s ease-in-out infinite;
}

@keyframes floatDoctorsLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.doctors-badge-floating {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: var(--secondary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 45, 82, 0.18);
  z-index: 4;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: floatDoctorsBadge 4s ease-in-out infinite;
}

@keyframes floatDoctorsBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.doctors-badge-floating h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #38BDF8; /* Sky blue accent */
  margin-bottom: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.doctors-badge-floating p {
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.doctors-list-v3 {
  width: 100%;
}

.doctor-pillar-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--white);
  border: 1px solid rgba(15, 45, 82, 0.05);
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(15, 45, 82, 0.01);
}

.doctor-pillar-card:hover {
  transform: translateX(4px);
  border-color: rgba(10, 102, 194, 0.15);
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.05);
}

.doctor-avatar-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(10, 102, 194, 0.12);
  background-color: #F1F5F9;
}

.doctor-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-pillar-details {
  flex-grow: 1;
}

.doctor-name-v3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1px;
}

.doctor-title-v3 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

.doctor-qual-v3 {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 3px;
}

.doctor-pillar-badges {
  display: flex;
  gap: 6px;
}

.doctor-pillar-badges .badge-capsule {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(10, 102, 194, 0.06);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Success Stories / Testimonials (Light Theme Overhaul) */
.testimonials-section {
  background-color: #F4F7FC;
  background-image: linear-gradient(rgba(244, 247, 252, 0.65), rgba(244, 247, 252, 0.65)), url('../images/facility.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax background effect */
  color: var(--secondary);
  padding: 30px 0 !important; /* Extremely compact top/bottom spaces */
}

.testimonial-card-v3 {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 15px rgba(15, 45, 82, 0.015);
  margin: 10px 2px;
  position: relative;
  border: 1px solid rgba(15, 45, 82, 0.05);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.testimonial-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 45, 82, 0.06);
  border-color: rgba(10, 102, 194, 0.1);
}

/* Left borders instead of top borders for a completely new, smart look */
.testimonial-card-v3[data-color="blue"] {
  border-left: 4px solid var(--primary);
}

.testimonial-card-v3[data-color="sky"] {
  border-left: 4px solid #38BDF8;
}

.testimonial-card-v3[data-color="navy"] {
  border-left: 4px solid var(--secondary);
}

.testimonial-header-v3 {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  width: 100%;
}

.testimonial-avatar-v3 {
  width: 40px;
  height: 40px;
  background-color: rgba(10, 102, 194, 0.06);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Circle avatars for clean new look */
  margin-right: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(10, 102, 194, 0.1);
}

.testimonial-card-v3[data-color="sky"] .testimonial-avatar-v3 {
  background-color: rgba(56, 189, 248, 0.1);
  color: #0284C7;
  border-color: rgba(56, 189, 248, 0.2);
}

.testimonial-card-v3[data-color="navy"] .testimonial-avatar-v3 {
  background-color: rgba(15, 45, 82, 0.06);
  color: var(--secondary);
  border-color: rgba(15, 45, 82, 0.1);
}

.testimonial-meta-v3 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.meta-top-v3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2px;
}

.testimonial-meta-v3 h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0;
  line-height: 1.2;
}

.testimonial-location-v3 {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.testimonial-tag-v3 {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(10, 102, 194, 0.05);
  border: 1px solid rgba(10, 102, 194, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.testimonial-card-v3[data-color="sky"] .testimonial-tag-v3 {
  color: #0284C7;
  background-color: rgba(56, 189, 248, 0.05);
  border-color: rgba(56, 189, 248, 0.12);
}

.testimonial-card-v3[data-color="navy"] .testimonial-tag-v3 {
  color: var(--secondary);
  background-color: rgba(15, 45, 82, 0.03);
  border-color: rgba(15, 45, 82, 0.08);
}

.quote-watermark-v3 {
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-size: 3rem;
  color: rgba(10, 102, 194, 0.04);
  pointer-events: none;
  z-index: 1;
}

.testimonial-card-v3[data-color="sky"] .quote-watermark-v3 {
  color: rgba(56, 189, 248, 0.06);
}

.testimonial-card-v3[data-color="navy"] .quote-watermark-v3 {
  color: rgba(15, 45, 82, 0.03);
}

.testimonial-text-v3 {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--white) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

.swiper-custom-navigation {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.swiper-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.swiper-nav-btn:hover {
  background-color: var(--white);
  color: var(--secondary);
}

/* Clinic Facilities Tour */
.facility-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 380px;
  box-shadow: var(--shadow-md);
  group-hover: scale(1.05);
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.facility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(15, 45, 82, 0.9) 0%, rgba(15, 45, 82, 0.2) 60%, transparent 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.facility-overlay h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.facility-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.facility-card:hover img {
  transform: scale(1.08);
}

/* FAQ Section */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(10, 102, 194, 0.15);
  box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary);
  background-color: var(--white);
  font-size: 1.05rem;
  padding: 20px 24px;
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--sky-blue);
  color: var(--primary);
}

.faq-accordion .accordion-button::after {
  background-size: 1rem;
  transition: var(--transition-smooth);
}

.faq-accordion .accordion-body {
  padding: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  background-color: var(--white);
}

/* Branch Locations */
.location-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-smooth);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 102, 194, 0.15);
}

.location-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.location-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.location-card p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}

.location-card p i {
  color: var(--primary);
  margin-top: 4px;
}

.location-map-btn {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

/* Contact & Consultation Form */
.contact-section {
  background-color: var(--sky-blue);
  background-image: radial-gradient(circle at 90% 10%, rgba(10, 102, 194, 0.05) 0%, transparent 40%);
}

/* Contact Info Panel v3 (Scientific Philosophy Style) */
.contact-pillars-v3 {
  width: 100%;
}

.contact-pillar-card-v3 {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.3s ease;
}

.contact-pillar-card-v3:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
}

.contact-icon-v3 {
  width: 42px;
  height: 42px;
  background-color: rgba(56, 189, 248, 0.1);
  color: #38BDF8; /* Sky blue matching tagline */
  font-size: 1.1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.contact-pillar-card-v3 h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  line-height: 1.2;
}

.contact-pillar-card-v3 p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.3;
}

.contact-form-panel {
  background-color: var(--white);
  padding: 50px;
  border-radius: 20px;
  height: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

@media (max-width: 576px) {
  .contact-form-panel {
    padding: 30px 20px;
  }
}

.form-group-custom {
  margin-bottom: 24px;
}

.form-control-custom {
  width: 100%;
  height: 52px;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  background-color: var(--light-bg);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

textarea.form-control-custom {
  height: 120px;
  resize: none;
}

.form-control-custom:focus {
  background-color: var(--white);
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.1);
}

/* Footer Section */
.footer-section {
  background-color: #002855; /* Premium Dark Blue */
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

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

.footer-contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-info li i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  padding-top: 30px;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Floating Actions & Widgets */
.floating-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

@media (max-width: 768px) {
  .floating-widget-container {
    bottom: 20px;
    right: 20px;
  }
}

.floating-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--whatsapp-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
  background-color: #20ba5a;
  color: var(--white);
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-back-to-top {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.floating-back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.floating-back-to-top:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Floating Bottom Consultation Bar for Mobile */
.sticky-book-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
  padding: 12px 20px;
  display: none;
  z-index: 998;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .sticky-book-bar {
    display: block;
  }
  body {
    padding-bottom: 75px; /* Prevent content clipping under sticky bottom bar */
  }
}

/* Modals Custom Styles */
.modal-custom-content {
  border-radius: 20px;
  border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-custom-header {
  background-color: var(--sky-blue);
  border-bottom: 1px solid rgba(10, 102, 194, 0.1);
  padding: 24px 30px;
}

.modal-custom-header h5 {
  font-size: 1.4rem;
  font-weight: 700;
}

.modal-custom-body {
  padding: 30px;
}

.modal-custom-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--primary);
}

.modal-custom-body ul {
  padding-left: 20px;
}

.modal-custom-body li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Animation Utilities for GSAP / CSS */
.gsap-fade-in {
  opacity: 0;
}

.gsap-slide-up {
  opacity: 0;
  transform: translateY(40px);
}

.gsap-slide-left {
  opacity: 0;
  transform: translateX(-40px);
}

.gsap-slide-right {
  opacity: 0;
  transform: translateX(40px);
}

.gsap-stagger-item {
  opacity: 0;
  transform: translateY(30px);
}

.parallax-bg {
  transform: translateY(0);
  will-change: transform;
}

/* Hero Form Styles */
.hero-form-container {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 16px;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.hero-form-header {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
}

.hero-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--sky-blue);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.hero-form-badge i {
  font-size: 0.65rem;
}

.hero-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-form-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Input with icon */
.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 0.8rem;
  z-index: 2;
  pointer-events: none;
}

.premium-input {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 10px 12px 10px 36px;
  font-size: 0.85rem;
  color: var(--secondary);
  transition: all 0.25s ease;
  height: auto;
}

.premium-input:focus {
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
  outline: none;
}

.premium-input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.btn-premium-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.25);
}

.btn-premium-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.35);
  color: #FFFFFF;
}

.btn-premium-submit i {
  font-size: 0.75rem;
}

/* Trust footer */
.hero-form-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.form-trust-item i {
  color: var(--primary);
  font-size: 0.65rem;
}

@media (max-width: 991px) {
  .hero-form-container {
    margin-top: 30px;
  }
}

/* =============================================
   4-Step Process Cards
   ============================================= */
.process-step-card {
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition-smooth);
  height: 100%;
}

.process-step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.process-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.process-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.process-step-card:hover .process-img-wrap img {
  transform: scale(1.05);
}

.process-step-num {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.process-step-body {
  padding: 20px 20px 24px;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.process-step-divider {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #E63946 0%, var(--primary) 100%);
  border-radius: 2px;
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   Mobile Responsiveness & Layout Improvements
   ============================================= */

/* Mobile Header & Brand */
@media (max-width: 576px) {
  .brand-phone-sub {
    display: none !important;
  }
  .brand-text {
    font-size: 1.15rem !important;
  }
}

/* Mobile Hero Glassmorphism & Heading Scaling */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .hero-text-panel {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
  }
  .hero-title {
    font-size: 2.2rem !important;
  }
}

/* Scrollable Category Tabs on Mobile */
@media (max-width: 768px) {
  .services-tabs-container {
    display: flex;
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    border-radius: 30px !important;
    padding: 6px 12px !important;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .services-tabs-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  .services-tab-btn {
    width: auto !important;
    flex-shrink: 0;
    padding: 10px 20px !important;
  }
}

/* Disable Fixed Backgrounds for mobile scroll performance */
@media (max-width: 768px) {
  .journey-wrapper {
    background-attachment: scroll !important;
  }
}

/* Touch Action Fix for Sliders */
.before-after-slider {
  touch-action: pan-y;
}
