/* ============================================
   TOM DAY PLUMBING & DRAINS
   ============================================ */

:root {
  --blue-900: #0b1d3a;
  --blue-800: #0f2847;
  --blue-700: #133562;
  --blue-600: #1a4a8a;
  --blue-500: #1e5fac;
  --blue-400: #3178c6;
  --blue-300: #5a9ae0;
  --blue-200: #a8cef0;
  --blue-100: #dceaf8;
  --blue-50: #eef5fc;

  --amber-600: #d4860a;
  --amber-500: #e8a225;
  --amber-400: #f0b84d;
  --amber-300: #f5cc7a;

  --neutral-950: #0a0c10;
  --neutral-900: #111318;
  --neutral-800: #1e2028;
  --neutral-700: #2e3240;
  --neutral-600: #454a5a;
  --neutral-500: #636879;
  --neutral-400: #8b90a0;
  --neutral-300: #b3b7c4;
  --neutral-200: #d5d8e0;
  --neutral-100: #eceef2;
  --neutral-50: #f5f6f8;
  --white: #ffffff;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--neutral-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-500); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-400); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 2px; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; color: var(--neutral-900); line-height: 1.2; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px;
  border-radius: var(--radius); transition: all 0.25s; white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--amber-500); color: var(--neutral-950);
  box-shadow: 0 2px 8px rgba(232,162,37,0.3);
}
.btn-primary:hover { background: var(--amber-400); color: var(--neutral-950); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,162,37,0.35); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-blue { background: var(--blue-600); color: var(--white); }
.btn-blue:hover { background: var(--blue-500); color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--blue-700); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); color: var(--blue-700); }

/* --- Top Bar --- */
.topbar {
  background: var(--blue-900); color: var(--neutral-300); font-size: 13px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; opacity: 0.6; }
.topbar-badge { color: var(--amber-500); font-weight: 700; font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.03em; }
.topbar-social a { color: var(--neutral-400); transition: color 0.2s; }
.topbar-social a:hover { color: var(--white); }
.topbar-social svg { width: 16px; height: 16px; }

/* --- Header --- */
.header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--neutral-100);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; }
.logo img { height: 38px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--font-heading); font-size: 14px; font-weight: 600;
  color: var(--neutral-600); letter-spacing: 0.01em;
  padding: 4px 0; position: relative;
}
.nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--blue-500);
  transition: width 0.25s;
}
.nav a:hover { color: var(--blue-600); }
.nav a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 700; font-size: 16px;
  color: var(--blue-700);
}
.header-phone svg { width: 18px; height: 18px; color: var(--amber-500); }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 10px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--neutral-700); border-radius: 2px; transition: all 0.3s; transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 0; right: -100%; width: 100%; max-width: 360px;
  height: 100vh; background: var(--neutral-900); z-index: 999;
  padding: 80px 32px 40px; transition: right 0.35s ease;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 998; opacity: 0; transition: opacity 0.3s;
}
.mobile-overlay.active { opacity: 1; }
.mobile-nav a { display: block; color: var(--white); font-family: var(--font-heading); font-size: 18px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:hover { color: var(--amber-500); }
.mobile-nav .btn { margin-top: 24px; width: 100%; justify-content: center; }
.mobile-nav-phone { display: flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--amber-500); font-family: var(--font-heading); font-weight: 700; font-size: 20px; border-bottom: none !important; }
.mobile-nav-phone:hover { color: var(--amber-400); }
.mobile-nav-phone svg { flex-shrink: 0; }

/* --- Hero --- */
.hero {
  background: var(--blue-900);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,0.97) 0%, rgba(15,40,71,0.92) 40%, rgba(26,74,138,0.85) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.3;
  filter: grayscale(40%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  padding: 80px 0 90px;
}
.hero-content { color: var(--white); }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--amber-500); margin-bottom: 20px;
}
.hero-label svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem); color: var(--white);
  margin-bottom: 20px; line-height: 1.1;
}
.hero h1 em { font-style: normal; color: var(--amber-400); }
.hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.7); max-width: 500px;
  margin-bottom: 32px; line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: left; }
.hero-stat-number {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hero-stat-number span { color: var(--amber-500); }
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 4px; }

