/* Shires Plumbing - Styles */
/* Fonts: Syne (display) + Lato (body) */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

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

:root {
  --primary: #1c4063;
  --primary-dark: #122b45;
  --secondary: #f27f1b;
  --secondary-dark: #d96a08;
  --bg: #f9f5ef;
  --bg-alt: #ffffff;
  --dark: #111827;
  --mid: #6b7280;
  --border: #e5ddd4;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(28,64,99,.12);
  --shadow-lg: 0 12px 48px rgba(28,64,99,.18);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  color: var(--primary);
}

a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--secondary); color: #fff;
  padding: .5rem 1rem; font-weight: 700; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem;
  color: #fff; line-height: 1.1;
}
.nav-logo-text span { display: block; font-size: .6rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; opacity: .75; }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.85); font-weight: 700; letter-spacing: .5px;
  font-size: .875rem; text-transform: uppercase; text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }
.nav-cta {
  background: var(--secondary); color: #fff !important;
  padding: .5rem 1.25rem; border-radius: var(--radius);
  font-weight: 700; font-size: .875rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--secondary-dark) !important; color: #fff !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: all var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://irp.cdn-website.com/061eab8b/dms3rep/multi/image+%281%29.jpeg');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,64,99,.90) 0%, rgba(28,64,99,.70) 60%, rgba(242,127,27,.20) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: var(--secondary); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: .375rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff; line-height: 1.1;
  margin-bottom: 1.25rem; max-width: 800px;
}
.hero-content h1 em { color: var(--secondary); font-style: normal; }
.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.2rem); opacity: .9;
  max-width: 580px; margin-bottom: 2rem; line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all var(--transition); cursor: pointer; border: none; font-family: 'Lato', sans-serif;
}
.btn-primary { background: var(--secondary); color: #fff; }
.btn-primary:hover { background: var(--secondary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(242,127,27,.4); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--secondary); }
.btn-light:hover { background: var(--bg); color: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.2); }

.hero-trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,.9); font-size: .875rem;
  display: flex; align-items: center; gap: .5rem;
}
.trust-item svg { color: var(--secondary); flex-shrink: 0; }

/* ===== STATS BAND ===== */
.stats-band { background: var(--primary); padding: 3.5rem 1.5rem; }
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 3.5rem;
}
.stat-item { text-align: center; color: #fff; }
.stat-item .counter {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--secondary); display: block; line-height: 1;
}
.stat-item .stat-label {
  font-size: .7rem; letter-spacing: 2.5px; text-transform: uppercase; opacity: .7; margin-top: .5rem;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--secondary);
  margin-bottom: .75rem;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--mid); max-width: 600px; margin-bottom: 3rem; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; margin-bottom: 2rem;
}
.service-card {
  background: var(--bg-alt); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border); transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--secondary); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: rgba(28,64,99,.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--primary);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.service-card p { color: var(--mid); font-size: .9rem; line-height: 1.65; }

.services-extra {
  background: var(--bg-alt); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border); margin-top: 1rem;
}
.services-extra h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; }
.services-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.services-tags li {
  background: var(--bg); border: 1px solid var(--border);
  padding: .375rem .875rem; border-radius: 100px;
  font-size: .85rem; color: var(--dark);
}

