/* ================================================
   CUSTOM PROPERTIES
================================================= */
:root {
  --gold: #E0A82E;
  --gold-dark: #c8941e;
  --gold-light: #f0c050;
  --black: #0D0D0D;
  --black-mid: #1a1a1a;
  --black-soft: #222222;
  --white: #ffffff;
  --grey: #F4F4F4;
  --grey-mid: #e0e0e0;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: rgba(255, 255, 255, 0.75);
  --wa-green: #25D366;
  --wa-dark: #1da851;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --transition: 0.3s ease;

  --max-width: 1200px;
  --section-pad: clamp(64px, 8vw, 120px);
  --container-pad: clamp(20px, 5vw, 48px);
  --mobile-bar-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

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

/* ================================================
   TYPOGRAPHY
================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

p { max-width: 65ch; }

/* ================================================
   UTILITIES
================================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-pad) 0; }
.section-light { background: var(--grey); color: var(--text-dark); }
.section-dark { background: var(--black); color: var(--white); }
.section-process { background: var(--white); color: var(--text-dark); }
.section-contact { background: var(--black-mid); color: var(--white); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-header h2 { margin-top: 8px; }

.section-sub {
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.section-dark .section-sub,
.section-contact .section-sub { color: var(--text-light); }

.section-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ================================================
   BUTTONS
================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

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

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 168, 46, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* WhatsApp buttons */
.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-whatsapp-hero svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-whatsapp-hero:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-top: 28px;
}

.btn-whatsapp-secondary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-whatsapp-secondary:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--wa-green);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}

.btn-whatsapp-nav:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}

.wa-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ================================================
   HEADER / NAV
================================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: var(--black);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px var(--container-pad);
  gap: 24px;
}

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

.nav-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color var(--transition);
}

.nav-link:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/house.jpeg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.50) 0%,
    rgba(13, 13, 13, 0.68) 55%,
    rgba(13, 13, 13, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px var(--container-pad) 80px;
  max-width: 960px;
  animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  max-width: none;
}

.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin: 0 auto 40px;
  max-width: 52ch;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-trust svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ================================================
   ABOUT
================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-text .section-label { display: block; }
.about-text h2 { margin: 8px 0 24px; }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 52ch;
}

.about-text p:last-of-type { margin-bottom: 0; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ================================================
   SERVICES
================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(224, 168, 46, 0.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { color: var(--white); margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; max-width: 100%; }

/* ================================================
   HOW WE WORK — PROCESS
================================================= */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 clamp(12px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.process-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.process-icon {
  width: 56px;
  height: 56px;
  background: var(--grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  flex-shrink: 0;
}

.process-icon svg { width: 26px; height: 26px; }

.process-step h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 22ch;
  margin: 0 auto;
}

.process-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 50%, var(--grey-mid) 50%);
  background-size: 10px 2px;
  margin-top: 38px;
  align-self: flex-start;
  opacity: 0.5;
}

/* ================================================
   GALLERY
================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
  padding: 0;
  background: var(--black);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); }

.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ================================================
   LIGHTBOX
================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-content img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  text-align: center;
  max-width: none;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-arrow:hover { background: var(--gold); color: var(--black); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ================================================
   TESTIMONIALS
================================================= */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-text {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.testimonials-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-track {
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  animation: fadeIn 0.4s ease forwards;
}

.testimonial-card.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: 14px;
  left: 28px;
  pointer-events: none;
}

.testimonial-card blockquote { padding: 0; border: none; }

.testimonial-card blockquote p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  max-width: 100%;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.testimonial-author-info span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.carousel-dots { display: flex; gap: 8px; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ================================================
   CONTACT
================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info .section-label { display: block; }
.contact-info h2 { color: var(--white); margin: 8px 0 20px; }

.contact-info > p {
  color: var(--text-light);
  max-width: 42ch;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.contact-icon svg { width: 100%; height: 100%; }

.contact-details a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: color var(--transition);
}

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

.contact-area {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: none;
}

.contact-area svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Contact action cards */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.cta-card-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
}

.cta-card-whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: var(--wa-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.15);
}

