/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1A1A1A;
  --blue: #2A2A2A;
  --blue-light: #3A3A3A;
  --accent: #CC2027;
  --accent-hover: #A81A20;
  --gold: #F5C518;
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --gray-light: #E8EAED;
  --gray: #6B7280;
  --gray-dark: #374151;
  --text: #1F2937;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-body: 'Open Sans', Arial, sans-serif;
  --font-heading: 'Montserrat', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); }
p { margin-bottom: 1rem; }

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.top-bar {
  background: var(--blue);
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar a {
  color: rgba(255,255,255,0.85);
}
.top-bar a:hover { color: var(--white); }
.top-bar-left { display: flex; gap: 1.25rem; align-items: center; }
.top-bar-right { display: flex; gap: 1rem; align-items: center; }
.top-bar i { margin-right: 0.3rem; }

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}
.logo img {
  height: 150px;
  width: auto;
  position: relative;
  top: 50px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-wrap .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.2rem;
}
.nav-wrap .nav-cta:hover {
  background: var(--accent-hover);
}

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

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(42,42,42,0.75) 60%, rgba(58,58,58,0.7) 100%),
              url('images/hero.webp') center/cover no-repeat;
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,69,26,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  justify-content: center;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.hero-stat .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== HIGHLIGHTS BAR ===== */
.highlights {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.highlight-item {
  padding: 1.5rem 1rem;
}
.highlight-item i {
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.highlight-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.highlight-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4.5rem 0;
}
.section-alt {
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 0.75rem;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ===== HOME SERVICES OVERVIEW ===== */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.service-preview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 3px solid transparent;
}
.service-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}
.service-preview-card i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 1rem;
  display: block;
}
.service-preview-card h3 {
  margin-bottom: 0.5rem;
}
.service-preview-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-card p {
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial-source {
  font-size: 0.8rem;
  color: var(--gray);
}
.stars {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner h2::after { display: none; }
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}
.cta-banner .hero-buttons { justify-content: center; margin-bottom: 0; }

/* ===== SERVICES PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-category {
  margin-bottom: 3.5rem;
}
.service-category:last-child { margin-bottom: 0; }
.service-category h2 {
  margin-bottom: 0.25rem;
  text-align: center;
}
.service-category h2 i {
  color: var(--accent);
  margin-right: 0.5rem;
}
.service-category > p {
  color: var(--gray);
  margin-bottom: 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-card i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image-placeholder {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: var(--radius);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
}
.about-image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.5);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.value-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 0; }

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-light);
  border-radius: 2px;
}
.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 13px;
  height: 13px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.timeline-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== REVIEWS PAGE ===== */
.rating-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.rating-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.rating-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.rating-badge i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.rating-badge .badge-platform {
  font-weight: 700;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 0.25rem;
}
.rating-badge .badge-score {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.rating-badge .badge-count {
  font-size: 0.8rem;
  color: var(--gray);
}
.badge-google i { color: #4285F4; }
.badge-yelp i { color: #D32323; }
.badge-birdeye i { color: #38A169; }
.badge-facebook i { color: #1877F2; }

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.review-card .stars { margin-bottom: 1rem; }
.review-card blockquote {
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.review-author { font-weight: 600; color: var(--navy); }
.review-source { color: var(--gray); }

/* ===== CONTACT PAGE ===== */
.contact-map-section {
  padding: 0;
}
.map-full {
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}
.map-full iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-col {
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius);
}

.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-detail i {
  font-size: 1.1rem;
  color: var(--accent);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contact-detail strong {
  color: var(--navy);
  font-size: 0.9rem;
}
.contact-detail div {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
}
.contact-detail a {
  color: var(--accent);
  font-weight: 600;
}

.contact-social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-light);
}
.contact-social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  transition: all var(--transition);
}
.contact-social-row a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.contact-form h2::after { display: none; }

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-about p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border-radius: 50%;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--accent);
  width: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.7);
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===== UTILITY / SHARED ===== */
.stat-star {
  font-size: 0.65em;
  margin-left: 4px;
}
.source-icon {
  font-size: 0.7em;
  margin-right: 4px;
}
.stars-sm {
  font-size: 0.85rem;
}
.section-header-spaced {
  margin-top: 2rem;
}
.category-page-link {
  color: var(--accent);
  font-weight: 600;
}
.category-page-link:hover {
  text-decoration: underline;
}
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== REVIEW CTA BOX ===== */
.review-cta-box {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
}
.review-cta-box h3 {
  margin-bottom: 0.75rem;
}
.review-cta-box p {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.review-cta-box .review-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.review-qr-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.review-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.review-qr-img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-light);
}
@media (max-width: 600px) {
  .review-qr-img {
    width: 140px;
    height: 140px;
  }
}

/* ===== ABOUT PAGE EXTRAS ===== */
.about-intro .btn {
  margin-top: 1.5rem;
}

/* ===== CONTACT PAGE EXTRAS ===== */
.contact-section-heading {
  margin-bottom: 1.5rem;
}
.contact-online-heading {
  margin-bottom: 0.75rem;
}
.contact-form-intro {
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.contact-submit-btn {
  width: 100%;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-intro {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
  .mobile-overlay.active { display: block; }

  .hero { padding: 3.5rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }

  .section { padding: 3rem 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .rating-badges {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== SPECIALTY PAGES (Classic Cars, Body & Paint) ===== */
.page-hero-tall {
  padding: 4.5rem 0 3.5rem;
}
.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.9);
}

/* Specialty Intro (image + text side by side) */
.specialty-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.specialty-intro-text h2 {
  margin-bottom: 1rem;
}
.specialty-intro-text p {
  color: var(--gray-dark);
  line-height: 1.8;
}
.specialty-intro-image {
  display: flex;
  justify-content: center;
}
.specialty-image-placeholder {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: var(--radius);
  width: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.specialty-image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.4);
}

/* Specialty Highlight Checklist */
.specialty-highlights {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.specialty-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
}
.specialty-highlight i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Icon Feature Grid (larger feature cards) */
.icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.icon-feature {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.icon-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.icon-feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.icon-feature-icon i {
  font-size: 1.75rem;
  color: var(--white);
}
.icon-feature h3 {
  margin-bottom: 0.5rem;
}
.icon-feature p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.7;
}
.icon-feature p a {
  color: var(--accent);
  font-weight: 600;
}
.icon-feature p a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .specialty-intro {
    grid-template-columns: 1fr;
  }
  .specialty-intro-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-hero-tall {
    padding: 3rem 0 2.5rem;
  }
}
