/* ============================================================
   BATLAS CONSTRUCTION — style.css
   Mobile-first, responsive, no frameworks
============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
============================================================ */
:root {
  --charcoal:   #17191C;
  --offwhite:   #F7F6F2;
  --gold:       #E5A82B;
  --gold-dark:  #c8911c;
  --grey:       #6C7074;
  --white:      #FFFFFF;
  --border:     #E2E1DC;

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

  --radius:     4px;
  --transition: 0.25s ease;

  --max-w:      1200px;
  --container-pad: clamp(1rem, 5vw, 2rem);

  --section-pad-v: clamp(3.5rem, 8vw, 6rem);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

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

/* ============================================================
   3. UTILITY CLASSES
============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-pad {
  padding-block: var(--section-pad-v);
}

.bg-offwhite  { background: var(--offwhite); }
.bg-charcoal  { background: var(--charcoal); }
.text-center  { text-align: center; }
.text-white   { color: var(--white); }
.accent       { color: var(--gold); }

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

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.section-sub {
  color: var(--grey);
  margin-top: 0.75rem;
  max-width: 54ch;
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header.text-center .section-sub {
  margin-inline: auto;
}

.section-header--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   4. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  min-height: 48px;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

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

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

.btn-full { width: 100%; }

/* ============================================================
   5. HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--charcoal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo:hover .logo-icon-img {
  transform: scale(1.06);
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
}

.logo--footer .logo-icon-img {
  height: 38px;
}

/* Desktop nav */
.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
}

.nav-desktop a {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition);
}

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

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--white);
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.nav-mobile.is-open {
  display: flex;
  max-height: 500px;
}

.nav-mobile ul {
  padding: 0.75rem 0 1rem;
}

.nav-mobile li + li {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem var(--container-pad);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.mobile-cta {
  display: inline-block;
  margin: 0.5rem var(--container-pad) 0.5rem;
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
}

.mobile-cta:hover {
  background: var(--gold-dark) !important;
}

/* ============================================================
   6. HERO
============================================================ */
.hero {
  position: relative;
  min-height: clamp(480px, 80vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(23,25,28,0.82) 0%,
    rgba(23,25,28,0.55) 60%,
    rgba(23,25,28,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 10vw, 7rem);
  max-width: 680px;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 1;
  background: rgba(23,25,28,0.88);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(229,168,43,0.25);
  margin-top: auto;
}

.trust-inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 1.5rem;
  flex: 1 1 200px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item:last-child {
  border-right: none;
}

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

.trust-item span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================================
   7. ABOUT
============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.about-image:hover img {
  transform: scale(1.03);
}

.about-content .section-heading {
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--grey);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-content .btn {
  margin-top: 0.75rem;
}

/* ============================================================
   8. SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(23,25,28,0.1);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--gold);
}

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

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ============================================================
   9. PROJECTS / GALLERY
============================================================ */
.projects-viewall {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
  align-self: flex-end;
}

.projects-viewall:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

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

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,25,28,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

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

.gallery-title {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.gallery-type {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================================
   10. JOURNEY (Build → Develop → Complete)
============================================================ */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.journey-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}

.journey-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.journey-item:hover .journey-img-wrap img {
  transform: scale(1.04);
}

.journey-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(23,25,28,0.85);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0.85rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.journey-num {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.journey-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   11. WHY CHOOSE US
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(229,168,43,0.12);
  border: 1px solid rgba(229,168,43,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.why-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

/* ============================================================
   12. TESTIMONIALS
============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(23,25,28,0.08);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.testimonial-card footer strong {
  font-weight: 700;
  color: var(--charcoal);
}

.testimonial-card footer span {
  color: var(--grey);
}

.testimonial-card footer span::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--gold);
}

/* ============================================================
   13. AREAS SERVED
============================================================ */
.areas-text {
  color: var(--grey);
  max-width: 54ch;
  margin-inline: auto;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.areas-tags {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.areas-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.areas-tags span:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(229, 168, 43, 0.2);
}

/* ============================================================
   14. CONTACT
============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-form-wrap .section-heading {
  margin-bottom: 0.5rem;
}

.contact-form-wrap .section-sub {
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.form-group label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  text-transform: uppercase;
  /* visually hidden but accessible */
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C7074' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(229,168,43,0.15);
}

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

/* Form Actions & WhatsApp Button */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0.25rem 0;
  color: var(--grey);
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}

.form-divider span {
  padding: 0 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #8a8e94;
}

.btn.btn-whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
  border: 1px solid #20bd5a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn.btn-whatsapp:hover {
  background: #20bd5a !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn-icon {
  flex-shrink: 0;
}

/* Success Card Modal / Feedback */
.form-feedback-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  animation: fadeIn 0.3s ease-out;
}

.form-feedback-card--success {
  background: #edfbf3;
  border: 1px solid #a4e6bd;
}

.form-feedback-card--error {
  background: #fef2f2;
  border: 1px solid #f5aca6;
}

.form-feedback-card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-feedback-card--success h4 {
  color: #14723e;
}

.form-feedback-card--error h4 {
  color: #c0392b;
}

.form-feedback-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.form-feedback-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.btn-reset-form {
  background: transparent;
  border: none;
  color: var(--grey);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.4rem;
  text-align: center;
  transition: color var(--transition);
}

.btn-reset-form:hover {
  color: var(--charcoal);
}

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

/* Contact info column */
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.contact-details-list a,
.contact-details-list address {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.5;
  padding-top: 0.6rem;
  transition: color var(--transition);
}

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

.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   15. MAP
============================================================ */
.map-section {
  line-height: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
}

@media (max-width: 599px) {
  .map-section iframe {
    height: 260px;
  }
}

/* ============================================================
   16. FOOTER
============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  max-width: 28ch;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.75);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link--whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

.social-link--email:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

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

.footer-nav h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-services ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a,
.footer-services a,
.footer-contact a,
.footer-contact address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  line-height: 1.5;
}

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

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.1rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom nav a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

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

.footer-bottom nav span {
  color: rgba(255,255,255,0.2);
}

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

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

/* Stagger children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.35s; }

.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; }

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

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

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

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   18. RESPONSIVE — 600px +
============================================================ */
@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .trust-inner {
    flex-wrap: nowrap;
  }
}

/* ============================================================
   19. RESPONSIVE — 768px +
============================================================ */
@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-mobile { display: none !important; }

  .nav-desktop { display: flex; }
  .nav-cta     { display: inline-flex; }

  .about-inner {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid .gallery-item:first-child,
  .gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 2;
  }

  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  }
}

/* ============================================================
   20. RESPONSIVE — 1024px +
============================================================ */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-image {
    aspect-ratio: unset;
    min-height: 460px;
  }
}

/* ============================================================
   21. RESPONSIVE — 1440px +
============================================================ */
@media (min-width: 1440px) {
  :root {
    --section-pad-v: 7rem;
  }
}

/* ============================================================
   22. FOCUS STYLES (global)
============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   23. SCROLLBAR (subtle)
============================================================ */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--offwhite);
}
::-webkit-scrollbar-thumb {
  background: #c8c7c2;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--grey);
}
