/* ===================================
   House & Building Lifting - Styles
   =================================== */

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

:root {
  --primary: #ec7f13;
  --primary-dark: #d06a08;
  --primary-light: #fdf2e6;
  --bg-light: #f8f7f6;
  --bg-dark: #1a1a2e;
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-light: #94a3b8;
  --white: #ffffff;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  white-space: nowrap;
}
.btn .material-symbols-outlined { font-size: 1.1rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(236,127,19,.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236,127,19,.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

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

.btn-lg { padding: 0.75rem 1.75rem; font-size: 0.9rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ---------- SECTION TAGS ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.tag-light { color: rgba(255,255,255,.7); }

.section-title {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  max-width: 600px;
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.badge-icon { font-size: 0.9rem; }

/* ---------- HEADER ---------- */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,247,246,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(236,127,19,.08);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  font-size: 2rem;
  color: var(--primary);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
}
.logo-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-medium);
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
  position: relative;
  padding: 0.25rem 0;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-cta { font-size: 0.85rem; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  position: relative;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248,247,246,.98);
  backdrop-filter: blur(20px);
  z-index: 105;
  padding-top: 80px;
  justify-content: center;
  align-items: flex-start;
}
.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.05);
}
.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  width: 100%;
  text-align: center;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 60%, rgba(236,127,19,.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero-text {
    flex: 1;
    max-width: 600px;
  }
  .hero-form-wrapper {
    flex: 0 0 460px;
    margin-right: 1rem;
  }
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.hero-form-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}
.hero-form-card .form-subtitle {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.hero-form {
  gap: 1.1rem;
}
.hero-form .form-group input,
.hero-form .form-group select {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: var(--white);
  border-color: rgba(0,0,0,0.1);
}
.hero-form .btn {
  padding: 1rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
  box-shadow: 0 8px 20px rgba(236,127,19,.25);
}

.whatsapp-btn {
  border-color: #25D366;
  color: var(--white);
  background: rgba(37, 211, 102, 0.15);
}
.whatsapp-btn:hover {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.whatsapp-btn .material-symbols-outlined {
  color: #25D366;
}
.whatsapp-btn:hover .material-symbols-outlined {
  color: var(--white);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  width: fit-content;
}
.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* ---------- PIONEERS / ABOUT ---------- */
.pioneers {
  padding: 4rem 0;
  background: var(--white);
}

.pioneers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pioneers-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.pioneers-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.pioneers-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}
.pioneers-badge .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.25rem;
}

.pioneers-text .section-title {
  margin-top: 0.25rem;
}

.pioneers-stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.pioneer-stat-val {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.pioneer-stat-label {
  font-size: 0.78rem;
  color: var(--text-medium);
  font-weight: 500;
  margin-top: 0.2rem;
  display: block;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 4rem 0;
  background: var(--bg-light);
}

.services-header {
  text-align: center;
  margin-bottom: 2rem;
}
.services-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card-featured {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 180px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-featured:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 1.15rem;
}
.service-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.service-card-body p {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.55;
  margin-bottom: 1rem;
}

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

.service-mini {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.service-mini:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.service-mini-icon {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}
.service-mini h4 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.service-mini p {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ---------- WHY US ---------- */
.why-us {
  padding: 4rem 0;
  background: var(--bg-light);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-us-left {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.why-us-left-bg {
  position: absolute;
  inset: 0;
}
.why-us-left-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 100%);
}
.why-us-left-content {
  position: relative;
  z-index: 2;
}
.why-us-left-content .section-title {
  color: var(--white);
  margin-top: 0.35rem;
  font-size: 1.5rem;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.why-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 0.82rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.85rem;
  transition: var(--transition);
}
.why-feature:hover {
  background: rgba(236,127,19,.2);
  border-color: rgba(236,127,19,.4);
}
.why-feature .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.1rem;
}

.why-us-right {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-us-right h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.form-subtitle {
  font-size: 0.82rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.survey-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(236,127,19,.1);
}
.form-group textarea { resize: vertical; }

/* ---------- PROJECTS ---------- */
.projects {
  padding: 4rem 0;
  background: var(--white);
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.75rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover img {
  transform: scale(1.08);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}
.project-label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.project-overlay h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.project-card-lg {
  grid-row: span 2;
  height: 100%;
}

.project-card-banner {
  grid-column: span 2;
  background: linear-gradient(135deg, #1a1a2e, #0f0f23);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}
.project-banner-content {
  text-align: center;
  padding: 1.5rem;
}
.project-banner-content .project-label {
  margin-bottom: 0.35rem;
  display: block;
}
.project-banner-content h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.45;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 4rem 0;
  background: var(--bg-light);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0.65rem;
}
.testimonial-stars .material-symbols-outlined {
  font-size: 0.9rem;
  color: #f59e0b;
  font-variation-settings: 'FILL' 1;
}

.testimonial-text {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
}
.testimonial-author span {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a4a, #0d2030, #0a1a28);
  border-radius: var(--radius-xl);
  margin: 0 1.5rem;
}
.cta-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,127,19,.25) 0%, transparent 70%);
}
.cta-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.15) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}
.cta-inner h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.cta-inner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
}
.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo { margin-bottom: 0.75rem; }
.footer-about p {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
}
.footer-socials a .material-symbols-outlined { font-size: 1rem; }

