/* =====================================================
   Hope Imaging & Diagnostics — Premium Healthcare Theme
   Brand: #0D6EFD (Primary) | #00B894 (Secondary)
   ===================================================== */

:root {
  --primary: #0D6EFD;
  --primary-dark: #0a58ca;
  --primary-light: #e7f1ff;
  --secondary: #00B894;
  --secondary-dark: #00997a;
  --secondary-light: #e6f9f4;
  --dark: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --light: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(13, 110, 253, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 110, 253, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

.bg-light-section {
  background: var(--light);
}

.bg-primary-soft {
  background: var(--primary-light);
}

/* ---------- Typography helpers ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 40px;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: var(--transition);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-secondary {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 184, 148, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-call {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.btn-call:hover {
  background: #1e293b;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar .divider {
  opacity: 0.3;
  margin: 0 10px;
}

.top-bar i {
  color: var(--secondary);
  margin-right: 6px;
}

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1030;
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark) !important;
  letter-spacing: -0.3px;
}

.navbar-brand .logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.navbar-brand .brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

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

.navbar .btn-book {
  margin-left: 10px;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a4db8 0%, #0D6EFD 45%, #00B894 100%);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 184, 148, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero .lead {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-stat {
  text-align: left;
}

.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

.hero-stat .label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.hero-card .form-control,
.hero-card .form-select {
  border-radius: 10px;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  font-size: 0.95rem;
}

.hero-card .form-control:focus,
.hero-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  margin-top: -10px;
  position: relative;
  z-index: 3;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
}

.trust-item .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-item h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Feature Cards (Why Choose Us) ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

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

.feature-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.feature-card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.service-card .svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.service-card ul li {
  font-size: 0.88rem;
  padding: 4px 0;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card ul li i {
  color: var(--secondary);
  margin-top: 4px;
  font-size: 0.75rem;
}

.service-card .svc-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Test list pills */
.test-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.test-pill {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 500;
}

.test-pill:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* ---------- Package Cards ---------- */
.package-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.package-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.package-card .badge-popular {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.package-card .pkg-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.package-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.package-card .pkg-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.package-card .pkg-price {
  margin-bottom: 18px;
}

.package-card .pkg-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.package-card .pkg-price .currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.package-card .pkg-price .old {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.package-card ul li {
  font-size: 0.9rem;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px dashed var(--border);
}

.package-card ul li:last-child {
  border-bottom: none;
}

.package-card ul li i {
  color: var(--secondary);
  margin-top: 4px;
}

/* ---------- Process Steps ---------- */
.process-step {
  text-align: center;
  position: relative;
  padding: 20px 12px;
}

.process-step .step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.25);
  position: relative;
  z-index: 2;
}

.process-step h5 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Connector line between steps on desktop */
@media (min-width: 992px) {
  .process-row {
    position: relative;
  }
  .process-row::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-light));
    z-index: 0;
  }
}

/* ---------- Home Collection CTA ---------- */
.home-collection {
  background: linear-gradient(135deg, var(--primary) 0%, #0a4db8 60%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.home-collection h2 {
  color: white;
}

.home-collection .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.home-collection .benefit-item i {
  background: rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card .author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-card .author-loc {
  font-size: 0.8rem;
  color: var(--muted);
}

.rating-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.rating-summary .big-rating {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.rating-summary .stars {
  color: #fbbf24;
  font-size: 1.3rem;
  margin: 8px 0;
}

/* ---------- FAQ ---------- */
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.accordion-button {
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  padding: 18px 22px;
  background: var(--white);
  box-shadow: none !important;
}

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

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding: 8px 22px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card .blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  position: relative;
}

.blog-card .blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.blog-card .blog-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .blog-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.blog-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.blog-card h4 a {
  color: var(--dark);
}

.blog-card h4 a:hover {
  color: var(--primary);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--muted);
  flex-grow: 1;
}

.blog-card .read-more {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Contact ---------- */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow);
}

.contact-info-card .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.contact-info-card h5 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-wrap .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border-radius: 10px;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Page Banner ---------- */
.page-banner {
  background: linear-gradient(135deg, #0a4db8 0%, #0D6EFD 50%, #00B894 100%);
  color: white;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.page-banner h1 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 10px;
}

.page-banner .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.page-banner .breadcrumb-item.active {
  color: white;
}

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

/* ---------- About ---------- */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-wrap .placeholder-icon {
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.4;
}

.about-stats-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 24px;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.about-stats-card .stat .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.about-stats-card .stat .label {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
}

.footer h5 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--secondary);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.footer-brand .name {
  color: white;
  font-weight: 800;
  font-size: 1.15rem;
}

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

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

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--secondary);
  margin-top: 4px;
  width: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 20px 0;
  font-size: 0.85rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form .form-control {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  box-shadow: none;
  color: white;
}

.newsletter-form .btn {
  border-radius: 50px;
  padding: 10px 18px;
  flex-shrink: 0;
}

/* ---------- Floating Action Buttons ---------- */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.fab:hover {
  transform: scale(1.1);
  color: white;
}

.fab-whatsapp {
  background: #25D366;
}

.fab-call {
  background: var(--primary);
}

.fab-top {
  background: var(--dark);
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.fab-top.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Search Overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-overlay .search-box {
  width: 90%;
  max-width: 600px;
  position: relative;
}

.search-overlay .form-control {
  border-radius: 50px;
  padding: 18px 60px 18px 28px;
  font-size: 1.15rem;
  border: none;
}

.search-overlay .search-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ---------- Blog Article ---------- */
.article-content {
  max-width: 780px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 14px;
}

.article-content h3 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
}

.article-content p {
  margin-bottom: 16px;
  color: var(--text);
}

.article-content ul,
.article-content ol {
  margin-bottom: 18px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  padding: 18px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--dark);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* ---------- Modal / Toast ---------- */
.toast-msg {
  position: fixed;
  top: 100px;
  right: 24px;
  background: var(--secondary);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  font-weight: 600;
  transform: translateX(120%);
  transition: transform 0.4s ease;
}

.toast-msg.show {
  transform: translateX(0);
}

/* ---------- Misc ---------- */
.nav-search-btn {
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.1rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-search-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.hours-table {
  width: 100%;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--dark);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

/* Sticky CTA bar mobile */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  z-index: 1035;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  gap: 8px;
}

.mobile-cta-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 10px 8px;
  font-size: 0.82rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero {
    padding: 70px 0 60px;
  }

  .hero::after {
    height: 40px;
  }

  .hero-card {
    margin-top: 40px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .navbar-nav {
    padding: 16px 0;
  }

  .navbar-nav .nav-link {
    padding: 10px 14px !important;
  }

  .navbar .btn-book {
    margin: 10px 0 0;
    width: 100%;
    justify-content: center;
  }

  .home-collection {
    padding: 36px 24px;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    font-size: 0.78rem;
    text-align: center;
  }

  .top-bar .d-flex {
    justify-content: center !important;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stat .num {
    font-size: 1.4rem;
  }

  .fab-wrap {
    bottom: 80px;
    right: 16px;
  }

  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .about-stats-card {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.5rem;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }
}

/* Print */
@media print {
  .top-bar, .navbar, .fab-wrap, .mobile-cta-bar, .footer {
    display: none !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
