/* ========================================
   Hello Champion - Main Stylesheet
   Color Scheme: Blue (#1D5DC7) + Green (#2AAF4A) + Dark (#1A1A2E)
======================================== */

:root {
  --orange: #1D5DC7;
  --orange-dark: #1649a8;
  --orange-light: #eef3fd;
  --green: #2AAF4A;
  --green-dark: #1f8f3a;
  --green-light: #edfaf1;
  --navy: #1A1A2E;
  --navy-light: #16213E;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray: #6c757d;
  --text: #333333;
  --border: #e9ecef;
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
}

/* ========== UTILITIES ========== */
.text-orange { color: var(--orange) !important; }
.bg-orange { background-color: var(--orange) !important; }
.bg-orange-light { background-color: var(--orange-light) !important; }
.border-orange { border-color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background-color: var(--navy) !important; }

/* ========== BUTTONS ========== */
.btn-orange {
  background-color: var(--orange);
  border-color: var(--orange);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-orange:hover, .btn-orange:focus {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,93,199,0.35);
}
.btn-outline-orange {
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-orange:hover, .btn-outline-orange:focus {
  background-color: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}
.btn-xs { padding: 4px 10px; font-size: 12px; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.top-bar a:hover { color: var(--orange); }
.top-bar-text { color: rgba(255,255,255,0.7); font-size: 12px; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white;
  font-size: 12px; text-decoration: none; margin-left: 4px; transition: all 0.2s;
}
.social-icons a:hover { background: var(--orange); transform: translateY(-2px); }

/* ========== NAVBAR ========== */
.navbar { padding: 12px 0; transition: all 0.3s ease; }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.brand-text { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.brand-hello { color: var(--orange); }
.brand-champion { color: var(--green); }
.navbar .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px !important;
  border-radius: 6px;
  transition: all 0.2s;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--orange) !important; }
.navbar .dropdown-menu { border: none; box-shadow: 0 8px 30px rgba(0,0,0,0.12); border-radius: 10px; padding: 8px; }
.navbar .dropdown-item { border-radius: 6px; padding: 8px 16px; font-size: 14px; font-weight: 500; transition: all 0.2s; }
.navbar .dropdown-item:hover { background: var(--orange-light); color: var(--orange); }

/* ========== MOBILE HAMBURGER BUTTON ========== */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu-overlay {
  position: fixed !important;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========== MOBILE MENU DRAWER ========== */
.mobile-menu-drawer {
  position: fixed !important;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--navy);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0.35s;
}
.mobile-menu-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.mobile-menu-header .brand-hello { color: #7eb8ff; }
.mobile-menu-header .brand-champion { color: var(--green); }
.mobile-close-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-close-btn:hover { background: rgba(29,93,199,0.4); }

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav { flex: 1; }

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.mobile-nav-item:hover, .mobile-nav-item.active {
  color: #fff;
  background: rgba(29,93,199,0.15);
  border-left-color: var(--orange);
  text-decoration: none;
}
.mobile-nav-item.active { color: var(--orange); }
.mnav-icon {
  width: 34px;
  height: 34px;
  background: rgba(29,93,199,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
}
.mobile-nav-item.active .mnav-icon { background: var(--orange); color: #fff; }
.mnav-arrow { margin-left: auto; font-size: 11px; opacity: 0.5; transition: transform 0.3s; }
.mnav-toggle.open .mnav-arrow { transform: rotate(180deg); opacity: 1; }

.mobile-nav-sub {
  display: none;
  background: rgba(0,0,0,0.2);
  border-left: 3px solid var(--orange);
  margin: 0 0 4px 20px;
  border-radius: 0 8px 8px 0;
}
.mobile-nav-sub.open { display: block; animation: slideDown 0.25s ease; }
.mobile-nav-sub-item {
  display: block;
  padding: 11px 20px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.mobile-nav-sub-item:hover { color: var(--orange); text-decoration: none; }
.mobile-nav-sub-item .text-orange { color: var(--orange) !important; }

.mobile-menu-cta {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.btn-mobile-contact {
  display: block;
  padding: 13px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-mobile-contact:hover { background: rgba(255,255,255,0.2); color: white; text-decoration: none; }
.btn-mobile-quote {
  display: block;
  padding: 13px;
  text-align: center;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(29,93,199,0.4);
}
.btn-mobile-quote:hover { background: var(--orange-dark); color: white; text-decoration: none; transform: translateY(-1px); }

.mobile-menu-footer {
  padding: 16px 20px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.mobile-menu-footer p { margin-bottom: 6px; }
.mobile-menu-footer strong { color: rgba(255,255,255,0.8); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0f3460 100%);
  color: white;
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/images/hero-pattern.svg') no-repeat center/cover;
  opacity: 0.05;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(26,26,46,0.3); }
.min-vh-85 { min-height: 85vh; }
.hero-badge {
  display: inline-block;
  background: rgba(29,93,199,0.2);
  border: 1px solid rgba(29,93,199,0.4);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}
.trust-item { color: rgba(255,255,255,0.9); font-size: 14px; }
.hero-cta { padding: 14px 32px; font-size: 16px; }
.hero-stats-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 20px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 20px;
  display: flex; align-items: center; gap: 14px;
  transition: all 0.3s;
}
.hero-stat-card:hover { background: rgba(29,93,199,0.15); border-color: rgba(29,93,199,0.4); }
.hero-stat-card .stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hero-stat-card .stat-info strong { display: block; font-size: 1.3rem; font-weight: 800; color: white; }
.hero-stat-card .stat-info span { font-size: 12px; color: rgba(255,255,255,0.65); }
.hero-wave { position: relative; margin-bottom: -2px; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; }

/* ========== SERVICES STRIP ========== */
.services-strip { background: var(--orange); }
.strip-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: white; text-decoration: none; font-weight: 600; font-size: 14px;
  padding: 10px;  border-radius: 10px; transition: all 0.2s;
}
.strip-item i { font-size: 24px; }
.strip-item:hover { color: white; background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* ========== SECTION STYLES ========== */
.section-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.section-subtitle { color: var(--gray); max-width: 560px; margin: 0 auto; }
.section-header .section-subtitle { text-align: center; }

/* ========== QUOTE SECTION ========== */
.quote-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.quote-card-left {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  padding: 40px;
}
.quote-card-left h2 { font-size: 1.6rem; font-weight: 800; color: white; }
.quote-card-left p { color: rgba(255,255,255,0.8); }
.quote-benefits { list-style: none; padding: 0; }
.quote-benefits li { padding: 6px 0; color: rgba(255,255,255,0.9); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.quote-benefits li i { color: var(--orange); }
.quote-card-right { padding: 40px; }
.utility-options { display: flex; gap: 12px; }
.utility-option input { display: none; }
.utility-option span {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 24px; border: 2px solid var(--border); border-radius: 10px;
  cursor: pointer; font-weight: 600; font-size: 14px; transition: all 0.2s;
  color: var(--gray);
}
.utility-option span i { font-size: 22px; }
.utility-option input:checked + span {
  border-color: var(--orange); background: var(--orange-light); color: var(--orange);
}
.utility-option span:hover { border-color: var(--orange); color: var(--orange); }

/* ========== SERVICE CARDS ========== */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--orange); transform: scaleX(0);
  transition: transform 0.3s ease; transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white; border: none;
}
.service-card.featured h3, .service-card.featured p { color: white; }
.service-card.featured .service-features li { color: rgba(255,255,255,0.85); }
.service-card.featured .service-features li i { color: var(--orange); }
.featured-badge {
  position: absolute; top: 16px; right: -24px;
  background: var(--orange); color: white;
  padding: 4px 32px; font-size: 11px; font-weight: 700;
  transform: rotate(45deg); letter-spacing: 1px;
}
.service-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}
.service-card.featured .service-icon { background: rgba(29,93,199,0.2); }
.service-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-features { list-style: none; padding: 0; margin-top: 16px; }
.service-features li { padding: 5px 0; font-size: 14px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.service-features li i { color: var(--orange); font-size: 12px; }

/* ========== WHY SECTION ========== */
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.why-item h5 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 15px; }
.why-item p { color: var(--gray); font-size: 14px; margin: 0; }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat-box {
  background: white; border-radius: 16px; padding: 30px;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.stat-box.orange { background: var(--orange); }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat-box.orange .stat-number { color: white; }
.stat-label { font-size: 13px; color: var(--gray); font-weight: 500; }
.stat-box.orange .stat-label { color: rgba(255,255,255,0.85); }

/* ========== NOTICE BANNER ========== */
.notice-banner {
  background: linear-gradient(135deg, #2d3561, #1A1A2E);
  color: white; font-size: 14px;
}
.notice-banner a { color: white; }
.fraud-notice {
  background: var(--gray-light);
  border-top: 1px solid var(--border);
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: white; border-radius: 16px;
  padding: 28px; border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%; transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.testimonial-stars { color: #fbbf24; font-size: 14px; margin-bottom: 12px; }
.testimonial-text { color: var(--gray); font-style: italic; font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 15px; }
.testimonial-author span { color: var(--gray); font-size: 13px; }

/* ========== PARTNER CTA ========== */
.partner-cta-card {
  background: linear-gradient(135deg, var(--orange), #ff8c5a);
  color: white; border-radius: 20px; padding: 50px;
}
.partner-cta-card h2 { color: white; font-weight: 800; }
.partner-cta-card p { color: rgba(255,255,255,0.9); }
.partner-cta-card .btn-orange { background: white; color: var(--orange); border-color: white; }
.partner-cta-card .btn-orange:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ========== BLOG CARDS ========== */
.blog-card {
  background: white; border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden; transition: all 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-img-placeholder {
  height: 200px; background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--orange);
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  display: inline-block;
  background: var(--orange-light); color: var(--orange);
  padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; margin-bottom: 10px;
}
.blog-card-body h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.blog-card-body h4 a { color: inherit; text-decoration: none; }
.blog-card-body h4 a:hover { color: var(--orange); }
.read-more { color: var(--orange); font-weight: 600; font-size: 14px; text-decoration: none; margin-top: auto; }
.read-more:hover { color: var(--orange-dark); }

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white; padding: 60px 0 50px;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: white; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin: 0; }
.breadcrumb-hero .breadcrumb-item, .breadcrumb-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 13px; }
.breadcrumb-hero .breadcrumb-item.active { color: var(--orange); }
.breadcrumb-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ========== CONTACT ========== */
.contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 2px; }
.contact-item p { margin: 0; font-size: 14px; }
.contact-form-card { background: white; border-radius: 16px; padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid var(--border); }

/* ========== SUPPORT ========== */
.support-card {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 28px; text-align: center; color: var(--navy); transition: all 0.3s;
  display: block;
}
.support-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-color: var(--orange); color: var(--orange); }
.support-card i { font-size: 36px; color: var(--orange); margin-bottom: 12px; display: block; }
.support-card h5 { font-weight: 700; }
.support-card p { font-size: 13px; color: var(--gray); margin: 0; }
.faq-accordion .accordion-item { border: 1px solid var(--border); border-radius: 10px !important; margin-bottom: 8px; overflow: hidden; }
.faq-item .accordion-button { font-weight: 600; font-size: 15px; background: white; color: var(--navy); box-shadow: none; }
.faq-item .accordion-button:not(.collapsed) { background: var(--orange-light); color: var(--orange); box-shadow: none; }
.faq-item .accordion-button:focus { box-shadow: none; }
.emergency-card { background: white; border-radius: 16px; padding: 30px; border: 2px solid var(--border); }
.emergency-card.gas { border-color: #fca5a5; }
.emergency-card.electric { border-color: #fde68a; }
.styled-list { list-style: none; padding: 0; }
.styled-list li { padding: 6px 0; display: flex; align-items: center; gap: 10px; font-size: 15px; }

/* ========== ABOUT ========== */
.value-card {
  background: white; border-radius: 14px; padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--border);
  height: 100%; transition: all 0.3s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.value-icon { font-size: 32px; color: var(--orange); margin-bottom: 16px; }
.value-card h4, .value-card h5 { color: var(--navy); font-weight: 700; }
.promise-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.promise-item { display: flex; align-items: flex-start; gap: 16px; }
.promise-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--orange-light); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.accreditations-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.accred-item { background: white; border-radius: 12px; padding: 20px; text-align: center; border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.accred-item i { font-size: 24px; color: var(--orange); margin-bottom: 8px; display: block; }
.accred-item span { font-size: 12px; font-weight: 600; color: var(--navy); }
.team-card { background: white; border-radius: 14px; padding: 28px; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--orange-light); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.team-role { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.about-img-card { border-radius: 20px; }

/* ========== PARTNER PAGE ========== */
.partner-benefits { display: flex; flex-direction: column; gap: 20px; }
.benefit-item { display: flex; align-items: flex-start; gap: 16px; }
.benefit-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-light); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.benefit-item h5 { color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.benefit-item p { color: var(--gray); font-size: 14px; margin: 0; }

/* ========== SERVICE DETAIL ========== */
.service-detail-card { background: var(--gray-light); border-radius: 16px; padding: 30px; border: 1px solid var(--border); }
.mini-stat { background: white; border-radius: 10px; padding: 16px; text-align: center; border: 1px solid var(--border); }
.mini-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--orange); }
.mini-stat span { font-size: 12px; color: var(--gray); }

/* ========== SIDEBAR (Blog) ========== */
.sidebar-card { background: white; border-radius: 14px; padding: 24px; border: 1px solid var(--border); box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 20px; }
.sidebar-card h5 { color: var(--navy); font-weight: 700; margin-bottom: 12px; }
.related-post { padding: 10px 0; border-bottom: 1px solid var(--border); }
.related-post:last-child { border-bottom: none; }
.related-post a { color: var(--navy); font-weight: 600; font-size: 14px; text-decoration: none; }
.related-post a:hover { color: var(--orange); }
.blog-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.blog-content h2, .blog-content h3, .blog-content h4 { color: var(--navy); font-weight: 700; margin-top: 28px; }
.blog-content p { margin-bottom: 20px; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 20px; }
.blog-content li { margin-bottom: 8px; }

/* ========== LEGAL ========== */
.legal-content h3 { color: var(--navy); font-weight: 700; margin-top: 32px; margin-bottom: 12px; font-size: 1.2rem; }
.legal-content p { color: var(--gray); }

/* ========== COMPLAINTS ========== */
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.process-step { display: flex; align-items: flex-start; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.process-step h5 { color: var(--navy); font-weight: 700; margin-bottom: 4px; }

/* ========== FOOTER ========== */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }
.footer-brand { font-size: 1.8rem; font-weight: 800; }
.footer-brand .brand-hello { color: #7eb8ff; }
.footer-brand .brand-champion { color: var(--green); }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }
.footer-contact p { display: flex; align-items: center; font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.7); }
.footer-contact i { color: var(--orange); width: 16px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  font-size: 14px; text-decoration: none; margin-right: 6px; transition: all 0.2s;
}
.footer-social a:hover { background: var(--orange); color: white; transform: translateY(-3px); }
.footer-title { color: white; font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-newsletter .form-control { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: white; }
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter .form-control:focus { background: rgba(255,255,255,0.12); border-color: var(--orange); box-shadow: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-badge { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-badge i { color: var(--orange); }

/* ========== QUOTE PAGE ========== */
.quote-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 60%, #1a1a2e 100%);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.quote-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(29,93,199,0.08) 0%, transparent 60%);
}
.fw-800 { font-weight: 800 !important; }
.text-white-75 { color: rgba(255,255,255,0.78) !important; }
.text-white-50 { color: rgba(255,255,255,0.5) !important; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 6px 14px; border-radius: 30px; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.trust-pill i { color: var(--orange); }
.qh-stat { text-align: center; }
.qh-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: white; }
.qh-stat span { font-size: 12px; color: rgba(255,255,255,0.6); }

/* Quote Form Card */
.quote-page-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.quote-page-card-header {
  background: linear-gradient(135deg, var(--orange), #ff8c5a);
  padding: 24px 28px;
  color: white;
}
.quote-page-card-header h3 { font-weight: 800; font-size: 1.2rem; margin-bottom: 4px; color: white; }

/* Step indicator */
.quote-steps { background: #f8f9fa; padding: 16px 28px 8px; border-bottom: 1px solid var(--border); }
.step-indicator { display: flex; align-items: center; justify-content: center; gap: 0; }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: #e9ecef; color: #adb5bd;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
  transition: all 0.3s;
}
.step-dot.active { background: var(--orange); color: white; box-shadow: 0 4px 12px rgba(29,93,199,0.4); }
.step-line { flex: 1; height: 2px; background: #e9ecef; max-width: 80px; }
.step-labels { display: flex; justify-content: space-between; margin-top: 6px; }
.step-labels span { font-size: 11px; color: #adb5bd; font-weight: 600; text-align: center; flex: 1; }
.step-labels span.active { color: var(--orange); }

/* Step title */
.step-title { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 20px; }
.form-step { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Utility big options */
.utility-options-big { display: flex; flex-direction: column; gap: 10px; }
.utility-big-option input { display: none; }
.utility-big-option span {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border: 2px solid var(--border);
  border-radius: 12px; cursor: pointer; transition: all 0.2s;
  background: white;
}
.utility-big-option span i { font-size: 22px; color: var(--gray); width: 28px; text-align: center; }
.utility-big-option span strong { display: block; font-weight: 700; color: var(--navy); font-size: 14px; }
.utility-big-option span small { color: var(--gray); font-size: 12px; }
.utility-big-option input:checked + span {
  border-color: var(--orange); background: var(--orange-light);
}
.utility-big-option input:checked + span i { color: var(--orange); }
.utility-big-option input:checked + span strong { color: var(--orange); }
.utility-big-option span:hover { border-color: var(--orange); background: var(--orange-light); }

.consent-check { background: #f8f9fa; padding: 12px; border-radius: 8px; border: 1px solid var(--border); }
.quote-hero-wave { margin-bottom: -2px; line-height: 0; margin-top: 50px; }
.quote-hero-wave svg { width: 100%; height: 60px; display: block; }

/* Process cards */
.process-card {
  background: white; border-radius: 16px; padding: 28px 20px;
  border: 1px solid var(--border); height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: all 0.3s;
  position: relative;
}
.process-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-color: var(--orange); }
.process-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: white;
  font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(29,93,199,0.35);
}
.process-card .process-icon {
  font-size: 32px; color: var(--orange); margin: 16px 0 12px;
}
.process-card h5 { font-weight: 700; color: var(--navy); }

/* Guarantee items */
.guarantee-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: white; border-radius: 12px; padding: 16px;
  border: 1px solid var(--border); height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.guarantee-item > i { font-size: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.guarantee-item strong { display: block; color: var(--navy); font-weight: 700; font-size: 14px; margin-bottom: 2px; }

/* Call CTA */
.quote-call-cta {
  background: linear-gradient(135deg, var(--navy), #0f3460);
  position: relative;
}
.btn-white-orange {
  background: white; color: var(--orange);
  border: 2px solid white; font-weight: 700;
  border-radius: 50px; transition: all 0.3s;
}
.btn-white-orange:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* ========== COOKIE BANNER ========== */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
  padding: 16px 0;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-icon { font-size: 28px; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 220px; }
.cookie-text p { margin: 0; color: rgba(255,255,255,0.85); font-size: 14px; }
.cookie-text a { color: var(--orange); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--orange); color: white;
  border: none; border-radius: 8px;
  padding: 10px 24px; font-weight: 700; font-size: 14px; cursor: pointer;
  transition: all 0.2s;
}
.btn-cookie-accept:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 8px;
  padding: 10px 18px; font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all 0.2s;
}
.btn-cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: white; border: none;
  display: none; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; box-shadow: 0 4px 15px rgba(29,93,199,0.4);
  transition: all 0.3s;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { transform: translateY(-4px); background: var(--orange-dark); }

/* ========== WHATSAPP BUBBLE ========== */
.whatsapp-bubble {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: all 0.3s;
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-bubble:hover {
  background: #1ebe5d;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.6);
  text-decoration: none;
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: #1A1A2E;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1A1A2E;
  border-right: none;
}
.whatsapp-bubble:hover .whatsapp-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}
@media (max-width: 576px) {
  .whatsapp-bubble { width: 50px; height: 50px; font-size: 24px; bottom: 76px; right: 16px; }
  .whatsapp-tooltip { display: none; }
}

/* ========== POWERED BY ========== */
.powered-by { font-size: 12px; color: rgba(255,255,255,0.4); }
.powered-by a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.powered-by a:hover { color: #ff8c5a; }

/* ========== FORM CONTROLS ========== */
.form-control, .form-select {
  border-color: var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  transition: all 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(29,93,199,0.15);
}
.form-label { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 6px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .hero-section { padding: 60px 0 30px; }
  .min-vh-85 { min-height: auto; padding: 40px 0; }
  .quote-card-left { padding: 30px; }
  .quote-card-right { padding: 30px; }
  .partner-cta-card { padding: 32px; }
  .accreditations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-wrap { grid-template-columns: 1fr; }
  .section-title { font-size: 1.5rem; }
  .quote-card { border-radius: 12px; }
  .quote-card-left { padding: 24px; }
  .quote-card-right { padding: 24px; }
}
