/* ================================================
   Finnegan & Sons Home Improvement & Handyman
   style.css
   ================================================

   1.  CSS Custom Properties
   2.  Reset & Base
   3.  Typography
   4.  Utility Classes
   5.  Layout
   6.  Navigation
   7.  Hero
   8.  Services
   9.  About / Our Story
   10. Testimonials
   11. Contact
   12. Footer
   13. Animations & Transitions
   14. Media Queries
   ================================================ */


/* ------------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------------ */
:root {
  --navy:        #1B2A4A;
  --slate:       #2E4A7A;
  --slate-light: #3a5a90;
  --gold:        #E8A020;
  --gold-dark:   #C8871A;
  --neutral:     #F5F7FA;
  --white:       #FFFFFF;
  --body:        #333D4B;
  --muted:       #6B7684;
  --error:       #D04040;
  --success:     #2E7D32;

  --font-head:   'Merriweather', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --nav-height:  72px;
  --radius:      8px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.18);
  --transition:  0.22s ease;
}


/* ------------------------------------------------
   2. Reset & Base
   ------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Smooth scroll offset for sticky nav */
section[id] {
  scroll-margin-top: var(--nav-height);
}


/* ------------------------------------------------
   3. Typography
   ------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

.accent { color: var(--gold); }


/* ------------------------------------------------
   4. Utility Classes
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-loading { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: inline-flex; align-items: center; gap: 0.4rem; }


/* ------------------------------------------------
   5. Layout
   ------------------------------------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
  color: var(--white);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

.section-title.left::after {
  margin: 0.6rem 0 0;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}


/* ------------------------------------------------
   6. Navigation
   ------------------------------------------------ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-height);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-nav.scrolled {
  background: rgba(27,42,74,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links .btn-primary {
  margin-left: 0.5rem;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.nav-links .btn-primary::after { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-toggle:hover { background: rgba(255,255,255,0.1); }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ------------------------------------------------
   7. Hero
   ------------------------------------------------ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, #0f1c32 0%, #1B2A4A 40%, #2E4A7A 75%, #1B2A4A 100%);
  overflow: hidden;
}

/* Subtle texture overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 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.02'%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") repeat;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero-overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
  animation: fadeUp 0.7s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s 0.3s ease both;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeUp 0.7s 0.45s ease both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-badge i {
  color: var(--gold);
  font-size: 1.1rem;
}


/* ------------------------------------------------
   8. Services
   ------------------------------------------------ */
.services-section {
  background: var(--neutral);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(232,160,32,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card__icon i {
  font-size: 1.4rem;
  color: var(--gold-dark);
}

.service-card__title {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.service-card__list {
  list-style: none;
}

.service-card__list li {
  font-size: 0.9rem;
  color: var(--body);
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
  border-bottom: 1px solid var(--neutral);
}

.service-card__list li:last-child {
  border-bottom: none;
}

.service-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* "We do everything" banner */
.services-banner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.services-banner i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.services-banner p {
  flex: 1;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-bottom: 0;
  min-width: 220px;
}

.services-banner strong {
  color: var(--gold);
}

.services-banner .btn {
  flex-shrink: 0;
}


/* ------------------------------------------------
   9. About / Our Story
   ------------------------------------------------ */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(232,160,32,0.04) 100%);
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.about-content {
  position: relative;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--body);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--body);
  margin-bottom: 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-item i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Stats block */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.stat-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.stat-card--text .stat-label {
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white);
  font-weight: 600;
}

.stat-card--text i {
  font-size: 2rem;
  color: var(--gold);
}


/* ------------------------------------------------
   10. Testimonials
   ------------------------------------------------ */
.testimonials-section {
  background: var(--navy);
}

.testimonials-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--slate);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  quotes: none;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.testimonial-author strong {
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author span {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}


/* ------------------------------------------------
   11. Contact
   ------------------------------------------------ */
.contact-section {
  background: var(--neutral);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.required { color: var(--gold-dark); }
.optional { color: var(--muted); font-weight: 400; font-size: 0.8em; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--body);
  background: var(--white);
  border: 1.5px solid #D0D6DE;
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7684' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(46,74,122,0.12);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(208,64,64,0.1);
}

.field-error {
  font-size: 0.8rem;
  color: var(--error);
  font-weight: 500;
  min-height: 1rem;
}

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

/* Success message */
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1rem;
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--muted);
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info__block h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-info__line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--body);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.contact-info__line i {
  color: var(--gold-dark);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.contact-info__line em {
  color: var(--muted);
  font-style: italic;
  font-size: 0.85rem;
}

a.contact-info__line {
  transition: color var(--transition);
}

a.contact-info__line:hover {
  color: var(--slate);
}

.contact-info__phone span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-info__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.info-badge i {
  color: var(--gold-dark);
  font-size: 0.85rem;
}


/* ------------------------------------------------
   12. Footer
   ------------------------------------------------ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

.footer-discounts {
  margin-top: 0.75rem;
  color: var(--gold) !important;
  font-size: 0.85rem !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 1.1rem clamp(1rem, 4vw, 2rem);
}

.footer-bottom .container {
  max-width: 1200px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}


/* ------------------------------------------------
   13. Animations & Transitions
   ------------------------------------------------ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-reveal: elements start hidden, JS adds .visible */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings (service cards etc) */
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal:nth-child(6) { transition-delay: 0.35s; }

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-headline,
  .hero-sub,
  .hero-ctas,
  .trust-bar {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}


/* ------------------------------------------------
   14. Media Queries
   ------------------------------------------------ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-stats {
    position: static;
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
  }

  .nav-links a::after { display: none; }

  .nav-links .btn-primary {
    margin: 0.5rem 0 0;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius);
    padding: 0.75rem;
  }

  /* Hero */
  .hero-content {
    padding: 2.5rem 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-bar {
    flex-direction: column;
    gap: 0.85rem;
  }

  /* Services banner */
  .services-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Stats */
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: auto; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-info__badges {
    flex-direction: column;
  }

  .info-badge {
    justify-content: center;
  }
}
