/* ============================================
   CORPORATE PEST CONTROL SERVICES - MAIN STYLES
   ============================================ */

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

:root {
  --primary: #003d82;
  --primary-dark: #002a5c;
  --primary-light: #0055b3;
  --accent: #f7941d;
  --accent-dark: #d97b0a;
  --accent-light: #ffa940;
  --dark: #0a1628;
  --dark-2: #1a2a45;
  --text: #2c3e50;
  --text-light: #6b7280;
  --white: #ffffff;
  --light-bg: #f8f9fc;
  --light-bg-2: #eef2f7;
  --border: #e2e8f0;
  --success: #10b981;
  --shadow: 0 4px 24px rgba(0, 61, 130, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 61, 130, 0.18);
  --shadow-hover: 0 8px 32px rgba(0, 61, 130, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--dark);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 148, 29, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(247, 148, 29, 0.25);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent);
  position: relative;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover::before { transform: scaleX(1); }
.btn-primary-custom:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247, 148, 29, 0.4); }
.btn-primary-custom span, .btn-primary-custom i { position: relative; z-index: 1; }

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-blue:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 61, 130, 0.3);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}

.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent); }
.top-bar-info { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-info span, .top-bar-info a { display: flex; align-items: center; gap: 6px; }
.top-bar-social { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.top-bar-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}
.top-bar-social a:hover { background: var(--accent); color: white; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.main-header {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,130,0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.logo-text .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.logo-text .logo-tag {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar-nav .nav-item { padding: 0 2px; }

.navbar-nav .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 28px 14px !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

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

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

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

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 240px;
  border-top: 3px solid var(--accent);
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.dropdown-item i {
  width: 20px;
  color: var(--accent);
  font-size: 0.85rem;
}

.dropdown-item:hover {
  background: var(--primary);
  color: var(--white);
}

.dropdown-item:hover i { color: var(--accent-light); }

.btn-inspection {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-inspection:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.35);
}

.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23003d82' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-carousel {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 42, 92, 0.88) 0%,
    rgba(0, 61, 130, 0.65) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 148, 29, 0.2);
  border: 1px solid rgba(247, 148, 29, 0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span { color: var(--accent); }

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item { text-align: center; }
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* Hero Right Panel */
.hero-right-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
}

.quick-contact-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.quick-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.quick-contact-item:last-of-type { border-bottom: none; }

.qc-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.qc-text p { margin: 0; font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.qc-text strong { font-size: 0.95rem; color: white; display: block; }

/* Carousel Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.hero-nav-btn:hover { background: var(--accent); border-color: var(--accent); }
.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-light-custom { background: var(--light-bg); }
.bg-dark-custom { background: var(--dark); }

/* ============================================
   MARQUEE / TICKER
   ============================================ */
.marquee-section {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
}

.marquee-item i { color: var(--accent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}

.about-img-wrapper:hover img { transform: scale(1.04); }

.experience-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--accent);
  color: white;
  padding: 16px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.experience-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.cert-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--primary);
  color: white;
  padding: 14px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow);
  border: 3px solid var(--accent);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--light-bg);
  border-radius: 10px;
  transition: var(--transition);
}

.about-feature-item:hover {
  background: var(--primary);
  color: white;
}

.about-feature-item:hover .af-icon { background: var(--accent); }
.about-feature-item:hover .af-title { color: white; }
.about-feature-item:hover .af-text { color: rgba(255,255,255,0.75); }

.af-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(0, 61, 130, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: var(--transition);
}

.af-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.af-text {
  font-size: 0.78rem;
  color: var(--text-light);
  transition: var(--transition);
  line-height: 1.4;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(0, 61, 130, 0.08), rgba(0, 61, 130, 0.14));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

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

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover { color: var(--accent); gap: 10px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-bg {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.why-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.why-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  transition: var(--transition);
}

.why-feature:hover .why-icon {
  background: var(--accent);
  color: white;
}

.why-feature h5 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.why-feature p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

.why-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.85;
  filter: brightness(0.85);
}

.why-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-img-badge .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.why-img-badge .stat-lbl {
  font-size: 0.78rem;
  opacity: 0.9;
  font-weight: 600;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
  background: var(--white);
  padding: 70px 0;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.stat-box {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

.stat-box::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-box:last-child::after { display: none; }

.stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin: 0 auto 16px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number .suffix { color: var(--accent); }

.stat-label {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -15%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.process-step:last-child::after { display: none; }

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  border: 4px solid white;
  box-shadow: 0 4px 16px rgba(0, 61, 130, 0.25);
}

.process-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.process-step p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-section {
  background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.testimonial-slider-wrapper { overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 12px;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border);
}

.testimonial-inner::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--accent);
  position: absolute;
  top: -10px;
  left: 28px;
  line-height: 1;
  opacity: 0.25;
}

