/* =========================================
   GET WELL PHYSIO — Custom Stylesheet
   ========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Merriweather:wght@400;700&display=swap');

/* CSS Variables — Logo-derived Palette */
:root {
  --green:       #43A047;
  --green-dark:  #2E7D32;
  --green-light: #E8F5E9;
  --yellow:      #FFB300;
  --yellow-dark: #E65100;
  --yellow-light:#FFF8E1;
  --purple:      #8E24AA;
  --purple-dark: #6A1B9A;
  --purple-light:#F3E5F5;
  --cyan:        #00ACC1;
  --cyan-dark:   #00838F;
  --cyan-light:  #E0F7FA;
  --blue:        #1565C0;
  --blue-dark:   #0D47A1;
  --blue-light:  #E3F2FD;
  --white:       #FFFFFF;
  --off-white:   #F8FAFB;
  --light-gray:  #F1F5F7;
  --mid-gray:    #90A4AE;
  --dark:        #1A2332;
  --text-body:   #455A64;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.13);
  --radius:      12px;
  --transition:  0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* =========================================
   NAVBAR
   ========================================= */
.site-navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(21,101,192,0.10);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-navbar .brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.site-navbar .brand-text {
  line-height: 1.1;
}

.site-navbar .brand-text .name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  letter-spacing: 0.5px;
}

.site-navbar .brand-text .tagline {
  font-size: 0.68rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-navbar .nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.site-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--green) !important;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  width: 70%;
}

.site-navbar .btn-appointment {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 0.45rem 1.3rem !important;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(67,160,71,0.35);
  transition: var(--transition);
}

.site-navbar .btn-appointment:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(67,160,71,0.45);
}

.site-navbar .btn-appointment::after { display: none !important; }

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 0;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.top-bar a:hover { color: var(--yellow); }

.top-bar .divider {
  margin: 0 12px;
  opacity: 0.4;
}

/* =========================================
   HERO
   ========================================= */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 40%, #1976D2 70%, #0097A7 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80') center/cover no-repeat;
  opacity: 0.15;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,71,161,0.92) 0%, rgba(21,101,192,0.85) 50%, rgba(0,151,167,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
}

.hero-badge i { font-size: 0.9rem; }

.hero-section h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-section h1 span {
  background: linear-gradient(135deg, var(--yellow), #FF8F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section p {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 540px;
}

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2rem; }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(67,160,71,0.4);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(67,160,71,0.5);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-feature-item i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 0.8rem;
  color: var(--yellow);
}

.hero-image-card {
  position: relative;
  z-index: 2;
}

.hero-img-main {
  border-radius: 24px;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}

.hero-stat-card.card-1 { bottom: 30px; left: -30px; }
.hero-stat-card.card-2 { top: 30px; right: -20px; }

.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-stat-icon.green { background: var(--green-light); color: var(--green); }
.hero-stat-icon.yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.hero-stat-icon.cyan { background: var(--cyan-light); color: var(--cyan); }
.hero-stat-icon.purple { background: var(--purple-light); color: var(--purple); }

.hero-stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* =========================================
   SECTION COMMON
   ========================================= */
section { padding: 90px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-label.green { color: var(--green); }
.section-label.cyan { color: var(--cyan); }
.section-label.purple { color: var(--purple); }
.section-label.yellow { color: var(--yellow-dark); }
.section-label.blue { color: var(--blue); }

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title span.highlight-green { color: var(--green); }
.section-title span.highlight-cyan { color: var(--cyan); }
.section-title span.highlight-purple { color: var(--purple); }
.section-title span.highlight-yellow { color: var(--yellow-dark); }

.section-sub {
  color: var(--text-body);
  font-size: 1rem;
  max-width: 580px;
  margin-bottom: 0;
}

/* =========================================
   STATS BAND
   ========================================= */
.stats-band {
  background: linear-gradient(135deg, var(--dark) 0%, #1A2D46 100%);
  padding: 60px 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .plus {
  font-size: 0.65em;
  vertical-align: super;
  color: var(--yellow);
}

.stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto;
}

/* =========================================
   SERVICE CARDS
   ========================================= */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid #E8EEF3;
  padding: 32px 28px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-icon-wrap.green  { background: var(--green-light);  color: var(--green); }
.service-icon-wrap.cyan   { background: var(--cyan-light);   color: var(--cyan); }
.service-icon-wrap.yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.service-icon-wrap.purple { background: var(--purple-light); color: var(--purple); }
.service-icon-wrap.blue   { background: var(--blue-light);   color: var(--blue); }

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.65;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 16px;
  transition: var(--transition);
}

.service-card:hover .learn-more { gap: 10px; }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section { background: var(--off-white); }

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 1.5px solid #E8EEF3;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}

.why-card h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.83rem;
  color: var(--mid-gray);
  margin-bottom: 0;
  line-height: 1.6;
}

/* =========================================
   PROCESS STEPS
   ========================================= */
.process-section { background: var(--white); }

.step-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-card.step-1 { background: var(--blue-light); }
.step-card.step-1 .step-number { background: var(--blue); }
.step-card.step-2 { background: var(--green-light); }
.step-card.step-2 .step-number { background: var(--green); }
.step-card.step-3 { background: var(--cyan-light); }
.step-card.step-3 .step-number { background: var(--cyan); }

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card.step-1 .step-icon { color: var(--blue); }
.step-card.step-2 .step-icon { color: var(--green); }
.step-card.step-3 .step-icon { color: var(--cyan); }

