/* ==============================================
   PALY PRO — PAINTING & PLASTERING
   styles.css
   Brand colours: #76bc21 (green), #1a1a1a (dark), #ffffff (white)
=============================================== */

/* --- Variables --- */
:root {
  --green:        #76bc21;
  --green-hover:  #619e18;
  --green-light:  rgba(118, 188, 33, 0.1);
  --dark:         #1a1a1a;
  --darker:       #111111;
  --white:        #ffffff;
  --light:        #f6f6f4;
  --border:       #e4e4e0;
  --text:         #2a2a2a;
  --muted:        #777777;

  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container:    1180px;
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   0.28s ease;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.11);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.15);
}

/* --- 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: 16px;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; border: none; cursor: pointer; background: none; }

/* --- Utilities --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.bg-light  { background: var(--light); }
.bg-dark   { background: var(--dark); }
.accent    { color: var(--green); }
.hidden    { display: none !important; }

/* ==============================================
   SECTION HEADER
=============================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header p {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.section-header--light h2  { color: var(--white); }
.section-header--light p   { color: rgba(255,255,255,0.6); }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-header--light .section-tag { background: rgba(118,188,33,0.18); }

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
}

/* ==============================================
   BUTTONS
=============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(118,188,33,0.38);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 16px 30px;
}

/* ==============================================
   HEADER / NAV
=============================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img {
  height: 42px;
  width: auto;
  transition: height var(--transition);
}
#header.scrolled .nav-logo img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}
.btn-nav {
  background: var(--green) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.btn-nav:hover {
  background: var(--green-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(118,188,33,0.42);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==============================================
   HERO
=============================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.52) 55%,
    rgba(26,26,26,0.38) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.badge svg {
  width: 15px;
  height: 15px;
  stroke: var(--green);
  flex-shrink: 0;
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  animation: bounce 2.2s ease infinite;
  z-index: 1;
}
.scroll-down svg { width: 30px; height: 30px; }
.scroll-down:hover { color: rgba(255,255,255,0.9); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ==============================================
   PARTNERS STRIP
=============================================== */
.partners-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.partners-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.partners-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.partners-inner img {
  height: 48px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.partners-inner img:hover { opacity: 1; }

/* ==============================================
   ABOUT
=============================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-images { position: relative; }

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 210px;
  border: 5px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-img-secondary img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.about-content { padding-left: 12px; }

.about-content .section-tag { margin-bottom: 14px; }

.about-content h2 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.about-content .lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.65;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 26px 0 36px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
}
.about-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  flex-shrink: 0;
  background: var(--green-light);
  border-radius: 50%;
  padding: 4px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--green);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--green); }

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
  transition: stroke var(--transition);
}
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ==============================================
   PROCESS
=============================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.process-step {
  padding: 48px 32px;
  background: rgba(255,255,255,0.03);
  position: relative;
  transition: background var(--transition);
}
.process-step:hover { background: rgba(118,188,33,0.07); }
.process-step + .process-step {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.process-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 18px;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  background: var(--border);
  cursor: pointer;
}
.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.18) 48%, transparent 72%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  opacity: 1;
}
.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.45;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Dark-background outline button (used on light sections) */
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: rgba(26,26,26,0.3);
}
.btn-outline-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* ==============================================
   TESTIMONIALS
=============================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(118,188,33,0.35);
  transform: translateY(-3px);
}

.quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5.5rem;
  line-height: 0.6;
  color: var(--green);
  margin-bottom: 22px;
  display: block;
  opacity: 0.55;
}

.testimonial-card blockquote p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stars {
  color: #f5c518;
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.testimonial-author strong {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* Google overall rating badge */
.reviews-overall {
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.gr-score {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.gr-stars {
  color: #f5c518;
  font-size: 1.3rem;
  letter-spacing: 2px;
}
.gr-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}
.gr-label strong { color: rgba(255,255,255,0.8); }

.testimonials-cta {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 48px;
}
.testimonials-cta p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

/* ==============================================
   SERVICE AREAS
=============================================== */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.area-tag {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.area-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
  transform: translateY(-1px);
}

.areas-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}
.areas-note a {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.areas-note a:hover { border-color: var(--green); }

/* ==============================================
   CONTACT
=============================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }

.contact-info h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.contact-info > p {
  color: rgba(255,255,255,0.62);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 36px;
}

/* Contact page (light background) overrides */
.contact-info--light h2 { color: var(--dark); }
.contact-info--light > p { color: var(--text); }

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-info--light .contact-item { color: var(--text); }
.contact-item:hover { color: var(--green); }
.contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  flex-shrink: 0;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group label span { color: var(--green); }

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(118,188,33,0.14);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 108px; }

.select-wrap {
  position: relative;
}
.select-wrap select {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 40px 12px 16px;
  outline: none;
  width: 100%;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.select-wrap select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(118,188,33,0.14);
  background: var(--white);
}
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  pointer-events: none;
}

/* ==============================================
   FOOTER
=============================================== */
.footer { background: var(--darker); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 24px 52px;
}

.footer-brand img { margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.5);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover {
  background: var(--green);
  color: var(--white);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.52);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }

.footer-contact-col p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 8px;
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ==============================================
   SCROLL ANIMATIONS
=============================================== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children in grids */
.services-grid  .fade-in:nth-child(2) { transition-delay: 0.09s; }
.services-grid  .fade-in:nth-child(3) { transition-delay: 0.18s; }
.services-grid  .fade-in:nth-child(4) { transition-delay: 0.09s; }
.services-grid  .fade-in:nth-child(5) { transition-delay: 0.18s; }
.services-grid  .fade-in:nth-child(6) { transition-delay: 0.27s; }

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

.gallery-grid   .fade-in:nth-child(2) { transition-delay: 0.07s; }
.gallery-grid   .fade-in:nth-child(3) { transition-delay: 0.14s; }
.gallery-grid   .fade-in:nth-child(4) { transition-delay: 0.21s; }
.gallery-grid   .fade-in:nth-child(5) { transition-delay: 0.28s; }
.gallery-grid   .fade-in:nth-child(6) { transition-delay: 0.35s; }

.testimonials-grid .fade-in:nth-child(2) { transition-delay: 0.12s; }

/* ==============================================
   RESPONSIVE — TABLET (≤ 1024px)
=============================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-images {
    margin-bottom: 40px;
  }
  .about-img-main img { height: 340px; }
  .about-img-secondary { width: 160px; bottom: -20px; right: -16px; }
  .about-img-secondary img { height: 110px; }
  .about-content { padding-left: 0; }

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

/* ==============================================
   RESPONSIVE — MOBILE (≤ 768px)
=============================================== */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 320px);
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 28px 32px;
    gap: 2px;
    transition: right var(--transition);
    box-shadow: -6px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  .nav-links.active { right: 0; }

  .nav-link {
    width: 100%;
    font-size: 0.9rem;
    padding: 13px 12px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.06em;
  }
  .btn-nav {
    margin-top: 16px;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius) !important;
    display: block;
  }

  /* Hero */
  .hero-content { padding-top: 100px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 14px; }

  /* About — hide floating secondary image on mobile */
  .about-img-secondary { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
  }
  .process-step + .process-step { border-left: none; }
  .process-step:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .process-step { padding: 36px 24px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 200px; }
  .gallery-item--wide { grid-column: span 2; height: 260px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  /* Partners */
  .partners-inner { justify-content: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 52px 24px 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 4px; }
}

/* ==============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
=============================================== */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item, .gallery-item--wide {
    grid-column: span 1;
    height: 220px;
  }

  .process-grid { grid-template-columns: 1fr; }
  .process-step:nth-child(odd) { border-right: none; }
  .process-step { border-bottom: 1px solid rgba(255,255,255,0.06); }

  .hero-content h1 { font-size: 2.1rem; }
  .hero-badges { flex-direction: column; gap: 10px; }
}

/* ==============================================
   MULTI-PAGE ADDITIONS
=============================================== */

/* --- Inner page: always solid header --- */
.is-inner #header {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

/* --- NAV DROPDOWN --- */
.has-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 13px;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.has-dropdown:hover .nav-dropdown-toggle {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}
.dropdown-chevron {
  width: 14px; height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.has-dropdown:hover .dropdown-chevron,
.has-dropdown.open .dropdown-chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 999;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-menu li a {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.dropdown-menu li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.dropdown-menu li a.active {
  color: var(--green);
}

/* nav active state */
.nav-link.nav-active:not(.btn-nav) { color: var(--green) !important; }
.nav-dropdown-toggle.nav-active { color: var(--green) !important; }

/* --- PAGE HERO (compact) --- */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.is-inner .page-hero {
  margin-top: 60px;
}
.page-hero--short { height: 300px; }
.page-hero--tall  { height: 460px; }

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.3) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}
.breadcrumb {
  margin-bottom: 12px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.breadcrumb li {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breadcrumb li a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.breadcrumb li a:hover { color: var(--green); }
.breadcrumb li + li::before {
  content: '/';
  margin-right: 6px;
  color: rgba(255,255,255,0.25);
}
.breadcrumb li:last-child { color: var(--green); }

.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-hero-content .hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.page-hero-content .hero-actions {
  margin-bottom: 0;
}

/* --- PAGE LAYOUT: content + sidebar --- */
.page-body { padding: 72px 0 96px; }
.page-body .container { max-width: var(--container); }

.page-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.page-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--dark);
  margin: 36px 0 14px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}