.hero-image { position: relative; }
.hero-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); max-width: 420px; margin-left: auto;
}
.hero-card-title {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--neutral-900); margin-bottom: 16px;
}
.hero-card-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.hero-card-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--neutral-600);
}
.hero-card-item svg { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; }
.hero-card .btn { width: 100%; justify-content: center; }

.hero-card-footer {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--neutral-100);
  font-size: 13px; color: var(--neutral-400);
}
.hero-card-footer svg { width: 16px; height: 16px; color: var(--amber-500); }

/* --- Emergency Strip --- */
.emergency {
  background: var(--amber-500); color: var(--neutral-950); padding: 14px 0;
}
.emergency-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 24px; text-align: center;
}
.emergency-inner svg { width: 22px; height: 22px; flex-shrink: 0; }
.emergency-text { font-family: var(--font-heading); font-weight: 700; font-size: 16px; }
.emergency-phone {
  font-family: var(--font-heading); font-weight: 800; font-size: 20px;
  color: var(--neutral-950); text-decoration: none;
}
.emergency-phone:hover { text-decoration: underline; color: var(--neutral-950); }

/* --- Services --- */
.services { background: var(--neutral-50); }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-label {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-500);
  margin-bottom: 8px; display: block;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 12px; }
.section-desc { font-size: 17px; color: var(--neutral-500); max-width: 600px; line-height: 1.6; }
.section-header.center .section-desc { margin: 0 auto; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--neutral-100);
  transition: all 0.25s;
}
.service-card:hover {
  border-color: var(--blue-200); box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--blue-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card-icon svg { width: 26px; height: 26px; color: var(--blue-600); }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 15px; color: var(--neutral-500); line-height: 1.6; }

/* --- About --- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-photos img {
  border-radius: var(--radius-lg); width: 100%; object-fit: cover;
}
.about-photos img:first-child {
  grid-column: 1 / -1; height: 260px;
}
.about-photos img:not(:first-child) { height: 200px; }
.about-content .section-header { margin-bottom: 24px; }
.about-text { font-size: 17px; color: var(--neutral-600); line-height: 1.7; margin-bottom: 28px; }

.about-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about-check {
  display: flex; align-items: flex-start; gap: 12px;
}
.about-check svg { width: 22px; height: 22px; color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }
.about-check-text { font-size: 15px; }
.about-check-text strong { color: var(--neutral-800); display: block; }
.about-check-text span { color: var(--neutral-500); font-size: 14px; }

/* --- Gallery --- */
.gallery { background: var(--neutral-50); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; cursor: pointer; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-wide { grid-column: span 2; aspect-ratio: 2/1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.9);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 22px; height: 22px; }

/* --- Testimonials --- */
.testimonials { background: var(--white); }
.testimonials-track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 4px 0;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 380px; min-width: 300px;
  background: var(--neutral-50); border: 1px solid var(--neutral-100);
  border-radius: var(--radius-lg); padding: 28px; scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.testimonial-text { flex: 1; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--amber-500); fill: var(--amber-500); }
.testimonial-text { font-size: 15px; color: var(--neutral-600); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-600); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--neutral-800); }
.testimonial-loc { font-size: 13px; color: var(--neutral-400); }

.slider-nav { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.slider-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--neutral-200); display: flex; align-items: center; justify-content: center;
  color: var(--neutral-600); transition: all 0.2s;
}
.slider-nav button:hover { border-color: var(--blue-500); color: var(--blue-500); }
.slider-nav button svg { width: 18px; height: 18px; }

/* --- Areas --- */
.areas { background: var(--neutral-50); }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
}
.area-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--neutral-200);
  border-radius: var(--radius); padding: 12px 16px;
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  color: var(--neutral-700); transition: all 0.2s;
}
.area-tag:hover { border-color: var(--blue-400); color: var(--blue-600); }
.area-tag svg { width: 16px; height: 16px; color: var(--blue-500); flex-shrink: 0; }

/* --- CTA --- */
.cta {
  background: var(--blue-900); position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}
