/* ============================================
   AirDuctVet - Main Stylesheet
   Color Palette: Navy Blue, Royal Blue, Red, White, Orange
   ============================================ */

:root {
  --navy: #0d2b5e;
  --royal-blue: #1a4db5;
  --light-blue: #2563eb;
  --red: #c0392b;
  --orange: #e67e22;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --gray-light: #e8edf5;
  --gray: #6b7280;
  --dark: #111827;
  --text: #374151;
  --shadow: 0 4px 20px rgba(13, 43, 94, 0.12);
  --shadow-lg: 0 8px 40px rgba(13, 43, 94, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-blue { background: var(--royal-blue); }
.bg-off-white { background: var(--off-white); }
.bg-gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%); }

.section-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label.dark {
  background: rgba(26,77,181,0.1);
  color: var(--royal-blue);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 30px;
}
.section-desc.white { color: rgba(255,255,255,0.82); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--royal-blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,77,181,0.35);
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13,43,94,0.4);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}
.btn-red:hover {
  background: #a93226;
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230,126,34,0.35);
}
.btn-orange:hover { background: #ca6f1e; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 17px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  font-size: 13.5px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: rgba(255,255,255,0.88); }
.top-bar a:hover { color: var(--orange); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar i { color: var(--orange); margin-right: 5px; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(13,43,94,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo img { height: 62px; width: auto; }
.logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav ul li a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.25s;
  display: block;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--royal-blue);
  background: var(--gray-light);
}

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  z-index: 200;
  overflow: hidden;
  border: 1px solid var(--gray-light);
}
.nav-item:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.92rem;
  color: var(--navy);
  border-radius: 0;
  border-bottom: 1px solid var(--gray-light);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--off-white); color: var(--royal-blue); }

.nav-book-btn {
  background: var(--royal-blue);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
}
.nav-book-btn:hover { background: var(--navy) !important; color: var(--white) !important; }

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3d8f 50%, var(--red) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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");
}
/* flame streaks */
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(230,126,34,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-block;
  background: rgba(230,126,34,0.25);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(230,126,34,0.4);
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--orange); }
.hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-trust-item i { color: var(--orange); font-size: 1rem; }
.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-img-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hero-img-box img { width: 100%; height: 160px; object-fit: cover; }
.hero-img-box.tall { grid-row: span 2; }
.hero-img-box.tall img { height: 100%; min-height: 330px; }

/* Service Tabs under Hero */
.service-tabs {
  background: var(--navy);
  padding: 18px 0;
}
.service-tabs .container {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}
.service-tab i { color: var(--orange); font-size: 1.1rem; }
.service-tab:hover { background: var(--royal-blue); border-color: var(--royal-blue); transform: translateY(-2px); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--royal-blue);
  padding: 20px 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-strip-text {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}
.cta-strip-text span { color: var(--orange); }

