/* ============================================================
   ISAC PEST CONTROL — PREMIUM STATIC SITE STYLESHEET
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --white: #FFFFFF;
  --warm-white: #FAF8F5;
  --sand: #E8DFD3;
  --sand-light: #F3EDE5;
  --eucalyptus: #5B8C6F;
  --eucalyptus-light: #7AA88D;
  --leaf: #3D6B4F;
  --navy: #1B2A4A;
  --navy-light: #2A3D66;
  --text-dark: #2C2C2C;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --border: #E2DCD4;
  --shadow-sm: 0 2px 8px rgba(27,42,74,.06);
  --shadow-md: 0 8px 30px rgba(27,42,74,.08);
  --shadow-lg: 0 20px 60px rgba(27,42,74,.10);
  --shadow-xl: 0 30px 80px rgba(27,42,74,.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-medium); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--eucalyptus);
  margin-bottom: .75rem;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 1rem 2.2rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--eucalyptus);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(91,140,111,.3);
}
.btn-primary:hover {
  background: var(--leaf);
  box-shadow: 0 6px 24px rgba(91,140,111,.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(27,42,74,.25);
}
.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--eucalyptus);
  color: var(--eucalyptus);
  background: transparent;
}
.btn-outline:hover {
  background: var(--eucalyptus);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
}

.btn svg, .btn i { flex-shrink: 0; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,220,212,.5);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eucalyptus);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

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

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--eucalyptus);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}

.header-phone svg { width: 16px; height: 16px; color: var(--eucalyptus); }

.header-cta {
  padding: .7rem 1.5rem;
  font-size: .82rem;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250,248,245,.95) 0%,
    rgba(250,248,245,.85) 40%,
    rgba(250,248,245,.5) 70%,
    rgba(250,248,245,.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 4rem 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(91,140,111,.1);
  border: 1px solid rgba(91,140,111,.2);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eucalyptus);
  margin-bottom: 1.5rem;
}

.hero-label svg { width: 14px; height: 14px; }

.hero h1 {
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--eucalyptus);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 2.2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-medium);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--eucalyptus);
  flex-shrink: 0;
}

/* ---------- Section Spacing ---------- */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--white);
}

.section-sand {
  background: var(--sand-light);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2,
.section-navy h3,
.section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.7); }
.section-navy .section-label { color: var(--eucalyptus-light); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 { margin-bottom: .75rem; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.services-grid .service-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--eucalyptus);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(91,140,111,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--eucalyptus);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .9rem;
  line-height: 1.65;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--eucalyptus), var(--sand));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--eucalyptus);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.3rem;
  box-shadow: 0 6px 20px rgba(91,140,111,.25);
}

.step-card h4 { margin-bottom: .5rem; }
.step-card p { font-size: .88rem; }

/* ---------- Packages / Pricing ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.package-card.featured {
  border-color: var(--eucalyptus);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--eucalyptus);
  color: var(--white);
  text-align: center;
  padding: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.package-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.package-header {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
}

.package-card.featured .package-header { padding-top: 3.5rem; }

.package-header h3 { margin-bottom: .4rem; }

.package-header .package-desc {
  font-size: .85rem;
  color: var(--text-light);
}

.package-price {
  text-align: center;
  padding: 0 2rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}
.package-price span {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-light);
}

.package-features {
  padding: 0 2rem 2rem;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .55rem 0;
  font-size: .88rem;
  color: var(--text-medium);
  border-top: 1px solid var(--sand-light);
}

.package-features li svg {
  width: 18px;
  height: 18px;
  color: var(--eucalyptus);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-footer {
  padding: 0 2rem 2.2rem;
  text-align: center;
}

.package-footer .btn { width: 100%; justify-content: center; }

/* ---------- Image Feature Split ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split-content { max-width: 520px; }
.split-content h2 { margin-bottom: 1rem; }
.split-content p { margin-bottom: 1.5rem; font-size: 1.02rem; }

.check-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 0;
  font-size: .92rem;
  color: var(--text-medium);
}
.check-list li svg {
  width: 20px;
  height: 20px;
  color: var(--eucalyptus);
  flex-shrink: 0;
}

/* ---------- Service Area ---------- */
.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.area-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.area-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.area-tag {
  padding: .45rem 1rem;
  background: rgba(91,140,111,.08);
  color: var(--eucalyptus);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
}

/* ---------- Guarantees ---------- */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.guarantee-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.guarantee-icon {
  width: 64px;
  height: 64px;
  background: rgba(122,168,141,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.guarantee-icon svg {
  width: 28px;
  height: 28px;
  color: var(--eucalyptus-light);
}

.guarantee-card h4 {
  color: var(--white);
  margin-bottom: .4rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,.88), rgba(61,107,79,.82));
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Quote Form ---------- */
.quote-form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
}

.quote-form-section h3 { text-align: center; margin-bottom: .5rem; }
.quote-form-section > p { text-align: center; margin-bottom: 2rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--eucalyptus);
  box-shadow: 0 0 0 3px rgba(91,140,111,.12);
}

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

.form-group .form-hint {
  font-size: .72rem;
  color: var(--text-light);
  margin-top: .15rem;
}

.form-submit {
  margin-top: 1.2rem;
  text-align: center;
}

.form-submit .btn { width: 100%; justify-content: center; padding: 1.1rem 2rem; font-size: 1rem; }

.form-privacy {
  text-align: center;
  margin-top: .8rem;
  font-size: .72rem;
  color: var(--text-light);
}