.testimonial-stars { color: #fbbf24; margin-bottom: 16px; font-size: 1.05rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.author-role { font-size: 0.8rem; color: var(--text-light); }

.testimonial-controls { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.t-dot.active { background: var(--accent); width: 24px; border-radius: 5px; }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

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

.blog-img {
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .blog-img img { transform: scale(1.07); }

.blog-content { padding: 24px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.blog-meta .category {
  background: rgba(247, 148, 29, 0.1);
  color: var(--accent-dark);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.blog-meta .date { display: flex; align-items: center; gap: 4px; }

.blog-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

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

.blog-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover { color: var(--accent); gap: 10px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: 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.02'%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-content { position: relative; z-index: 2; }

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-title span { color: var(--accent); }
.cta-subtitle { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 36px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-logo-section .footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.65);
}

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

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 3px;
}

.footer-contact-item strong {
  display: block;
  color: white;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.footer-contact-item span, .footer-contact-item a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.footer-contact-item a:hover { color: var(--accent); }

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--accent); color: white; border-color: var(--accent); }

.footer-heading {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

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

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-links a i { font-size: 0.7rem; color: var(--accent); }

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

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  color: white;
  font-size: 0.87rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--accent); }

.newsletter-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.newsletter-form button:hover { background: var(--accent-dark); }

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 0;
}

.footer-bottom {
  padding: 18px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================
   CONTACT POPUP / MODAL
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.active { display: flex; }

.popup-box {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  position: relative;
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { transform: scale(0.9) translateY(-20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.popup-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 28px 32px 24px;
  position: relative;
}

.popup-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.popup-header p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close:hover { background: rgba(255,255,255,0.3); }

.popup-body { padding: 28px 32px; }

.popup-body .form-group { margin-bottom: 16px; }

.popup-body label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.popup-body input,
.popup-body textarea,
.popup-body select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  background: var(--light-bg);
}

.popup-body input:focus,
.popup-body textarea:focus,
.popup-body select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 61, 130, 0.08);
}

.popup-body textarea { height: 90px; resize: vertical; }

.popup-submit {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popup-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 997;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }

.breadcrumb-custom { margin-top: 16px; }
.breadcrumb-custom .breadcrumb { margin: 0; }
.breadcrumb-custom .breadcrumb-item { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-custom .breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--accent); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   FEATURED PRODUCTS / PRODUCTS
   ============================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-img {
  height: 180px;
  overflow: hidden;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.product-content { padding: 20px; }

.product-content h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.product-content p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Pricing Cards */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

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

.pricing-card.featured:hover { transform: scale(1.03) translateY(-5px); }

.pricing-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 61, 130, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing-card .plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card .price span { font-size: 1rem; color: var(--text-light); }
.pricing-card .price-desc { font-size: 0.83rem; color: var(--text-light); margin-bottom: 20px; }
.pricing-divider { border-color: var(--border); margin: 20px 0; }

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

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--success); font-size: 0.85rem; }
.pricing-features li.disabled { color: var(--text-light); }
.pricing-features li.disabled i { color: var(--border); }

/* Team Card */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

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

.team-img {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  border: 3px solid rgba(255,255,255,0.25);
}

.team-content { padding: 20px; }
.team-content h5 { font-size: 1rem; font-weight: 700; color: var(--dark); font-family: 'Inter', sans-serif; }
.team-content .role { font-size: 0.82rem; color: var(--text-light); margin-bottom: 12px; }
.team-social { display: flex; gap: 8px; justify-content: center; }
.team-social a {
  width: 30px; height: 30px;
  background: var(--light-bg);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--text-light);
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: white; }

/* Sector Cards */
.sector-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

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

.sector-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--primary);
  transition: var(--transition);
}

.sector-card:hover .sector-icon { color: var(--accent); }

.sector-card h5 {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  margin-bottom: 8px;
  transition: var(--transition);
}

.sector-card:hover h5 { color: white; }

.sector-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin: 0;
  transition: var(--transition);
}

.sector-card:hover p { color: rgba(255,255,255,0.75); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

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

.contact-info-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin: 0 auto 16px;
}

.contact-info-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.contact-info-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin: 0; }
.contact-info-card a { color: var(--primary); font-weight: 500; }
.contact-info-card a:hover { color: var(--accent); }

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

.contact-form-card .form-group { margin-bottom: 20px; }

.contact-form-card label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  display: block;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  background: var(--light-bg);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 61, 130, 0.08);
}

.contact-form-card textarea { height: 130px; resize: vertical; }

/* ============================================
   UTILITIES
   ============================================ */
.text-accent { color: var(--accent) !important; }
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-accent-custom { background: var(--accent) !important; }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 12px 0 24px;
}

.divider-center { margin: 12px auto 24px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 61, 130, 0.07);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================
   INNER PAGE SPECIFICS
   ============================================ */
.service-detail-section {
  background: var(--white);
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-steps .step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
}

.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-text h6 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.step-text p { font-size: 0.83rem; color: var(--text-light); margin: 0; }

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: var(--transition);
}

.faq-question:hover { background: var(--light-bg); }
.faq-question i { color: var(--accent); transition: transform 0.3s ease; }
.faq-item.open .faq-question { background: var(--primary); color: white; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--accent-light); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 16px 20px 20px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  background: var(--light-bg);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.sidebar-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  font-family: 'Inter', sans-serif;
}

.sidebar-search { position: relative; }
.sidebar-search input {
  width: 100%;
  padding: 10px 16px;
  padding-right: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}
.sidebar-search input:focus { border-color: var(--primary); }
.sidebar-search button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  background: var(--primary);
  border: none;
  border-radius: 0 50px 50px 0;
  color: white;
  cursor: pointer;
}

.recent-post {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-bg);
}

.recent-post:last-child { border-bottom: none; }

.rp-img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
}

.rp-img img { width: 100%; height: 100%; object-fit: cover; }

.rp-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: var(--transition);
}

.recent-post:hover .rp-title { color: var(--primary); }
.rp-date { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }

.category-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--light-bg);
  font-size: 0.87rem;
  transition: var(--transition);
  cursor: pointer;
}
.category-tag:hover { color: var(--primary); padding-left: 6px; }
.category-tag span {
  background: var(--light-bg);
  color: var(--text-light);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Map embed */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

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

/* Certification badges */
.cert-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-bg);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}

.cert-item i { color: var(--accent); font-size: 1rem; }