.cta-card-call {
  background: rgba(224, 168, 46, 0.08);
  border-color: rgba(224, 168, 46, 0.2);
}

.cta-card-call:hover {
  background: rgba(224, 168, 46, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224, 168, 46, 0.1);
}

.cta-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card-whatsapp .cta-card-icon {
  background: var(--wa-green);
  color: var(--white);
}

.cta-card-call .cta-card-icon {
  background: var(--gold);
  color: var(--black);
}

.cta-card-icon svg { width: 24px; height: 24px; }

.cta-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cta-card-text strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.cta-card-text span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.cta-card-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
}

.cta-card:hover .cta-card-arrow {
  color: var(--white);
  transform: translateX(4px);
}

.contact-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
}

.contact-or::before,
.contact-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-or span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  max-width: none;
  margin-top: 4px;
}

.contact-trust-note svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ================================================
   FOOTER
================================================= */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: none;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer-social-link svg { width: 18px; height: 18px; }

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

.footer-social-wa:hover {
  background: var(--wa-green) !important;
  color: var(--white) !important;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-contact li { font-size: 0.9rem; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ================================================
   FLOATING WHATSAPP BUTTON
================================================= */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 13px 22px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.floating-wa.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.floating-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* ================================================
   MOBILE STICKY CTA BAR
================================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--mobile-bar-height);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-cta-call,
.mobile-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  height: 100%;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: filter var(--transition);
}

.mobile-cta-call {
  background: var(--gold);
  color: var(--black);
}

.mobile-cta-wa {
  background: var(--wa-green);
  color: var(--white);
}

.mobile-cta-call:hover { filter: brightness(1.08); }
.mobile-cta-wa:hover { filter: brightness(1.08); }

.mobile-cta-call svg,
.mobile-cta-wa svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ================================================
   AREAS SERVED
================================================= */
.areas-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

/* Map column */
.areas-map-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-container {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.ireland-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* County paths */
.county-path {
  transition: fill 0.22s ease, filter 0.22s ease;
}

.county-served {
  fill: rgba(224, 168, 46, 0.22);
  stroke: rgba(224, 168, 46, 0.7);
  stroke-width: 1.5;
  cursor: pointer;
}

.county-dublin {
  fill: rgba(224, 168, 46, 0.38);
  stroke: var(--gold);
  stroke-width: 2;
}

.county-served:hover,
.county-served:focus {
  fill: rgba(224, 168, 46, 0.52);
  filter: drop-shadow(0 0 6px rgba(224, 168, 46, 0.4));
}

.county-dublin:hover,
.county-dublin:focus {
  fill: rgba(224, 168, 46, 0.68);
}

.county-other {
  fill: rgba(160, 160, 160, 0.22);
  stroke: rgba(130, 130, 130, 0.5);
  stroke-width: 1;
  cursor: default;
}

.county-other:hover {
  fill: rgba(160, 160, 160, 0.35);
}

/* County labels inside SVG */
.county-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-anchor: middle;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.county-label-served {
  fill: rgba(13, 13, 13, 0.7);
}

.county-label-other {
  fill: rgba(80, 80, 80, 0.55);
}

.sea-label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  fill: rgba(80, 140, 185, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-anchor: middle;
  pointer-events: none;
}

/* Dublin pin pulse animation */
.dublin-pin {
  animation: pinPulse 2.8s ease-in-out infinite;
  transform-origin: 358px 298px;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.12); opacity: 0.88; }
}

/* Tooltip */
.map-tooltip {
  position: fixed;
  background: var(--black);
  border: 1px solid rgba(224, 168, 46, 0.6);
  border-radius: 10px;
  padding: 10px 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 800;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.tooltip-name {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.tooltip-served {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tooltip-not-served {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.75rem;
  margin-top: 3px;
}

/* Map legend */
.map-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.legend-served::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(224, 168, 46, 0.3);
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.legend-pin::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid white;
  box-shadow: 0 0 0 3px rgba(224,168,46,0.25);
  flex-shrink: 0;
}

.legend-other::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(160, 160, 160, 0.25);
  border: 2px solid rgba(130, 130, 130, 0.5);
  flex-shrink: 0;
}

/* Areas content column */
.areas-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.areas-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.areas-block h3 svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
}