.cta-inner {
  position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto;
}
.cta .section-label { color: var(--amber-500); }
.cta .section-title { color: var(--white); }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta-phone { margin-top: 24px; font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.cta-phone a { color: var(--white); }
.cta-phone a:hover { color: var(--amber-400); }

/* --- Footer --- */
.footer { background: var(--neutral-950); color: var(--neutral-400); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; max-width: 300px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
  color: var(--neutral-500); transition: all 0.2s;
}
.footer-social a:hover { background: var(--blue-600); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }
.footer h4 { font-size: 15px; color: var(--white); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: var(--neutral-400); padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--amber-500); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--neutral-400); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 40px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--neutral-600);
}

/* --- Intro Animation --- */
.intro {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--blue-900);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.intro.done { pointer-events: none; }

/* Water drop falls from top */
.intro-drop {
  position: absolute;
  width: 36px; height: 50px;
  top: -60px; left: 50%; transform: translateX(-50%);
  animation: dropFall 0.7s 0.3s cubic-bezier(0.55, 0, 1, 0.45) forwards;
  z-index: 3;
}
@keyframes dropFall {
  0% { top: -60px; opacity: 1; }
  85% { opacity: 1; }
  100% { top: calc(50% - 25px); opacity: 0; transform: translateX(-50%) scale(0.5); }
}

/* Ripple rings expand from center on impact */
.intro-ripple {
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; border-radius: 50%;
  border: 2px solid rgba(49, 120, 198, 0.6);
  transform: translate(-50%, -50%);
  opacity: 0; z-index: 2;
}
.intro-ripple-1 {
  animation: ripple 1s 0.9s ease-out forwards;
}
.intro-ripple-2 {
  animation: ripple 1s 1.05s ease-out forwards;
}
.intro-ripple-3 {
  animation: ripple 1s 1.2s ease-out forwards;
}
@keyframes ripple {
  0% { width: 0; height: 0; opacity: 0.8; border-width: 2px; }
  100% { width: 500px; height: 500px; opacity: 0; border-width: 1px; }
}

/* Logo appears from center after impact */
.intro-logo-wrap {
  position: relative; z-index: 4;
  text-align: center;
  opacity: 0; transform: scale(0.7);
  animation: logoReveal 0.6s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.intro-logo {
  height: 52px; width: auto; margin: 0 auto 14px;
  filter: brightness(0) invert(1);
}
.intro-tagline {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--amber-500);
  opacity: 0;
  animation: fadeIn 0.4s 1.4s ease forwards;
}
@keyframes logoReveal {
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Curtain wipe - whole intro slides apart */
.intro-curtain {
  display: none;
}

/* When done: the entire intro fades + scales out dramatically */
.intro.done {
  animation: introExit 0.8s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
@keyframes introExit {
  0% { clip-path: circle(100% at 50% 50%); opacity: 1; }
  100% { clip-path: circle(0% at 50% 50%); opacity: 0; }
}

/* Hide intro completely after exit */
.intro.hidden { display: none; }

/* Hero stagger entrance (after intro) */
body.loaded .hero-label { animation: heroIn 0.6s 0.1s ease both; }
body.loaded .hero h1 { animation: heroIn 0.7s 0.2s ease both; }
body.loaded .hero-desc { animation: heroIn 0.7s 0.3s ease both; }
body.loaded .hero-buttons { animation: heroIn 0.7s 0.4s ease both; }
body.loaded .hero-stats { animation: heroIn 0.7s 0.5s ease both; }
body.loaded .hero-card { animation: heroCardIn 0.8s 0.3s ease both; }

.hero-label, .hero h1, .hero-desc, .hero-buttons, .hero-stats {
  opacity: 0;
}
.hero-card { opacity: 0; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroCardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .intro { display: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-label, .hero h1, .hero-desc, .hero-buttons, .hero-stats, .hero-card { opacity: 1; animation: none !important; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 60px 0 70px; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-card { margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { flex: 0 0 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav { display: none; }
  .header-right .btn { display: none; }
  .header-phone { font-size: 14px; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .section { padding: 56px 0; }
  .hero-inner { padding: 48px 0 56px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-number { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 1; aspect-ratio: 1; }
  .testimonial-card { flex: 0 0 calc(100% - 16px); min-width: 260px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .logo img { height: 30px; }
}
