:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --primary-dark: #0f2440;
  --gold: #d4a017;
  --gold-light: #e8b84b;
  --gold-dark: #b8860b;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red: #dc2626;
  --green: #16a34a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }

/* TOP BAR */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: .85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar svg { width: 14px; height: 14px; margin-right: 5px; vertical-align: middle; fill: var(--gold); }

/* HEADER */
.header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 55px; width: auto; }
.logo-text h1 { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.logo-text span { font-size: .75rem; color: var(--gold-dark); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 5px; }
.nav a {
  padding: 8px 16px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-700);
  border-radius: var(--radius);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--primary); background: var(--gray-50); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
}
.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--primary);
}
.dropdown-menu a svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

.header-cta {
  background: var(--gold);
  color: var(--primary-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.header-cta svg { width: 16px; height: 16px; fill: var(--primary-dark); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,36,64,.92) 0%, rgba(26,54,93,.75) 50%, rgba(15,36,64,.85) 100%);
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--gold); }
.hero h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h2 .highlight { color: var(--gold); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary svg { fill: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline svg { fill: var(--white); }

.hero-image { flex: 0 0 400px; }
.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.hero-stat .label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-600);
}
.trust-item svg { width: 24px; height: 24px; fill: var(--gold); }

/* SERVICES SECTION */
.services-section { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,.1);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: .9rem;
  color: var(--gray-500);
  margin-bottom: 15px;
  line-height: 1.6;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.service-card-link:hover { color: var(--primary); gap: 10px; }
.service-card-link svg { width: 16px; height: 16px; fill: currentColor; transition: var(--transition); }

/* SUB-SERVICES LIST */
.sub-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.sub-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.sub-service-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}
.sub-service-item svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }
.sub-service-item span { font-weight: 600; font-size: .9rem; color: var(--gray-700); }

/* WHY CHOOSE US */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 32px; height: 32px; fill: var(--white); }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.why-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.7; }

/* COUPONS */
.coupons-section { background: var(--primary); }
.coupons-section .section-header h2 { color: var(--white); }
.coupons-section .section-header p { color: rgba(255,255,255,.7); }
.coupons-section .section-label { background: rgba(212,160,23,.2); color: var(--gold-light); }

.coupons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.coupon-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px dashed var(--gold);
  transition: var(--transition);
}
.coupon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.coupon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.coupon-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.coupon-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}
.coupon-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-700); margin-bottom: 10px; }
.coupon-card p { font-size: .85rem; color: var(--gray-500); margin-bottom: 15px; }
.coupon-code {
  display: inline-block;
  background: var(--gray-100);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
  letter-spacing: 2px;
  border: 1px dashed var(--gray-300);
}
.coupon-terms { font-size: .75rem; color: var(--gray-400); margin-top: 10px; }

/* FAQ */
.faq-section { background: var(--off-white); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--gold); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-800);
  gap: 15px;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--gold); transform: rotate(180deg); }
.faq-icon svg { width: 14px; height: 14px; fill: var(--gray-500); }
.faq-item.active .faq-icon svg { fill: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 30px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

/* SERVICE AREAS */
.areas-section { background: var(--white); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-tag {
  background: var(--gray-100);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
}
.area-tag:hover { background: var(--gold); color: var(--primary-dark); }

/* REVIEWS */
.reviews-section { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 15px; }
.review-stars svg { width: 18px; height: 18px; fill: var(--gold); }
.review-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 15px; font-style: italic; }
.review-author { font-weight: 700; font-size: .88rem; color: var(--primary); }
.review-date { font-size: .8rem; color: var(--gray-400); }

/* FOOTER */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-700);
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 15px; }
.footer-brand img { height: 45px; filter: brightness(10); }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: .88rem; color: var(--gray-400); }
.footer ul a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
}
.footer-contact svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* STICKY CALL BUTTON (MOBILE) */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--gold);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 -4px 15px rgba(0,0,0,.2);
}
.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-dark);
}
.sticky-call svg { width: 22px; height: 22px; fill: var(--primary-dark); animation: ring 2s infinite; }

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  5%, 15% { transform: rotate(-15deg); }
  10%, 20% { transform: rotate(15deg); }
  25% { transform: rotate(0); }
}

/* SERVICE PAGE SPECIFIC */
.page-hero {
  background: var(--primary-dark);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-van.png') center/cover;
  opacity: .1;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .85rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: var(--gray-400); }
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 650px;
  margin: 0 auto;
}

.content-section { background: var(--white); }
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.content-main h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
  margin-top: 40px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p { font-size: .95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 15px; }
.content-main ul { margin: 15px 0; padding-left: 0; }
.content-main ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: .95rem;
  color: var(--gray-600);
}
.content-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* SIDEBAR */
.sidebar {}
.sidebar-widget {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid var(--gray-200);
}
.sidebar-widget h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-widget ul li {
  margin-bottom: 8px;
}
.sidebar-widget ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.sidebar-widget ul a:hover {
  border-color: var(--gold);
  color: var(--primary);
  background: var(--white);
}
.sidebar-widget ul a svg { width: 16px; height: 16px; fill: var(--gold); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 30px;
  text-align: center;
  color: var(--white);
  margin-bottom: 25px;
}
.sidebar-cta h3 { color: var(--gold); border: none; padding: 0; }
.sidebar-cta p { font-size: .9rem; color: rgba(255,255,255,.8); margin: 10px 0 20px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* SERVICE PAGE CARDS */
.service-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ABOUT SECTION (homepage) */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-content h2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 15px; }
.about-content p { font-size: .95rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 15px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
}
.about-feature svg { width: 20px; height: 20px; fill: var(--green); flex-shrink: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h2 { font-size: 2.4rem; }
  .hero-image { flex: 0 0 300px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .coupons-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .service-page-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-services-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    gap: 5px;
  }
  .nav.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    min-width: auto;
  }
  .mobile-toggle { display: flex; }
  .header-cta.desktop-only { display: none; }

  .hero .container { flex-direction: column; text-align: center; padding-top: 40px; }
  .hero h2 { font-size: 2rem; }
  .hero p { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }
  .hero-image { display: none; }
  .hero-stats { justify-content: center; gap: 25px; }

  .services-grid { grid-template-columns: 1fr; }
  .coupons-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .service-page-grid { grid-template-columns: 1fr; }
  .sub-services-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .section-padding { padding: 50px 0; }
  .section-header h2 { font-size: 1.7rem; }
  .page-hero h1 { font-size: 1.8rem; }

  .sticky-call { display: block; }
  body { padding-bottom: 60px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h2 { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; gap: 15px; }
  .coupon-amount { font-size: 2.2rem; }
  .btn { padding: 12px 22px; font-size: .88rem; }
}