.page-content p {
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 16px;
}
.page-content p.lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
}

/* Feature list (checkmark items) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.6;
}
.feature-list li svg {
  width: 18px; height: 18px;
  stroke: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--green-light);
  border-radius: 50%;
  padding: 3px;
}

/* 2-col list */
.feature-list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

/* --- SIDEBAR --- */
.page-sidebar { position: sticky; top: 96px; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.sidebar-card-header {
  background: var(--dark);
  padding: 22px 24px 18px;
}
.sidebar-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.sidebar-card-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
}
.sidebar-form { padding: 20px 24px 24px; }
.sidebar-form .form-group { margin-bottom: 14px; }
.sidebar-form .form-group label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-bottom: 5px;
}
.sidebar-form input,
.sidebar-form textarea {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.sidebar-form input:focus,
.sidebar-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(118,188,33,0.14);
  background: var(--white);
}
.sidebar-form textarea { resize: vertical; min-height: 80px; }
.sidebar-form input::placeholder,
.sidebar-form textarea::placeholder { text-transform: none; font-family: var(--font-body); }

.sidebar-contact-strip {
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}
.sidebar-contact-strip a {
  color: var(--green);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.sidebar-contact-strip a:hover { color: var(--green-hover); }

.sidebar-trust {
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 18px 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.trust-badge:last-child { border-bottom: none; padding-bottom: 0; }
.trust-badge:first-child { padding-top: 0; }
.trust-badge svg {
  width: 16px; height: 16px;
  stroke: var(--green);
  flex-shrink: 0;
}

/* --- FAQ ACCORDION --- */
.faq-section { margin-top: 48px; }
.faq-section > h2 { margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--green); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-item.open .faq-question {
  background: var(--dark);
  color: var(--white);
}

.faq-icon {
  width: 20px; height: 20px;
  stroke: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  background: var(--white);
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  padding-top: 14px;
}
.faq-item.open .faq-answer { display: block; }

/* --- TEAM CARDS --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-card-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  background: var(--light);
}
.team-card-info {
  padding: 20px;
}
.team-card-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-card-info .role {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

/* --- STATS ROW --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 48px 0;
}
.stat-item {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- PROCESS (vertical, for inner pages) --- */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: var(--border);
}
.process-list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
}
.process-list-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-list-item:hover .process-list-num {
  background: var(--green);
  color: var(--white);
}
.process-list-text h4 {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.process-list-text p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Dark-background variant for process-list (service page sections) */
.process-list--dark::before { background: rgba(255,255,255,0.1); }
.process-list--dark .process-list-num {
  background: rgba(118,188,33,0.15);
  color: var(--green);
  border: 1.5px solid rgba(118,188,33,0.35);
}
.process-list--dark .process-list-item:hover .process-list-num {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.process-list--dark .process-list-text h4 { color: var(--white); }
.process-list--dark .process-list-text p { color: rgba(255,255,255,0.58); }

/* --- PAGE CTA STRIP --- */
.page-cta {
  background: var(--dark);
  padding: 72px 0;
}
.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.page-cta h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 8px;
}
.page-cta p { color: rgba(255,255,255,0.55); max-width: 480px; }
.page-cta .btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- RELATED SERVICES --- */
.related-services { padding: 72px 0; background: var(--light); }
.related-services .section-header { margin-bottom: 40px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}
.related-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.related-card-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background var(--transition);
}
.related-card:hover .related-card-icon { background: var(--green); }
.related-card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--green);
  transition: stroke var(--transition);
}
.related-card:hover .related-card-icon svg { stroke: var(--white); }
.related-card span {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

/* --- CONTACT PAGE SPECIFIC --- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-page-info h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 16px;
}
.contact-page-info p {
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 32px;
}
.areas-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.areas-inline .area-tag {
  font-size: 0.78rem;
  padding: 7px 16px;
}

/* ==============================================
   RESPONSIVE — INNER PAGES
=============================================== */
@media (max-width: 1024px) {
  .page-split { grid-template-columns: 1fr; }
  .page-sidebar { position: static; margin-top: 40px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { height: 300px; }
  .is-inner .page-hero { margin-top: 56px; }
  .page-hero--tall { height: 360px; }
  .page-hero-content { padding-bottom: 36px; }
  .page-cta-inner { flex-direction: column; align-items: flex-start; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .feature-list--cols { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-split { gap: 36px; }

  /* Mobile dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    margin: 4px 0 8px 12px;
    padding: 4px;
    display: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
}

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