.areas-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.areas-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E0A82E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.county-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.county-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(224, 168, 46, 0.5);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(224, 168, 46, 0.06);
  transition: all var(--transition);
}

.county-tag:hover {
  background: rgba(224, 168, 46, 0.15);
  border-color: var(--gold);
}

/* "Not sure" WhatsApp CTA */
.areas-wa-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: var(--radius-lg);
  color: var(--text-dark);
  transition: all var(--transition);
}

.areas-wa-cta:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: var(--wa-green);
  transform: translateY(-2px);
}

.areas-wa-cta svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: var(--wa-green);
}

.areas-wa-cta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.areas-wa-cta strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.areas-wa-cta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 960px) {
  .areas-wrap {
    grid-template-columns: 1fr;
  }

  .map-container {
    max-width: 400px;
  }

  .areas-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .map-container {
    max-width: 340px;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.process-steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.process-steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.process-steps .reveal:nth-child(4) { transition-delay: 0.3s; }

.gallery-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.25s; }
.gallery-grid .reveal:nth-child(7) { transition-delay: 0.3s; }
.gallery-grid .reveal:nth-child(8) { transition-delay: 0.35s; }
.gallery-grid .reveal:nth-child(9) { transition-delay: 0.4s; }

/* ================================================
   RESPONSIVE — TABLET (≤ 960px)
================================================= */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }

  .process-steps { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .process-connector { display: none; }
  .process-step { flex: 0 0 calc(50% - 16px); max-width: 260px; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .floating-wa { bottom: calc(var(--mobile-bar-height) + 16px); }
}

/* ================================================
   RESPONSIVE — MOBILE (≤ 640px)
================================================= */
@media (max-width: 640px) {
  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 1050;
  }

  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-link { font-size: 1.4rem; }
  .nav-links .btn-whatsapp-nav { font-size: 1rem; padding: 14px 36px; }

  /* Hero */
  .hero { background-attachment: scroll; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
  }

  .hero-trust { gap: 16px; }

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

  /* Process */
  .process-step { flex: 0 0 100%; max-width: 280px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  /* Lightbox */
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.4rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }

  /* Floating WA button — hide on mobile (bar covers it) */
  .floating-wa { display: none; }

  /* Pad sections above mobile bar */
  .footer { padding-bottom: var(--mobile-bar-height); }
}

/* ================================================
   PAGE HERO (sub-pages)
================================================= */
.page-hero {
  background: var(--black);
  padding: clamp(110px, 14vw, 160px) var(--container-pad) clamp(56px, 8vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(224, 168, 46, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .section-label { margin-bottom: 16px; }

.page-hero h1 {
  color: var(--white);
  margin: 8px 0 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin: 0 auto;
  max-width: 52ch;
}

.nav-link.active { color: var(--gold); }

/* ================================================
   CTA BAND (sub-page bottom call-to-action)
================================================= */
.section-cta {
  background: var(--black-mid);
  color: var(--white);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.cta-band-text .section-label { display: block; }

.cta-band-text h2 {
  color: var(--white);
  margin: 8px 0 16px;
}

.cta-band-text p {
  color: var(--text-light);
  max-width: 46ch;
  margin: 0;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
  }
  .cta-band-text p { margin: 0 auto; }
  .cta-band-actions { justify-content: center; }
}

/* ================================================
   TESTIMONIALS — STACKED (dedicated page)
================================================= */
.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-stack .testimonial-card {
  display: flex;
}

/* ================================================
   SERVICE LIST (expanded service cards)
================================================= */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E0A82E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ================================================
   REDUCED MOTION
================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .hero { background-attachment: scroll; }
  .floating-wa { transition: none; }
}
