/* =====================================================
   205 COOL HVAC - SHARED STYLES
   Color Palette: Cool blues, crisp white, subtle gray
   Fonts: Montserrat (headings), Poppins (body)
   Mobile-first responsive design
   ===================================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #0d47a1;
  --primary-dark: #093170;
  --primary-light: #1976d2;
  --accent: #00acc1;
  --bg-white: #ffffff;
  --bg-light: #f5f7fa;
  --bg-blue-light: #e3f2fd;
  --text-dark: #1a1a2e;
  --text-body: #37474f;
  --text-muted: #607d8b;
  --border: #e0e6ed;
  --shadow-sm: 0 1px 3px rgba(13,71,161,0.08);
  --shadow-md: 0 4px 12px rgba(13,71,161,0.12);
  --shadow-lg: 0 8px 24px rgba(13,71,161,0.15);
  --radius: 2px;
  --transition: all 0.25s ease;
  --container-max: 1200px;
}

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

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ---- UTILITIES ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4rem 0;
}

.bg-light {
  background: var(--bg-light);
}

.bg-blue-light {
  background: var(--bg-blue-light);
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: #00838f;
  border-color: #00838f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* ---- HEADER ---- */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}

.logo i {
  color: var(--accent);
  font-size: 1.75rem;
}

.logo span {
  color: var(--text-dark);
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.header-phone i {
  color: var(--accent);
}

/* ---- NAVIGATION ---- */
.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-body);
  padding: 0.5rem 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.25s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.875rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
  background: var(--bg-blue-light);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.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");
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 700px;
}

.hero .subheadline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
}

/* ---- CARDS ---- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- GRID SYSTEM ---- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

/* ---- SPECIALS / OFFERS ---- */
.offer-card {
  background: var(--bg-white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.offer-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1rem;
}

.offer-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin: 0.75rem 0;
}

.offer-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.offer-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.offer-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.expiration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.expiration i {
  color: #e53935;
}

/* ---- PRICING TABLE ---- */
.pricing-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition);
}

.pricing-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.pricing-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.pricing-item h3 {
  font-size: 1.1rem;
}

.pricing-item .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  white-space: nowrap;
}

.pricing-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- FORMS ---- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #e53935;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(25,118,210,0.15);
}

.form-control::placeholder {
  color: #90a4ae;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23607d8b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

/* ---- VIDEO SECTION ---- */
.video-wrapper {
  position: relative;
  background: var(--text-dark);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-wrapper video,
.video-wrapper .video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: var(--transition);
  cursor: pointer;
}

.video-overlay:hover {
  background: rgba(0,0,0,0.15);
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.play-button:hover {
  transform: scale(1.1);
  background: #fff;
}

.play-button i {
  font-size: 1.75rem;
  color: var(--primary);
  margin-left: 4px;
}

/* ---- TESTIMONIALS ---- */
.testimonial {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-weight: 400;
  color: var(--text-muted);
}

/* ---- STATS ---- */
.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- MAP ---- */
.map-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-light);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.city-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.city-list li i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* ---- BLOG ---- */
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card-image {
  background: var(--bg-light);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.blog-card-image i {
  font-size: 3rem;
  opacity: 0.5;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- ADSENSE PLACEHOLDER ---- */
.google-ad-placeholder {
  background: var(--bg-light);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 2rem 0;
}

.google-ad-placeholder::before {
  content: 'Advertisement';
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 0.375rem 0;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-phone i {
  color: var(--accent);
}

.footer-hours {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---- MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--bg-white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  font-size: 1.25rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-body {
  padding: 1.5rem;
}

/* ---- PAGE HEADER (for inner pages) ---- */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span {
  color: var(--text-muted);
  margin: 0 0.5rem;
}

.breadcrumbs strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ---- TERMS NOTE ---- */
.terms-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ---- ALERT ---- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.alert-info {
  background: var(--bg-blue-light);
  border: 1px solid #90caf9;
  color: var(--primary-dark);
}

/* ---- RESPONSIVE (TABLET 768px+) ---- */
@media (min-width: 768px) {
  .hero {
    padding: 5rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subheadline {
    font-size: 1.2rem;
  }
  
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .city-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .header-phone {
    display: flex;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
}

/* ---- RESPONSIVE (DESKTOP 1024px+) ---- */
@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .mobile-nav {
    display: none !important;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero {
    padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .city-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---- ACCESSIBILITY ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

/* ---- PRINT ---- */
@media print {
  .site-header,
  .site-footer,
  .google-ad-placeholder,
  .video-section,
  .hero-actions,
  .mobile-nav,
  .menu-toggle {
    display: none !important;
  }
  
  body {
    color: #000;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
}

/* ---- THANK YOU MESSAGE (Form Success) ---- */
.thankyou-message {
    text-align: center;
    padding: 2rem;
    background: #e8f5e9;
    border-radius: 8px;
    color: #2e7d32;
}

.thankyou-message i {
    font-size: 48px;
    margin-bottom: 1rem;
}

.thankyou-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2e7d32;
}

.thankyou-message p {
    margin: 0;
    font-size: 1rem;
}

.logo-img {
    height: 30px;
    width: auto;
    max-height: 30px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.footer-logo-img {
    height: 24px;
    width: auto;
    max-height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}