/* ===== ABOUT ===== */
.about-section { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; padding-bottom: 2rem; }
.about-img-main { border-radius: var(--radius-lg); width: 100%; height: 440px; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: 0; right: -1.5rem;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--radius-lg); border: 5px solid var(--bg-alt);
  box-shadow: var(--shadow-lg);
}
.about-text .section-subtitle { max-width: none; margin-bottom: 1.5rem; }
.about-pull {
  border-left: 4px solid var(--secondary); padding-left: 1.25rem;
  margin: 1.5rem 0; font-size: 1.1rem; font-weight: 700; color: var(--primary); line-height: 1.5;
  font-family: 'Syne', sans-serif;
}
.team-row { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.team-card {
  display: flex; align-items: center; gap: .875rem;
  background: var(--bg); padding: .875rem 1.25rem; border-radius: var(--radius);
  border: 1px solid var(--border); flex: 1; min-width: 160px;
}
.team-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.team-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .9rem; }
.team-role { font-size: .775rem; color: var(--mid); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-alt); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: .5rem; right: 1.5rem;
  font-family: 'Syne', sans-serif; font-size: 6rem; color: var(--secondary);
  opacity: .12; line-height: 1;
}
.stars { color: var(--secondary); margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .975rem; line-height: 1.75; color: var(--dark); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-cite { font-style: normal; font-weight: 700; font-size: .85rem; display: flex; align-items: center; gap: .5rem; color: var(--primary); }
.testimonial-cite::before { content: ''; display: block; width: 20px; height: 2px; background: var(--secondary); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--primary); padding: 5rem 1.5rem; }
.gallery-section .section-label { color: rgba(242,127,27,.9); }
.gallery-section .section-title { color: #fff; }
.gallery-section .section-subtitle { color: rgba(255,255,255,.65); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
}
.gallery-img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius); cursor: pointer;
  transition: transform .3s, brightness .3s;
}
.gallery-img:hover { transform: scale(1.03); filter: brightness(1.05); }

/* ===== BEFORE/AFTER ===== */
.ba-section { background: var(--bg-alt); }
.ba-wrap { max-width: 800px; margin: 0 auto; }
.ba-label {
  text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 1rem;
}
.ba-slider {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 16/9; user-select: none; box-shadow: var(--shadow-lg);
}
.ba-slider img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before {
  position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden;
}
.ba-before img { width: var(--ba-full-w, 100%); height: 100%; object-fit: cover; display: block; }
.ba-handle {
  position: absolute; top: 0; left: 50%; width: 4px; height: 100%;
  background: white; cursor: ew-resize; transform: translateX(-50%); z-index: 2;
  box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.ba-handle-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.25); font-size: 16px; color: var(--primary);
}
.ba-tags { display: flex; justify-content: space-between; margin-top: .75rem; font-size: .8rem; font-weight: 700; color: var(--mid); }

/* ===== MAP ===== */
.map-section { background: var(--bg); }
.map-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: .375rem; margin-top: 1rem; }
.areas-list li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; padding: .25rem 0; }
.areas-list li::before { content: ''; width: 6px; height: 6px; background: var(--secondary); border-radius: 50%; flex-shrink: 0; }
#service-area-map { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  padding: 4.5rem 1.5rem; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 1.5rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(242,127,27,.15) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: .5rem;
  margin-bottom: 1.25rem; font-size: .875rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: var(--secondary); font-weight: 700; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ===== ABOUT PAGE ===== */
.about-full { background: var(--bg-alt); }
.about-full-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: start; }
.about-story h2 { font-size: 1.6rem; margin-bottom: 1.25rem; }
.about-story p { color: var(--dark); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1rem; }
.about-sidebar-img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; margin-bottom: 1.5rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-card {
  background: var(--bg); padding: 1.25rem; border-radius: var(--radius);
  border-left: 3px solid var(--secondary);
}
.value-card h4 { font-size: .875rem; margin-bottom: .375rem; color: var(--primary); }
.value-card p { font-size: .825rem; color: var(--mid); }

/* ===== SERVICES PAGE ===== */
.services-detailed { background: var(--bg-alt); }
.service-detail-card {
  display: grid; grid-template-columns: 72px 1fr; gap: 1.5rem; align-items: start;
  background: var(--bg); padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border); margin-bottom: 1.25rem; transition: all var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow); border-color: rgba(28,64,99,.15); }