/* ---------- Contact Info Cards ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

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

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(91,140,111,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--eucalyptus);
}

.contact-card h4 { margin-bottom: .4rem; font-size: 1rem; }
.contact-card p { font-size: .88rem; }
.contact-card a { color: var(--eucalyptus); font-weight: 600; }

/* ---------- Hours Table ---------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.hours-table tr { border-bottom: 1px solid var(--sand-light); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: .7rem .5rem;
  font-size: .9rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-medium);
}

.hours-table tr.today { background: rgba(91,140,111,.05); border-radius: var(--radius-sm); }
.hours-table tr.today td:last-child { color: var(--eucalyptus); font-weight: 600; }

/* ---------- Services Detail Page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

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

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-detail-content h3 { margin-bottom: .6rem; }
.service-detail-content p { margin-bottom: 1.2rem; }

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,248,245,.92), rgba(250,248,245,.97));
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 { margin-bottom: .6rem; }
.page-header p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}

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

.footer-about .logo-text { color: var(--white); }
.footer-about .logo-text span { color: var(--eucalyptus-light); }

.footer-about p {
  margin-top: 1rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col li { margin-bottom: .6rem; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--eucalyptus-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .3s ease;
}
.footer-bottom a:hover { color: var(--eucalyptus-light); }

/* ---------- Privacy Policy Page ---------- */
.privacy-content { max-width: 780px; margin: 0 auto; }
.privacy-content h2 { margin-top: 2.5rem; margin-bottom: .8rem; font-size: 1.5rem; }
.privacy-content h3 { margin-top: 1.5rem; margin-bottom: .5rem; font-size: 1.15rem; color: var(--text-dark); }
.privacy-content p { margin-bottom: 1rem; line-height: 1.8; }
.privacy-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.privacy-content li { margin-bottom: .4rem; line-height: 1.7; }
.privacy-content a { color: var(--eucalyptus); text-decoration: underline; }
.privacy-content a:hover { color: var(--leaf); }
.privacy-updated { font-size: .9rem; color: var(--text-light); margin-bottom: 2rem; }
.privacy-contact { list-style: none; padding-left: 0; }
.privacy-contact li { margin-bottom: .3rem; }

/* ---------- Sticky Mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: .8rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  border-top: 1px solid var(--border);
}

.mobile-cta-inner {
  display: flex;
  gap: .6rem;
}

.mobile-cta .btn {
  flex: 1;
  justify-content: center;
  padding: .85rem 1rem;
  font-size: .82rem;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .35s; }

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250,248,245,.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--eucalyptus); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close svg { width: 28px; height: 28px; color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid .package-card.featured { transform: none; }
  .packages-grid .package-card.featured:hover { transform: translateY(-6px); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .steps-grid::before { display: none; }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .header-contact { display: none; }
  .menu-toggle { display: flex; }
  .mobile-cta { display: block; }

  .hero { min-height: auto; padding: 7rem 0 5rem; }
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(250,248,245,.96) 0%,
      rgba(250,248,245,.92) 60%,
      rgba(250,248,245,.7) 100%
    );
  }
  .hero-content { max-width: 100%; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 1rem; }

  .section { padding: 4rem 0; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child:nth-child(3n+1) { grid-column: auto; }
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .area-content { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-form-section { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  body { padding-bottom: 70px; }
  .page-header { padding: 8rem 0 3rem; }

  .cta-banner { padding: 3.5rem 0; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { width: 92%; }
  h1 { font-size: 2rem; }
  .hero-label { font-size: .68rem; }
  .service-card { padding: 1.6rem; }
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--eucalyptus);
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-filter-tabs {
  display: flex;
  gap: .5rem;
}

.gallery-filter-btn {
  padding: .55rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.gallery-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.gallery-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.gallery-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  background: var(--sand);
}
.gallery-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-card:hover .gallery-thumb img {
  transform: scale(1.05);
}

.gallery-thumb-video .gallery-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s ease;
}
.gallery-card:hover .gallery-play-icon {
  background: rgba(0,0,0,.8);
}
.gallery-play-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
  margin-left: 3px;
}

.gallery-card-caption {
  padding: .8rem 1rem;
  font-size: .85rem;
  color: var(--text-medium);
  line-height: 1.4;
}

.gallery-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.gallery-empty-icon svg {
  width: 64px;
  height: 64px;
  color: var(--border);
  margin-bottom: 1rem;
}
.gallery-empty h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: .5rem;
}
.gallery-empty p {
  color: var(--text-light);
}

/* ---------- Gallery Lightbox ---------- */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.88);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.lightbox-close svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox-nav:hover {
  background: rgba(255,255,255,.25);
}
.lightbox-nav svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-content {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-body {
  max-width: 90vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-body img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-body iframe {
  width: 80vw;
  height: 45vw;
  max-width: 960px;
  max-height: 540px;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  text-align: center;
  margin-top: 1rem;
  max-width: 600px;
}

/* ---------- Gallery Preview (homepage) ---------- */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-preview-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  padding-bottom: 75%;
  background: var(--sand);
}
.gallery-preview-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-preview-card:hover img {
  transform: scale(1.05);
}

/* ---------- Gallery responsive ---------- */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .gallery-filters { flex-direction: column; align-items: stretch; }
  .gallery-filter-tabs { justify-content: center; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-body iframe { width: 92vw; height: 52vw; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