.footer-links h4,
.footer-contact h4 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-medium);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}
.footer-contact .material-symbols-outlined {
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
  font-size: 0.75rem;
  color: var(--text-light);
}
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a {
  color: var(--text-light);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ---------- MOBILE BOTTOM NAV ---------- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(236,127,19,.1);
  padding: 0.5rem 1rem 0.75rem;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--text-light);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}
.bottom-nav-item .material-symbols-outlined {
  font-size: 1.35rem;
}
.bottom-nav-item.active {
  color: var(--primary);
}
.bottom-nav-item.active .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-mini-grid { grid-template-columns: repeat(3, 1fr); }
  .pioneer-stat-val { font-size: 2rem; }
}

@media (max-width: 768px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-bottom-nav { display: flex; }

  .container { padding: 0 1rem; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-content { padding: 2.5rem 1rem; }
  .hero-title { font-size: 2.25rem; }
  .hero-desc { font-size: 0.88rem; }
  .hero-stats { padding: 0.85rem 1rem; gap: 1rem; }
  .stat-value { font-size: 1.25rem; }
  .stat-label { font-size: 0.65rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  /* Pioneers */
  .pioneers { padding: 3rem 0; }
  .pioneers-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pioneers-img { height: 240px; }
  .pioneers-badge { font-size: 0.72rem; padding: 0.6rem 0.85rem; }

  /* Section titles */
  .section-title { font-size: 1.4rem; }
  .section-desc { font-size: 0.82rem; }

  /* Services */
  .services { padding: 3rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-mini-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .service-card-img { height: 160px; }
  .service-card-body { padding: 1rem; }
  .service-card-body h3 { font-size: 0.95rem; }
  .service-card-body p { font-size: 0.78rem; }

  /* Why Us */
  .why-us { padding: 3rem 0; }
  .why-us-grid { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .why-us-left { min-height: 320px; padding: 1.5rem; }
  .why-us-left-content .section-title { font-size: 1.3rem; }
  .why-feature { font-size: 0.78rem; padding: 0.5rem 0.75rem; }
  .why-us-right { padding: 1.5rem; }
  .why-us-right h3 { font-size: 1.1rem; }
  .form-subtitle { font-size: 0.78rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 0.6rem 0.75rem; font-size: 0.8rem; }

  /* Projects */
  .projects { padding: 3rem 0; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.75rem;
  }
  .project-card { height: 200px; }
  .project-card-lg { grid-row: span 1; height: 200px; }
  .project-card-banner { grid-column: span 1; height: 140px; }
  .project-overlay { padding: 1rem; }
  .project-overlay h4 { font-size: 0.82rem; }

  /* Testimonials */
  .testimonials { padding: 3rem 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-text { font-size: 0.78rem; }

  /* CTA */
  .cta-section { padding: 2.5rem 0; }
  .cta-inner h2 { font-size: 1.4rem; }
  .cta-inner p { font-size: 0.82rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  /* Footer */
  .footer { padding-top: 2rem; padding-bottom: 0; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-about { grid-column: span 2; }
  .footer-about p { font-size: 0.78rem; }
  .footer-links h4, .footer-contact h4 { font-size: 0.65rem; margin-bottom: 0.6rem; }
  .footer-links a { font-size: 0.78rem; }
  .footer-contact p { font-size: 0.78rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding-bottom: 4.5rem;
    font-size: 0.7rem;
  }
  .footer-bottom-links { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .hero-desc { font-size: 0.82rem; }
  .hero-stats { gap: 0.75rem; padding: 0.75rem; }
  .stat-value { font-size: 1.1rem; }

  .pioneers-img { height: 200px; }
  .section-title { font-size: 1.25rem; }

  .services-mini-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .service-mini { padding: 1rem 0.75rem; }
  .service-mini-icon { font-size: 1.4rem; }
  .service-mini h4 { font-size: 0.75rem; }
  .service-mini p { font-size: 0.68rem; }

  .why-us-left { min-height: 280px; }
  .why-us-right { padding: 1.25rem; }

  .project-card { height: 180px; }
  .project-card-lg { height: 180px; }
  .project-card-banner { height: 120px; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-about { grid-column: span 1; }

  .cta-bg { margin: 0 0.75rem; border-radius: var(--radius-lg); }
  .cta-inner h2 { font-size: 1.25rem; }
}
