/* =====================================================
   Albee There Heat and Air — Premium HVAC Website
   Color Palette:
   - Matte Black: #111111
   - HVAC Yellow: #FFC107
   - White: #FFFFFF
   - Light Gray: #F5F5F5
   ===================================================== */

:root {
  --black: #111111;
  --black-soft: #1a1a1a;
  --black-light: #2a2a2a;
  --yellow: #FFC107;
  --yellow-dark: #E6AC00;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --gray-medium: #888888;
  --gray-dark: #444444;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black-light);
  transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
}

.header-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
}

.mobile-menu .btn-yellow {
  margin-top: 20px;
  font-size: 1.2rem;
  padding: 20px 40px;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--black);
  padding: 120px 0 140px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* REPLACE WITH: url('../images/technician-hero.jpg') */
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.45) 0%, rgba(17, 17, 17, 0.55) 100%);
}

.hero-bg picture,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.hero-phone {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 24px;
}

.hero-phone a {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.2rem;
}

/* Sections */
.section {
  padding: 90px 0;
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-gray {
  background: var(--gray);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-medium);
  font-size: 1.15rem;
  font-weight: 500;
}

.section-black .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-card {
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 193, 7, 0.3);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

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

.service-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--black-soft);
}

.service-card-image picture,
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-dark);
  margin-bottom: 24px;
  line-height: 1.6;
  flex: 1;
}

.service-card .learn-more {
  color: var(--black);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .learn-more:hover {
  color: var(--yellow-dark);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  background: var(--black-soft);
}

.about-image picture,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}

.image-placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-align: center;
  padding: 20px;
  z-index: 1;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--gray-dark);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-filter {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.gallery-grid {
  column-count: 1;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--black-soft);
  aspect-ratio: auto;
  min-height: 250px;
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.gallery-item-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 6px;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
}

/* Service Areas */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}

.area-check {
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.area-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.area-card:hover .area-check {
  background: var(--yellow);
  color: var(--black);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.review-stars {
  color: var(--yellow);
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.review-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
  line-height: 1.3;
}

.review-text {
  color: var(--gray-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-text::before {
  content: '"';
}

.review-text::after {
  content: '"';
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.review-author {
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 700;
}

.review-location {
  color: var(--gray-dark);
  font-weight: 400;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 50px;
}

/* Google Reviews */
.google-reviews {
  text-align: center;
}

.google-reviews .section-header {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.google-reviews .section-header h2 {
  color: var(--white);
}

.google-reviews .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.google-review-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.25);
  min-width: 280px;
}

.btn-google:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.btn-google-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: var(--transition);
  min-width: 280px;
}

.btn-google-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-google-review {
  margin-top: 18px;
}

.btn-google-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-google-small:hover {
  background: var(--white);
  color: var(--black);
}

/* Recent Projects */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.project-card picture,
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.project-card-content {
  padding: 24px;
}

.project-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--black);
}

.project-card-content p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .google-review-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-social {
  margin-top: 18px;
}

.footer-social .social-link {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.85rem;
  padding: 10px 18px;
}

.footer-social .social-link:hover {
  background: var(--white);
  color: var(--black);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-block-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-block h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-block a,
.contact-block p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.contact-block a:hover {
  color: var(--yellow);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--black);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
}

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

.contact-form .btn-yellow {
  width: 100%;
  font-size: 1.1rem;
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  display: none;
  font-weight: 600;
}

.alert.success {
  background: #D4EDDA;
  color: #155724;
}

.alert.error {
  background: #F8D7DA;
  color: #721C24;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA Section */
.cta-section {
  background: var(--yellow);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--black);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(17, 17, 17, 0.75);
  font-size: 1.2rem;
  margin-bottom: 32px;
  font-weight: 500;
}

.cta-section .btn-dark {
  font-size: 1.1rem;
  padding: 20px 40px;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--yellow);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* Sticky Call Bar */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yellow);
  padding: 14px 20px;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-call a {
  color: var(--black);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Ensure body has padding for sticky bar */
body {
  padding-bottom: 70px;
}

/* Service Areas textured background */
.service-areas-hero .hero-bg {
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #111111 100%);
}

/* Contact logo section */
.contact-logo {
  max-width: 220px;
  margin-bottom: 30px;
}

.contact-logo img {
  width: 100%;
  height: auto;
}

/* Email button */
.btn-email {
  background: var(--white);
  color: var(--black);
}

.btn-email:hover {
  background: var(--gray);
  transform: translateY(-2px);
}

/* CTA buttons group */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Tablet + Desktop */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }

  .mobile-menu-btn,
  .mobile-menu {
    display: none !important;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    column-count: 2;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

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

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

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    column-count: 3;
  }

  .contact-form {
    padding: 50px 40px;
  }
}

@media (min-width: 1280px) {
  .gallery-grid {
    column-count: 4;
  }
}
