/* ============================================
   Tony's Painting Services – Landing Page CSS
   ============================================ */

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

:root {
  --primary:       #1a6fc4;
  --primary-dark:  #145aa0;
  --primary-light: #3a8fd4;
  --accent:        #f59e0b;
  --accent-dark:   #d97706;
  --dark:          #111827;
  --dark2:         #1f2937;
  --mid:           #374151;
  --muted:         #6b7280;
  --light:         #f3f4f6;
  --white:         #ffffff;
  --border:        #e5e7eb;
  --success:       #10b981;
  --radius:        10px;
  --radius-lg:     16px;
  --shadow:        0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
  --transition:    0.25s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}
.btn i { font-size: 0.9em; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,111,196,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(26,111,196,0.45);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-1px);
}

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

.btn-xl  { padding: 16px 32px; font-size: 1.05rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-sm  { padding: 10px 20px; font-size: 0.88rem; }
.btn-full { width: 100%; justify-content: center; }

.pulse {
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(26,111,196,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(26,111,196,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,111,196,0); }
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--dark);
}
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.8); }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: var(--white); }

.section-tag {
  display: inline-block;
  background: rgba(26,111,196,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ============================================
   STICKY HEADER
   ============================================ */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.header-brand {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.2;
}
.brand-location {
  font-size: 0.78rem;
  color: var(--muted);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(26,111,196,0.3);
}
.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(26,111,196,0.4);
}
.header-cta i { font-size: 1.1rem; }
.cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.cta-text small { font-size: 0.7rem; opacity: 0.85; font-weight: 400; }
.cta-text strong { font-size: 1rem; font-weight: 800; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  background: url('../images/interior-living-room.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 20px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,50,0.82) 0%, rgba(26,111,196,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,158,11,0.9);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-badge i { color: var(--white); font-size: 0.75rem; }
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content h1 .highlight {
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.92;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0.95;
}
.trust-item i { color: var(--accent); }

/* ============================================
   URGENCY BANNER
   ============================================ */
.urgency-banner {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.urgency-banner i { font-size: 1rem; }
.urgency-link {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-left: 8px;
  transition: background var(--transition);
  white-space: nowrap;
}
.urgency-link:hover { background: rgba(255,255,255,0.35); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.trust-card:hover { background: var(--light); }
.trust-card i {
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}
.trust-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-card strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}
.trust-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 88px 0;
  background: var(--light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.service-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }
.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-icon {
  font-size: 1.6rem;
  color: var(--primary);
}
.service-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.service-body > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 4px 0 8px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 500;
}
.service-list li i { color: var(--success); font-size: 0.8rem; flex-shrink: 0; }
.service-body .btn { margin-top: auto; align-self: flex-start; }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 56px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-strip-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 88px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.gallery-cta {
  text-align: center;
}
.gallery-cta p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 88px 0;
  background: var(--light);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text .section-tag { margin-bottom: 12px; }
.why-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}
.why-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26,111,196,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.1rem;
}
.why-point strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}
.why-point p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.why-visual {
  position: relative;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}
.why-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.review-float {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  border-left: 4px solid var(--primary);
}
.review-float .review-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.review-float p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 8px;
}
.review-float strong {
  font-size: 0.8rem;
  color: var(--dark);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--transition), transform var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.review-card.featured {
  background: var(--primary);
  border-color: var(--primary);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card.featured .reviewer-avatar { background: rgba(255,255,255,0.25); }
.review-header strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}
.review-stars { color: var(--accent); font-size: 0.85rem; }
.review-stars.small { font-size: 0.75rem; margin-top: 3px; }
.review-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}
.review-source {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.review-source i { font-size: 0.85rem; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  padding: 88px 0;
  background: var(--white);
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.form-left .section-tag { margin-bottom: 12px; }
.form-left h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--dark);
}
.form-left > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.form-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.form-perks div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mid);
}
.form-perks i { color: var(--success); font-size: 1rem; }
.form-phone-alt p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Form elements */
.estimate-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
}
input.error, select.error, textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
textarea { resize: vertical; min-height: 90px; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }

.form-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-success i {
  font-size: 3.5rem;
  color: var(--success);
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}
.form-success p {
  color: var(--muted);
  margin-bottom: 20px;
}
.hidden { display: none !important; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 16px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--accent); }
.site-footer h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-services li {
  font-size: 0.88rem;
  position: relative;
  padding-left: 14px;
}
.footer-services li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary-light);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer-contact a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-cta-btn { margin-top: 16px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.float-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(26,111,196,0.45);
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float-pulse 2.5s infinite;
}
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(26,111,196,0.45); }
  50%       { box-shadow: 0 8px 32px rgba(26,111,196,0.7); }
}
.float-call-btn:hover { background: var(--primary-dark); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .header-brand .brand-location { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .float-call-btn { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 520px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: auto; }
  .header-cta .cta-text small { display: none; }
  .estimate-form { padding: 24px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
