/* =============================================
   AirDuctVet - Shared Styles
   Color Palette:
   - Deep Navy: #0a0f2e
   - Mid Navy: #1a237e
   - Accent Red: #d32f2f
   - Bright Red: #c62828
   - White: #ffffff
   - Light Gray: #f5f5f5
   - Text Gray: #555555
============================================= */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Variables ---- */
:root {
  --navy: #0a0f2e;
  --navy2: #1a237e;
  --navy3: #0d1b4b;
  --red: #d32f2f;
  --red2: #c62828;
  --red-light: #ff5252;
  --white: #ffffff;
  --light: #f5f7ff;
  --gray: #555555;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--gray); }

/* ---- Utility Classes ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-red { color: var(--red); }
.bg-navy { background: var(--navy); }
.bg-navy2 { background: var(--navy2); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.section-title span { color: var(--red); }

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  background: rgba(211,47,47,0.1);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(211,47,47,0.2);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211,47,47,0.4);
}

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

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

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.topbar a:hover { color: var(--red-light); }
.topbar i { color: var(--red); font-size: 0.85rem; }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}

.navbar-logo img {
  height: 60px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-top: 3px solid var(--red);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 999;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-item i { color: var(--red); font-size: 0.9rem; width: 16px; }
.dropdown-item:hover { background: var(--light); color: var(--red); padding-left: 26px; }

.navbar-cta .btn-red { font-size: 0.88rem; padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 24px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--light);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--red); background: var(--light); }
.mobile-nav .mobile-sub a {
  padding-left: 40px;
  font-size: 0.86rem;
  color: var(--gray);
}
.mobile-nav .mobile-sub a:hover { color: var(--red); }
.mobile-nav .btn-red {
  margin: 16px 24px 0;
  display: block;
  text-align: center;
  border-radius: 50px;
  padding: 12px;
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(135deg, #0a0f2e 0%, #1a237e 50%, #0a0f2e 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  min-height: 620px;
  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");
  opacity: 0.4;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,64L1440,0L1440,80L0,80Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211,47,47,0.2);
  border: 1px solid rgba(211,47,47,0.4);
  color: #ff8a80;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-badge i { color: var(--red-light); }

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span { color: #ff8a80; }

.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

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

.hero-stat {
  text-align: left;
}
.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.hero-stat span {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0a0f2e 0%, #1a237e 60%, #0a0f2e 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,48L1440,0L1440,60L0,60Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb i { font-size: 0.7rem; }
.breadcrumb span { color: var(--red-light); }

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 40px rgba(211,47,47,0.15);
  transform: translateY(-6px);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #fff0f0, #ffe5e5);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--red);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--red);
  color: var(--white);
}

.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; flex-grow: 1; margin-bottom: 20px; }

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: auto;
  transition: var(--transition);
}
.service-card:hover .learn-more { gap: 12px; }

/* ---- GRID SYSTEMS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- FEATURES / WHY CHOOSE US ---- */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.feature-item:hover { box-shadow: 0 6px 24px rgba(211,47,47,0.12); transform: translateY(-3px); }

.feature-icon-sm {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.feature-text h4 { margin-bottom: 4px; font-size: 1rem; }
.feature-text p { font-size: 0.85rem; margin: 0; }

/* ---- PROCESS STEPS ---- */
.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(211,47,47,0.4);
}

.process-step h4 { color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid var(--red);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.stars { color: #ffc107; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-card p { font-size: 0.9rem; flex-grow: 1; margin-bottom: 20px; font-style: italic; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.reviewer-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.reviewer-info span { font-size: 0.78rem; color: var(--gray); }

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: var(--transition);
  gap: 10px;
}
.faq-question:hover { color: var(--red); }
.faq-item.open .faq-question { background: var(--navy); color: var(--white); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--navy);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--red); color: var(--white); transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--gray);
  background: var(--white);
}
.faq-item.open .faq-answer { max-height: 600px; padding: 20px 24px; }

/* ---- STATS BANNER ---- */
.stats-bar { background: var(--red); padding: 50px 0; }
.stat-item { text-align: center; color: var(--white); padding: 10px; }
.stat-item strong { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.stat-item span { font-size: 0.85rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(211,47,47,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---- SERVICE AREAS ---- */
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.area-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.area-tag i { color: var(--red); font-size: 0.75rem; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---- PRICING CARDS ---- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--red);
  position: relative;
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%; transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(211,47,47,0.12); }

.price-tag { margin: 16px 0; }
.price-tag strong { font-size: 2.4rem; color: var(--navy); font-weight: 800; }
.price-tag span { font-size: 0.85rem; color: var(--gray); }

.pricing-features { text-align: left; margin: 20px 0 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.88rem; border-bottom: 1px solid var(--light); }
.pricing-features li i { color: var(--red); font-size: 0.8rem; }

/* ---- CONTENT PAGE SECTIONS ---- */
.content-section { padding: 70px 0; }

.content-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, #fff0f0, #fff5f5);
  border-left: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 30px 0;
}
.highlight-box h4 { color: var(--navy); margin-bottom: 8px; }
.highlight-box p { margin: 0; font-size: 0.92rem; }

.checklist { margin: 20px 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--light);
  color: #444;
}
.checklist li:last-child { border-bottom: none; }
.checklist li i { color: var(--red); margin-top: 3px; min-width: 16px; }

.numbered-list { counter-reset: list-counter; }
.numbered-list li {
  counter-increment: list-counter;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light);
  align-items: flex-start;
}
.numbered-list li::before {
  content: counter(list-counter);
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  position: sticky;
  top: 90px;
}
.sidebar-cta h3 { color: var(--white); margin-bottom: 14px; }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 20px; }
.sidebar-cta .contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
}
.sidebar-cta .contact-detail i { color: var(--red-light); width: 18px; }
.sidebar-cta .contact-detail a { color: rgba(255,255,255,0.85); }
.sidebar-cta .contact-detail a:hover { color: var(--white); }

/* ---- CONTACT FORM ---- */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 8px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #333;
  transition: var(--transition);
  outline: none;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(211,47,47,0.08);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---- MAP SECTION ---- */
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; display: block; }

/* ---- CONTACT INFO BOX ---- */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-detail-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}
.contact-detail-row:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(211,47,47,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  font-size: 1rem;
}
.contact-detail-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 3px; }
.contact-detail-text span,
.contact-detail-text a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.contact-detail-text a:hover { color: var(--red-light); }

/* ---- ABOUT PAGE ---- */
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
}
.badge-tag i { color: var(--red); }

.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 8px 32px rgba(211,47,47,0.1); }
.value-card .vi { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 55px; filter: brightness(1.2); }
.footer-tagline { font-size: 0.88rem; margin-bottom: 20px; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--red-light); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--red); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
}
.footer-contact-item i { color: var(--red); margin-top: 3px; min-width: 16px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--red-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-bottom a:hover { color: var(--red-light); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(211,47,47,0.4);
  border: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--red2); transform: translateY(-3px); }

/* ---- NOTICE BANNER ---- */
.notice-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
}
.notice-banner a { color: var(--white); text-decoration: underline; }
.notice-banner i { margin-right: 6px; }

/* ---- INLINE ANCHOR LINK STYLE ---- */
.content-anchor {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dotted;
  transition: var(--transition);
}
.content-anchor:hover { color: var(--red2); text-decoration-style: solid; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col-content { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 55px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 60px 0 70px; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
