/* ============================================================
   BASE & VARIABLES
   ============================================================ */
:root {
  --primary: #e8820c;
  --secondary: #1c1c1e;
  --accent: #e8820c;
  --dark: #111111;
  --light: #f5f5f0;
  --text: #2a2a2a;
  --text-light: #6b6b6b;
  --radius: 10px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

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

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

/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover { background: #cf720a; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

.section-header { margin-bottom: 56px; }

.section-badge {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(232,130,12,0.1);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-badge-light {
  color: var(--primary);
  background: rgba(232,130,12,0.15);
}

.section-heading {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(232,130,12,0.2);
}

.btn-primary:hover {
  background: #cf720a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,130,12,0.3);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  transition: color var(--transition);
}

.nav-logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
}

#navbar.scrolled .nav-logo-text { color: var(--secondary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  position: relative;
  transition: color var(--transition);
}

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

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

#navbar.scrolled .nav-links a { color: var(--text-light); }
#navbar.scrolled .nav-links a:hover { color: var(--secondary); }

.nav-cta {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta svg { width: 15px; height: 15px; }

.whatsapp-icon { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta .whatsapp-icon { width: 15px; height: 15px; }
.contact-card-icon .whatsapp-icon { width: 18px; height: 18px; }
.footer-contact-col .whatsapp-icon { width: 15px; height: 15px; }

.nav-cta:hover { background: #cf720a; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

#navbar.scrolled .nav-hamburger span { background: var(--secondary); }

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

.nav-mobile {
  display: none;
  background: #fff;
  padding: 24px 24px 36px;
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.nav-mobile ul a {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--secondary);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-cta-mobile {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 16px;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
}
/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg-img.loaded { transform: scale(1); }

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 100px;
  width: 100%;
}

.hero-text-col {
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(232,130,12,0.15);
  border: 1px solid rgba(232,130,12,0.3);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-value {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.hero-diagonal {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--light);
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about_1 { overflow-x: hidden; }

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

.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s ease;
}

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

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.about-img-badge svg { width: 16px; height: 16px; }

/* About trust items (moved from hero) */
.about-trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.about-trust-card {
  background: rgba(232,130,12,0.08);
  border: 1px solid rgba(232,130,12,0.15);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.about-trust-value {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.about-trust-label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.about-text-col .section-heading { color: var(--secondary); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.4;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services_1 { overflow-x: hidden; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,130,12,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img { transform: scale(1.05); }

.service-card-body {
  padding: 28px;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,130,12,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.service-icon svg { width: 20px; height: 20px; }

.service-title {
  font-family: 'Archivo', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-caption {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.gallery-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom svg { width: 16px; height: 16px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(232,130,12,0.2);
  z-index: 0;
}

.process-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step-num {
  width: 72px;
  height: 72px;
  background: var(--light);
  border: 2px solid rgba(232,130,12,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  transition: background var(--transition), border-color var(--transition);
}

.process-item:hover .process-step-num {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.process-title {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { overflow-x: hidden; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-col .section-heading { color: #fff; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 20px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  text-decoration: none;
}

.contact-card:hover {
  border-color: rgba(232,130,12,0.4);
  background: rgba(232,130,12,0.06);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(232,130,12,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card-icon svg { width: 18px; height: 18px; }

.contact-card-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-card-value {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.contact-card-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.map-wrap {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Contact Form */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-input::placeholder { color: rgba(255,255,255,0.25); }

.form-input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(232,130,12,0.12);
}

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

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 15px;
}

.form-success {
  display: none;
  text-align: center;
  color: #6ee7b7;
  font-size: 14px;
  padding: 12px;
  background: rgba(110,231,183,0.08);
  border: 1px solid rgba(110,231,183,0.2);
  border-radius: 8px;
}

/* ============================================================
   WHY US
   ============================================================ */
#whyus_1 { overflow-x: hidden; }

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.whyus-header .section-heading { color: var(--secondary); }

.whyus-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.whyus-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background var(--transition);
}

.whyus-item:first-child { padding-top: 0; }
.whyus-item:last-child { border-bottom: none; padding-bottom: 0; }

.whyus-number {
  font-family: 'Archivo', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(232,130,12,0.18);
  line-height: 1;
  transition: color var(--transition);
  user-select: none;
}

.whyus-item:hover .whyus-number { color: var(--primary); }

.whyus-title {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.whyus-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(232,130,12,0.3);
}

.faq-item.open {
  border-color: rgba(232,130,12,0.4);
  box-shadow: 0 4px 16px rgba(232,130,12,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.78);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.testimonial-item {
  padding: 36px 32px;
  border-top: 3px solid var(--primary);
  background: var(--light);
  border-radius: 0 0 10px 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.testimonial-quote-mark {
  font-family: 'Archivo', sans-serif;
  font-size: 56px;
  line-height: 0.6;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-name {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 72px 0 0;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.footer-logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 2px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
}

.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links-col ul,
.footer-contact-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links-col a:hover { color: var(--primary); }

.footer-contact-col li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-contact-col li a:hover { color: var(--primary); }

.footer-contact-col svg { width: 15px; height: 15px; flex-shrink: 0; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 360px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .whyus-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-links, .nav-cta:not(.nav-cta-mobile) { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-col { max-width: 480px; margin: 0 auto; width: 100%; }
  .map-wrap { height: 240px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-trust { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-list { grid-template-columns: 1fr; }
  .whyus-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .whyus-number { font-size: 38px; }
  /* Disable fixed bg attachment on mobile (causes iOS bugs) */
  .cta-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .section-pad { padding: 52px 0; }
  .container { padding: 0 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-trust-items { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 240px; }
  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
  .hero-headline { font-size: 30px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 16px; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline-light { width: auto; justify-content: center; font-size: 14px; padding: 13px 24px; }
  .hero-trust { gap: 16px; }
  .trust-value { font-size: 18px; }
  .stat-value { font-size: 18px; }
  .service-card-body { padding: 20px; }
  .testimonial-item { padding: 24px 20px; }
  .whyus-item { grid-template-columns: 52px 1fr; gap: 12px; padding: 24px 0; }
  .whyus-number { font-size: 32px; }
  .cta-section { padding: 72px 0; }
  .cta-headline { font-size: 26px; }
  .contact-card-value { word-break: break-all; }
  .footer-grid { gap: 24px; }
  #scroll-top { bottom: 16px; right: 16px; }
}

@media (max-width: 350px) {
  .container { padding: 0 12px; }
  .nav-inner { height: 60px; padding: 0 12px; }
  .nav-logo-text { font-size: 14px; }
  .hero-headline { font-size: 24px; }
  .hero-content { padding: 100px 12px 80px; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .trust-item { flex-direction: row; align-items: center; gap: 8px; }
  .about-stats { grid-template-columns: 1fr; }
  .section-heading { font-size: 22px; }
  .whyus-item { grid-template-columns: 44px 1fr; gap: 10px; }
  .whyus-number { font-size: 26px; }
  .contact-card { padding: 12px 14px; }
  .map-wrap { height: 200px; }
  #scroll-top { bottom: 12px; right: 12px; width: 38px; height: 38px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