.service-detail-icon {
  width: 64px; height: 64px; background: var(--primary); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.service-detail-content h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.service-detail-content p { color: var(--mid); line-height: 1.75; font-size: .95rem; }

.additional-services { background: var(--bg); }
.additional-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.add-svc {
  background: var(--bg-alt); padding: 1rem 1.25rem; border-radius: var(--radius);
  border: 1px solid var(--border); display: flex; align-items: center; gap: .75rem;
  font-weight: 700; font-size: .9rem; color: var(--primary); transition: all var(--transition);
}
.add-svc:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.add-svc::before { content: ''; width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--primary); font-family: 'Syne', sans-serif; padding: 1.25rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; color: var(--secondary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body { padding: 0 0 1.25rem; line-height: 1.8; color: var(--mid); font-size: .95rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-form-wrap {
  background: var(--bg); padding: 2.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.contact-form-wrap > p { color: var(--mid); margin-bottom: 2rem; font-size: .9rem; }

.form-group { margin-bottom: 1.125rem; }
.form-group label { display: block; font-weight: 700; font-size: .825rem; margin-bottom: .375rem; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'Lato', sans-serif; font-size: .95rem;
  background: var(--bg-alt); color: var(--dark); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(28,64,99,.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
  background: var(--secondary); color: #fff; width: 100%; padding: 1rem; font-size: 1rem;
  border-radius: var(--radius); font-weight: 700; cursor: pointer; border: none;
  font-family: 'Syne', sans-serif; transition: all var(--transition); margin-top: .5rem;
}
.form-submit:hover { background: var(--secondary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(242,127,27,.35); }
.form-success {
  display: none; background: #d1fae5; border: 1.5px solid #10b981;
  border-radius: var(--radius); padding: 1rem 1.25rem; color: #065f46; font-weight: 600; margin-top: 1rem;
  align-items: center; gap: .75rem;
}
.form-success.visible { display: flex; }

.contact-details h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.125rem; background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: .875rem;
}
.contact-detail-icon {
  width: 42px; height: 42px; background: var(--primary); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.detail-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--mid); font-weight: 700; }
.detail-value { font-weight: 700; color: var(--dark); font-size: .925rem; margin-top: .125rem; }
.detail-value a { color: var(--primary); }
.detail-value a:hover { color: var(--secondary); }

.hours-box { background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.25rem; margin-top: 1.5rem; }
.hours-box h4 { font-size: .9rem; margin-bottom: 1rem; color: var(--primary); }
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; padding: .375rem 0; border-bottom: 1px dashed var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row.open .day { font-weight: 700; color: var(--primary); }
.hours-row.closed { color: var(--mid); }

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark); padding: 3.5rem 1.5rem 1.5rem;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: .875rem; line-height: 1.75; margin: 1rem 0 1.25rem; max-width: 300px; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  display: inline-flex; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all var(--transition); text-decoration: none;
}
.footer-social a:hover { background: var(--secondary); color: #fff; }
.footer-col h4 {
  font-family: 'Syne', sans-serif; color: #fff; font-size: .8rem;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: .5rem; }
.footer-col li a { color: rgba(255,255,255,.65); font-size: .875rem; transition: color var(--transition); text-decoration: none; }
.footer-col li a:hover { color: var(--secondary); }
.footer-contact-item { display: flex; gap: .625rem; align-items: flex-start; margin-bottom: .75rem; font-size: .85rem; line-height: 1.5; }
.footer-contact-item svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .775rem; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--secondary); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--secondary); color: white;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,.3); color: #fff; }
@media (min-width: 768px) { .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; } }

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center; cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; line-height: 1; opacity: .8; transition: opacity var(--transition); }
.lightbox-close:hover { opacity: 1; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary-dark); padding: 1.5rem; gap: 1.25rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { min-height: 75vh; }
  .about-grid, .about-full-grid, .contact-grid, .map-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-accent { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { gap: 2rem; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-icon { display: none; }
  .values-grid, .areas-list { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; align-items: center; }
}