.step-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--mid-gray);
  padding-top: 28px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--light-gray); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  height: 100%;
  position: relative;
  border: 1.5px solid #E8EEF3;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--green-light);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
  font-weight: 700;
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  padding-top: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--light-gray);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.author-tag {
  font-size: 0.76rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, var(--cyan-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::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-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.btn-cta-white {
  background: var(--white);
  color: var(--green-dark) !important;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-cta-outline-white {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-cta-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid-gray);
  margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
}

.contact-info-item a:hover { color: var(--green); }

/* Form */
.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid #DDE3E8;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--off-white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(67,160,71,0.12);
  background: var(--white);
}

.btn-submit {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(67,160,71,0.3);
  transition: var(--transition);
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67,160,71,0.4);
  color: var(--white);
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-section { background: var(--off-white); padding: 90px 0; }

.gallery-filter { margin-bottom: 36px; }

.filter-btn {
  background: var(--white);
  border: 1.5px solid #DDE3E8;
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
  margin: 4px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(67,160,71,0.3);
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,71,161,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--cyan-dark) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1559757175-5700dde675bc?w=1600&q=80') center/cover no-repeat;
  opacity: 0.1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}

.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: var(--yellow); }
.breadcrumb-item.active { color: var(--white); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

.about-img-wrap { position: relative; }

.about-img-main {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}

.about-badge-float .big-num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-badge-float .small-text {
  font-size: 0.78rem;
  opacity: 0.9;
  font-weight: 500;
}

.value-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-radius: 12px;
  transition: var(--transition);
}

.value-card:hover { background: var(--white); box-shadow: var(--shadow-sm); }

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.value-card h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.value-card p  { font-size: 0.85rem; color: var(--text-body); margin-bottom: 0; line-height: 1.6; }

.cert-card {
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  border: 1.5px solid #E8EEF3;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover { box-shadow: var(--shadow-sm); }

.cert-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

/* =========================================
   MAP EMBED
   ========================================= */
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: none;
  width: 100%;
  height: 350px;
}

/* =========================================
   FAQ
   ========================================= */
.accordion-item {
  border: 1.5px solid #E8EEF3 !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 12px !important;
}

.accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark) !important;
  background: var(--white) !important;
  padding: 18px 24px;
}

.accordion-button:not(.collapsed) {
  color: var(--green) !important;
  background: var(--green-light) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: none !important;
}

.accordion-button:not(.collapsed)::after {
  filter: none !important;
}

.accordion-body {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  padding: 16px 24px 20px;
  background: var(--off-white);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-brand-logo {
  height: 70px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--green); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--green); }

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(67,160,71,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--green);
  flex-shrink: 0;
}

.footer-contact-item .info-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-contact-item .info-text strong {
  color: rgba(255,255,255,0.9);
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-contact-item .info-text a {
  color: rgba(255,255,255,0.7);
}

.footer-contact-item .info-text a:hover { color: var(--green); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  margin-top: 60px;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom span { color: var(--green); }

/* =========================================
   BACK TO TOP
   ========================================= */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(67,160,71,0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
}

#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-3px); }

/* =========================================
   FLOATING CONTACT BUTTON
   ========================================= */
.float-wa {
  position: fixed;
  bottom: 84px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: var(--transition);
}

.float-wa:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* =========================================
   PAGE BANNER CARDS
   ========================================= */
.info-highlight-card {
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
}

.info-highlight-card i {
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-highlight-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-highlight-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* =========================================
   CONDITION CARDS (Services page)
   ========================================= */
.condition-card {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid #E8EEF3;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.condition-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(67,160,71,0.15);
  transform: translateY(-3px);
}

.condition-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
}

.condition-card h6 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.condition-card p {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-bottom: 0;
  line-height: 1.55;
}

/* =========================================
   ADVANTAGE ITEMS
   ========================================= */
.advantage-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.advantage-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.advantage-item h6 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.advantage-item p {
  font-size: 0.82rem;
  color: var(--text-body);
  margin-bottom: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .hero-image-card { margin-top: 40px; }
  .hero-stat-card.card-1 { left: 0; }
  .hero-stat-card.card-2 { right: 0; }
  section { padding: 70px 0; }
  .about-badge-float { right: 0; }
}

@media (max-width: 767.98px) {
  .top-bar .d-md-inline { display: none !important; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-features { flex-direction: column; gap: 12px; }
  .hero-stat-card { min-width: 120px; padding: 10px 14px; }
  .stat-divider { display: none; }
  .step-connector { display: none; }
  .site-navbar .brand-logo { height: 48px; }
}

@media (max-width: 575.98px) {
  .hero-section h1 { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .contact-card { padding: 28px 20px; }
  .hero-stat-card { display: none; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67,160,71,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(67,160,71,0); }
}

.animate-up {
  animation: fadeInUp 0.6s ease both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

.pulse-btn {
  animation: pulse-green 2.5s infinite;
}

/* WhatsApp icon helper */
.fa-whatsapp::before { content: "\f232"; }