/* ===== INTRO CARD ===== */
.intro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 50px 50px;
  max-width: 900px;
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
  text-align: center;
}
.intro-card .section-label { background: rgba(26,77,181,0.1); color: var(--royal-blue); }
.intro-card .section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); }

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 42px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.35s;
  border: 1px solid var(--gray-light);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--royal-blue);
}
.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.65;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.92rem;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; color: var(--navy); }

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-list { margin-top: 28px; }
.why-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--royal-blue), var(--navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-item p { font-size: 0.93rem; color: var(--gray); }
.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-img img { width: 100%; height: 460px; object-fit: cover; }
.why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.why-badge span { font-size: 0.85rem; color: var(--gray); }
.why-badge strong { display: block; font-size: 1rem; color: var(--navy); }

/* ===== STATS STRIP ===== */
.stats-strip { padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 30px 20px; border-radius: var(--radius-lg); }
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.92rem; color: rgba(255,255,255,0.82); font-weight: 500; }

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 42px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 36px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-light);
  transition: all 0.3s;
}
.pricing-card:hover { border-color: var(--royal-blue); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-tag {
  display: inline-block;
  background: rgba(26,77,181,0.1);
  color: var(--royal-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.pricing-card p { font-size: 0.95rem; color: var(--gray); margin-bottom: 22px; }
.price-range {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}
.price-range span { font-size: 1rem; font-weight: 500; color: var(--gray); }

/* ===== TOOLS SECTION ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}
.tool-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
}
.tool-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.tool-icon {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 auto 18px;
}
.tool-card h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.tool-card p { color: rgba(255,255,255,0.75); font-size: 0.93rem; }

/* ===== RESIDENTIAL / COMMERCIAL ===== */
.rc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 42px;
}
.rc-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.rc-card.residential { background: linear-gradient(135deg, var(--navy), #1e3a8a); }
.rc-card.commercial { background: linear-gradient(135deg, #7f1d1d, var(--red)); }
.rc-card h3 { color: var(--white); font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.rc-card p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin-bottom: 22px; }
.rc-list { margin-bottom: 28px; }
.rc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
  margin-bottom: 10px;
}
.rc-list li i { color: var(--orange); margin-top: 3px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 42px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.author-info strong { display: block; font-size: 0.95rem; color: var(--navy); font-weight: 700; }
.author-info span { font-size: 0.82rem; color: var(--gray); }

/* ===== SCAM WARNING ===== */
.scam-warning {
  background: linear-gradient(135deg, #7f1d1d, var(--red));
  padding: 60px 0;
}
.scam-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.15);
}
.scam-icon {
  font-size: 4rem;
  color: var(--white);
}
.scam-inner h2 { color: var(--white); font-size: 1.7rem; font-weight: 800; margin-bottom: 12px; }
.scam-inner p { color: rgba(255,255,255,0.88); font-size: 0.97rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
  gap: 12px;
}
.faq-question i { color: var(--royal-blue); font-size: 0.9rem; transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ===== LEAD FORM ===== */
.lead-form-section { background: var(--off-white); }
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.lead-form-info { padding-top: 10px; }
.lead-form-info .section-title { text-align: left; }
.lead-form-info .section-desc { text-align: left; margin: 0 0 24px; }
.info-bullets { list-style: none; }
.info-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 12px;
}
.info-bullets li i { color: var(--royal-blue); }
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  box-shadow: var(--shadow-lg);
}
.lead-form-card h3 { color: var(--navy); font-size: 1.3rem; font-weight: 800; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.25s;
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal-blue);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255,255,255,0.84);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== SERVICE PAGE CONTENT ===== */
.service-content { padding: 70px 0; }
.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
.service-main h2 { color: var(--navy); font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; }
.service-main h3 { color: var(--navy); font-size: 1.2rem; font-weight: 700; margin: 24px 0 10px; }
.service-main p { color: var(--text); margin-bottom: 16px; line-height: 1.75; }
.service-main ul { margin: 0 0 20px 18px; list-style: disc; }
.service-main ul li { color: var(--text); margin-bottom: 8px; }
.service-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.benefit-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 18px;
  border-left: 4px solid var(--royal-blue);
}
.benefit-item i { color: var(--royal-blue); font-size: 1.3rem; margin-bottom: 8px; display: block; }
.benefit-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.benefit-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }

.service-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  margin-bottom: 22px;
}
.sidebar-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--text);
}
.contact-info-list li i {
  color: var(--royal-blue);
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 20px;
}
.contact-info-list li a { color: var(--navy); font-weight: 600; }
.contact-info-list li a:hover { color: var(--royal-blue); }
.sidebar-services-list li { margin-bottom: 6px; }
.sidebar-services-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--navy);
  font-weight: 600;
  transition: all 0.25s;
  border: 1px solid var(--gray-light);
}
.sidebar-services-list li a:hover,
.sidebar-services-list li a.active {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}
.sidebar-services-list li a i { font-size: 0.9rem; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 460px; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--royal-blue), var(--navy));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--gray); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--royal-blue));
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  color: var(--white);
}
.contact-info-card h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.contact-info-card p { color: rgba(255,255,255,0.82); margin-bottom: 28px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
}
.contact-detail-item h4 { color: rgba(255,255,255,0.65); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-detail-item p, .contact-detail-item a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.97rem;
}
.social-links { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 28px;
}
.map-container iframe { width: 100%; border-radius: var(--radius-lg); display: block; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { height: 55px; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.93rem; line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a i { font-size: 0.75rem; color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact-item i { color: var(--orange); margin-top: 3px; min-width: 16px; }
.footer-contact-item a { color: rgba(255,255,255,0.82); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--orange); }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    border-top: 3px solid var(--royal-blue);
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 2px; }
  nav ul li a { padding: 12px 16px; }
  .dropdown { position: static; box-shadow: none; border: none; display: none !important; }
  .nav-item:hover .dropdown { display: none !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-img-grid { display: none; }
  .section-pad { padding: 50px 0; }
  .why-grid, .pricing-grid, .rc-grid, .about-grid,
  .lead-form-grid, .contact-grid, .service-content-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-benefits { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .scam-inner { grid-template-columns: 1fr; text-align: center; }
  .intro-card { padding: 30px 24px; margin: -20px 16px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--royal-blue);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--navy); transform: translateY(-3px); }

/* ===== PHONE FLOAT ===== */
.phone-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: var(--red);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(192,57,43,0.5);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}
.phone-float:hover { background: #a93226; transform: translateY(-2px); color: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(192,57,43,0.5); }
  50% { box-shadow: 0 4px 30px rgba(192,57,43,0.8), 0 0 0 8px rgba(192,57,43,0.1); }
}
