/* About-page subset; shared and other page-specific bundles remain unchanged. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #1d1d1d;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.navbar {
  width: 100%;
  padding: 5px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
}
.logo span {
  color: #b1782b;
}
.contact-btn {
  background: #a87026;
  color: #fff;
  padding: 14px 24px;
  border-radius: 28px;
  font-weight: 700;
}
.hero-buttons {
  display: flex;
  gap: 18px;
}
.primary-btn,
.secondary-btn {
  padding: 18px 30px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.primary-btn {
  background: #fff;
  color: #111;
}
.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 2px solid #fff;
}
@media (max-width: 720px) {
.hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
.primary-btn,
.secondary-btn {
    width: 100%;
    max-width: 310px;
  }
.logo {
    font-size: 15px;
  }
.navbar {
    padding: 20px;
  }
}
.logo {
  text-decoration: none;
  color: #111111;
}
.contact-btn,
.primary-btn,
.secondary-btn {
  text-decoration: none;
}
.services-menu-button {
  appearance: none;
  background: transparent;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  padding: 10px 0;
}
.services-menu-button:hover,
.services-menu-button:focus-visible {
  color: #b77725;
}
.desktop-nav .dropdown:focus-within .dropdown-content,
.desktop-nav .dropdown.is-open .dropdown-content {
  display: block;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.hamburger:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #d59a48;
  outline-offset: 3px;
}
.footer-bottom {
  justify-content: flex-start;
}
.footer-bottom p {
  margin-right: auto;
}
@media (max-width: 768px) {
.footer-bottom p {
    margin-right: 0;
  }
}
.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}
.whatsapp-icon {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}
@media (max-width: 768px) {
.whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
.whatsapp-icon {
    width: 31px;
    height: 31px;
  }
}
.logo img {
  height: 85px;
  max-width: 340px;
  object-fit: contain;
}
.logo {
  display: flex;
  align-items: center;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 220px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

  overflow: hidden;
  z-index: 1000;
  display: none;
}
.dropdown-content a {
  color: #111;
  padding: 16px 20px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.dropdown-content a:hover {
  background: #b67a24;
  color: white;
  padding-left: 24px;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.process-section {
  padding: 90px 6% 80px;
  background: #ffffff;
}
.process-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}
.process-badge {
  display: inline-block;
  background: rgba(184, 121, 34, 0.12);
  color: #b87922;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}
.process-header h2 {
  font-size: 48px;
  line-height: 1.08;
  color: #161616;
  margin-bottom: 16px;
}
.process-header h2 span {
  color: #b87922;
}
.process-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.process-card {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 24px 32px;
  text-align: center;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}
.process-number {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #b87922;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(184, 121, 34, 0.35);
}
.process-card h3 {
  font-size: 20px;
  color: #161616;
  margin-bottom: 12px;
}
.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
}
@media (max-width: 1100px) {
.process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
.process-section {
    padding: 70px 20px 60px;
  }
.process-header h2 {
    font-size: 36px;
  }
.process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
.process-card {
    padding: 30px 24px;
  }
}
.service-areas-section {
  padding: 80px 6% 90px;
  background: #f8f5f0;
}
.service-areas-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 58px 44px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.service-areas-badge {
  display: inline-block;
  background: rgba(184, 121, 34, 0.12);
  color: #b87922;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}
.service-areas-content h2 {
  font-size: 48px;
  line-height: 1.08;
  color: #161616;
  margin-bottom: 16px;
}
.service-areas-content h2 span {
  color: #b87922;
}
.service-areas-content p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 1.65;
  color: #555;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.areas-list span {
  background: #ffffff;
  color: #252525;
  border: 1px solid rgba(184, 121, 34, 0.25);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
.service-areas-section {
    padding: 60px 20px 70px;
  }
.service-areas-content {
    padding: 42px 22px;
    border-radius: 24px;
  }
.service-areas-content h2 {
    font-size: 36px;
  }
.service-areas-content p {
    font-size: 15px;
  }
.areas-list {
    gap: 10px;
  }
.areas-list span {
    font-size: 14px;
    padding: 10px 14px;
  }
}
.site-footer {
  background: #111111;
  color: #ffffff;
  padding: 70px 6% 28px;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr 1fr;
  gap: 38px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-brand h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #cfcfcf;
  max-width: 320px;
  margin-bottom: 22px;
}
.footer-contact {
  display: grid;
  gap: 10px;
}
.footer-contact a,
.footer-column a {
  color: #d6d6d6;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
}
.footer-contact a:hover,
.footer-column a:hover {
  color: #b87922;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-column h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer-column p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-bottom p {
  color: #cfcfcf;
  font-size: 14px;
  margin: 0;
}
.footer-bottom a {
  color: #d6d6d6;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-bottom a:hover {
  color: #b87922;
}
@media (max-width: 1100px) {
.footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
.footer-brand {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
.site-footer {
    padding: 58px 22px 26px;
  }
.footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
.footer-brand {
    grid-column: span 1;
  }
.footer-brand h3 {
    font-size: 24px;
  }
.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 36px;
  }
}
.top-contact-bar {
  width: 100%;
  background: linear-gradient(90deg, #151515, #2a2119);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 60px;
  box-sizing: border-box;
}
.top-contact-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}
.top-contact-link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.top-contact-link:hover {
  color: #b77725;
}
.contact-icon {
  color: #b77725;
  font-size: 16px;
  line-height: 1;
}
.top-contact-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.35);
}
@media (max-width: 768px) {
.top-contact-bar {
    padding: 10px 20px;
    font-size: 13px;
  }
.top-contact-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    text-align: center;
  }
.top-contact-divider {
    display: none;
  }
}
@media (max-width: 480px) {
.top-contact-inner {
    flex-direction: column;
    gap: 6px;
  }
.top-contact-link {
    font-size: 13px;
  }
}
.top-contact-bar {
  justify-content: flex-end;
  padding-right: 15px;
}
.dropdown-content a:hover {
  background: #b67a24;
  color: white;
  padding-left: 20px;
}
.about-page-hero {
  padding: 0 18px 40px;
  background: #ffffff;
}
.about-page-hero-bg {
  min-height: 760px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.about-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.36),
      rgba(0, 0, 0, 0.08));
  z-index: 1;
}
.about-page-badge {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}
.about-page-hero-content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 52px;
  align-items: center;
  padding: 120px 70px 70px;
}
.about-page-hero-text {
  color: #ffffff;
  max-width: 820px;
}
.about-page-hero-text h1 {
  font-size: 78px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -4px;
  margin-bottom: 28px;
}
.about-page-hero-text p {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
  max-width: 680px;
  margin-bottom: 36px;
}
.about-hero-stats-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 22px;
}
.about-hero-stats-card div {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.about-hero-stats-card div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.about-hero-stats-card h3 {
  font-size: 42px;
  color: #b87922;
  line-height: 1;
  margin-bottom: 8px;
}
.about-hero-stats-card span {
  font-size: 15px;
  color: #222222;
  font-weight: 800;
}
.about-story-section {
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  align-items: center;
  background: #ffffff;
}
.about-story-image {
  border-radius: 30px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.1);
}
.about-story-image img {
  height: 100%;
  min-height: 560px;
}
.about-story-content h2 {
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -2.4px;
  color: #161616;
  margin-bottom: 22px;
}
.about-story-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #555555;
  font-weight: 500;
  margin-bottom: 22px;
}
.about-small-badge {
  display: inline-block;
  background: rgba(184, 121, 34, 0.12);
  color: #b87922;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}
.about-inline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b87922;
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.about-inline-btn:hover {
  background: #9f671c;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(184, 121, 34, 0.35);
}
.about-mission-section {
  padding: 90px 6%;
  background: #f8f5f0;
}
.about-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}
.about-section-header h2 {
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #161616;
  margin-bottom: 16px;
}
.about-section-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #555555;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.about-value-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 34px 30px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}
.about-value-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #b87922;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 10px 28px rgba(184, 121, 34, 0.35);
}
.about-value-card h3 {
  font-size: 23px;
  color: #161616;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.about-value-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #5a5a5a;
  font-weight: 500;
}
.about-why-section {
  margin: 90px 24px;
  background: #121212;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: stretch;
}
.about-why-content {
  color: #ffffff;
  padding: 68px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-why-content h2 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.about-why-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #d8d8d8;
  margin-bottom: 30px;
}
.about-checklist {
  display: grid;
  gap: 14px;
}
.about-checklist div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 15px 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.about-why-image img {
  height: 100%;
  min-height: 620px;
}
.about-services-section {
  padding: 20px 6% 90px;
  background: #ffffff;
}
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 28px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.1);
}
.about-service-card img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.about-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.74));
  z-index: 1;
}
.about-service-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}
.about-service-card h3 {
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
}
.about-service-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #eeeeee;
  font-weight: 600;
}
.about-cta-section {
  padding: 90px 6%;
  background: #f8f5f0;
}
.about-cta-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 32px;
  padding: 60px 48px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.about-cta-card h2 {
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #161616;
  margin-bottom: 16px;
}
.about-cta-card p {
  max-width: 680px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 1.65;
  color: #555555;
}
.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about-dark-btn {
  padding: 18px 30px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: #111111;
  color: #ffffff;
}
@media (max-width: 1100px) {
.about-page-hero-content,
.about-story-section,
.about-why-section {
    grid-template-columns: 1fr;
  }
.about-hero-stats-card {
    max-width: 560px;
  }
.about-values-grid,
.about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.about-why-image img {
    min-height: 460px;
  }
}
@media (max-width: 768px) {
.about-page-hero {
    padding: 0 12px 30px;
  }
.about-page-hero-bg {
    min-height: auto;
    border-radius: 22px;
  }
.about-page-badge {
    top: 28px;
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
  }
.about-page-hero-content {
    min-height: auto;
    padding: 95px 22px 34px;
    gap: 30px;
  }
.about-page-hero-text h1 {
    font-size: 44px;
    letter-spacing: -1.8px;
  }
.about-page-hero-text p {
    font-size: 16px;
  }
.about-hero-stats-card {
    padding: 28px 22px;
    border-radius: 24px;
  }
.about-story-section {
    padding: 70px 22px;
    gap: 32px;
  }
.about-story-image,
.about-story-image img {
    min-height: 360px;
  }
.about-story-content h2,
.about-section-header h2,
.about-why-content h2,
.about-cta-card h2 {
    font-size: 36px;
    letter-spacing: -1.4px;
  }
.about-story-content p,
.about-section-header p,
.about-cta-card p {
    font-size: 15px;
  }
.about-mission-section {
    padding: 70px 20px;
  }
.about-values-grid,
.about-services-grid {
    grid-template-columns: 1fr;
  }
.about-why-section {
    margin: 70px 14px;
    border-radius: 24px;
  }
.about-why-content {
    padding: 42px 24px;
  }
.about-why-image img {
    min-height: 340px;
  }
.about-services-section {
    padding: 10px 20px 70px;
  }
.about-service-card {
    min-height: 360px;
    border-radius: 24px;
  }
.about-cta-section {
    padding: 70px 20px;
  }
.about-cta-card {
    padding: 42px 22px;
    border-radius: 24px;
  }
.about-cta-buttons {
    flex-direction: column;
  }
.about-cta-buttons .primary-btn,
.about-dark-btn {
    width: 100%;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  
}
@media (max-width: 720px) {
.hero-buttons {
    flex-direction: column;
    gap: 14px;
  }
.primary-btn,
.secondary-btn {
    width: 100%;
    max-width: 310px;
  }
}
.nav-toggle,
.hamburger {
  display: none;
}
.contact-btn {
  white-space: nowrap;
}
@media (max-width: 720px) {
.navbar {
    position: relative;
    padding: 18px 28px;
    gap: 14px;
  }
.logo img {
    height: 58px;
    max-width: 260px;
  }
.navbar>.contact-btn {
    display: none !important;
  }
.nav-toggle {
    display: none;
  }
.hamburger {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #b87922;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 10px 28px rgba(184, 121, 34, 0.32);
    z-index: 10001;
  }
.hamburger span {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 99px;
    transition: all 0.3s ease;
  }
.nav-toggle:checked+.hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
.nav-toggle:checked+.hamburger span:nth-child(2) {
    opacity: 0;
  }
.nav-toggle:checked+.hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
.dropdown>a {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 16px;
    color: #111111;
    font-weight: 800;
  }
.dropdown>a:hover {
    background: rgba(184, 121, 34, 0.1);
    color: #b87922;
  }
.dropdown {
    width: 100%;
  }
.dropdown-content {
    position: static;
    display: grid !important;
    min-width: 100%;
    margin: 4px 0 10px;
    padding: 8px;
    background: #f8f5f0;
    border-radius: 18px;
    box-shadow: none;
    border: 1px solid rgba(184, 121, 34, 0.12);
  }
.dropdown-content a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
  }
.dropdown-content a:hover {
    background: #b87922;
    color: #ffffff;
    padding-left: 14px;
  }
}
.nav-toggle,
.hamburger {
  display: none;
}
@media (min-width: 721px) {
.dropdown:hover .dropdown-content {
    display: block;
  }
}
@media (max-width: 720px) {
.navbar {
    position: relative;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
.logo img {
    height: 64px;
    max-width: 330px;
    object-fit: contain;
  }
.navbar>.contact-btn {
    display: none !important;
  }
.nav-toggle {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    display: block !important;
  }
.hamburger {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #b87922;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 10002;
    box-shadow: 0 14px 35px rgba(184, 121, 34, 0.38);
  }
.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 99px;
    transition: 0.25s ease;
  }
.nav-toggle:checked+.hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
.nav-toggle:checked+.hamburger span:nth-child(2) {
    opacity: 0;
  }
.nav-toggle:checked+.hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
.dropdown {
    width: 100%;
  }
.dropdown-content a {
    display: flex !important;
    align-items: center;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #111111;
    text-decoration: none;
    font-size: 19px !important;
    font-weight: 900 !important;
    line-height: 1.2;
  }
.dropdown-content a:last-child {
    border-bottom: none;
  }
.dropdown-content a:hover {
    background: transparent !important;
    color: #b87922 !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 480px) {
.navbar {
    padding: 22px 26px;
  }
.logo img {
    height: 58px;
    max-width: 270px;
  }
.hamburger {
    width: 58px;
    height: 58px;
  }
.dropdown-content a {
    font-size: 18px !important;
  }
}
@media (min-width: 721px) {
.dropdown:hover .dropdown-content {
    display: block;
  }
}
@media (max-width: 720px) {
.dropdown-content a {
    display: flex !important;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #111111;
    text-decoration: none;
    font-size: 19px !important;
    font-weight: 900 !important;
    line-height: 1.2;
  }
.dropdown-content a:last-child {
    border-bottom: none;
  }
.dropdown-content a:hover {
    background: transparent !important;
    color: #b87922 !important;
    padding-left: 0 !important;
  }
}
.desktop-nav {
  display: flex;
  gap: 42px;
  align-items: center;
}
.desktop-nav a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.desktop-nav a:hover {
  color: #b77725;
}
.nav-toggle,
.hamburger,
.mobile-menu-panel {
  display: none;
}
.desktop-nav .dropdown {
  position: relative;
}
.desktop-nav .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 1000;
  display: none;
}
.desktop-nav .dropdown:hover .dropdown-content {
  display: block;
}
.desktop-nav .dropdown-content a {
  display: block;
  padding: 16px 20px;
}
.desktop-nav .dropdown-content a:hover {
  background: #b67a24;
  color: #ffffff;
}
@media (max-width: 1024px) {
.navbar {
    position: relative;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
.desktop-nav,
.desktop-contact-btn {
    display: none !important;
  }
.logo img {
    height: 64px;
    max-width: 330px;
    object-fit: contain;
  }
.nav-toggle {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }
.hamburger {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    background: #b87922 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    cursor: pointer !important;
    z-index: 10002 !important;
    box-shadow: 0 12px 26px rgba(184, 121, 34, 0.32) !important;
    transition: all 0.25s ease !important;
    padding: 0 !important;
    margin-left: auto;
    border: none !important;
  }
.hamburger:hover {
    background: #a66d1e !important;
    box-shadow: 0 14px 28px rgba(184, 121, 34, 0.4) !important;
  }
.hamburger span {
    width: 30px !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 999px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
.nav-toggle:checked+.hamburger {
    background: #111111 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35) !important;
    border: none !important;
  }
.nav-toggle:checked+.hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg) !important;
    background: #ffffff !important;
    width: 28px !important;
    height: 3px !important;
  }
.nav-toggle:checked+.hamburger span:nth-child(2) {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    transform: scale(0) !important;
  }
.nav-toggle:checked+.hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg) !important;
    background: #ffffff !important;
    width: 28px !important;
    height: 3px !important;
  }
.mobile-menu-panel {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 82% !important;
    max-width: 310px !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    background: #ffffff !important;
    border-right: none !important;
    border-radius: 0 !important;
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.12) !important;
    z-index: 10005 !important;
    transform: translateX(-100%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
.nav-toggle:checked~.mobile-menu-panel {
    transform: translateX(0) !important;
  }
.mobile-menu-header {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: stretch !important;
    flex-shrink: 0 !important;
    min-height: 118px !important;
    padding: 20px 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    background: #b87922 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    border-bottom: none !important;
  }
.mobile-avatar {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    flex: 0 0 68px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 !important;
  }
.mobile-avatar img {
    width: 82% !important;
    height: 82% !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 50% !important;
    background: #ffffff !important;
  }
.mobile-name {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    color: #ffffff !important;
    font-size: clamp(22px, 3.2vw, 30px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    white-space: normal !important;
  }
.mobile-menu-content {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 16px 0 28px !important;
    display: flex !important;
    flex-direction: column !important;
  }
.mobile-menu-row {
    width: 100% !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 28px !important;
    text-decoration: none !important;
    color: #222222 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: -0.2px !important;
    border: none !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
  }
.mobile-menu-row:hover,
.mobile-menu-row:active {
    color: #b87922 !important;
    background: rgba(0, 0, 0, 0.02) !important;
  }
.mobile-menu-divider {
    height: 1px !important;
    background: rgba(0, 0, 0, 0.06) !important;
    margin: 12px 28px !important;
  }
.mobile-services-details {
    width: 100% !important;
  }
.mobile-services-details summary.mobile-menu-row {
    list-style: none !important;
    cursor: pointer !important;
    user-select: none !important;
  }
.mobile-services-details summary.mobile-menu-row::-webkit-details-marker {
    display: none !important;
  }
.mobile-services-arrow {
    font-size: 20px !important;
    color: #888888 !important;
    transition: transform 0.25s ease, color 0.2s ease !important;
    font-weight: 400 !important;
    margin-left: auto !important;
  }
.mobile-services-details[open] summary .mobile-services-arrow {
    transform: rotate(90deg) !important;
    color: #b87922 !important;
  }
.mobile-services-list {
    display: flex !important;
    flex-direction: column !important;
    margin: 4px 28px 8px !important;
    padding: 4px 0 4px 16px !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    border-left: 2px solid rgba(184, 121, 34, 0.25) !important;
  }
.mobile-services-list a {
    display: block !important;
    padding: 10px 14px !important;
    color: #555555 !important;
    text-decoration: none !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    border-radius: 6px !important;
  }
.mobile-services-list a:hover {
    color: #111111 !important;
    background: rgba(184, 121, 34, 0.05) !important;
    padding-left: 18px !important;
  }
.mobile-cta-btn {
    margin: 12px 28px 0 !important;
    width: calc(100% - 56px) !important;
    min-height: 48px !important;
    background: #111111 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    justify-content: center !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  }
.mobile-cta-btn:hover,
.mobile-cta-btn:active {
    background: #b87922 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(184, 121, 34, 0.25) !important;
  }
}
@media (max-width: 520px) {
.navbar {
    padding: 18px 22px !important;
  }
.logo img {
    height: 52px !important;
    max-width: 240px !important;
  }
.hamburger {
    width: 56px !important;
    height: 56px !important;
    gap: 6px !important;
  }
.hamburger span {
    width: 25px !important;
    height: 2.5px !important;
  }
.nav-toggle:checked+.hamburger span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg) !important;
    width: 24px !important;
    height: 2.5px !important;
  }
.nav-toggle:checked+.hamburger span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg) !important;
    width: 24px !important;
    height: 2.5px !important;
  }
.mobile-menu-panel {
    width: 85% !important;
    max-width: 300px !important;
  }
.mobile-menu-row {
    min-height: 48px !important;
    padding: 0 24px !important;
  }
.mobile-menu-header {
    min-height: 112px !important;
    padding: 18px 22px !important;
    gap: 16px !important;
  }
.mobile-avatar {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    flex: 0 0 64px !important;
    padding: 0 !important;
  }
.mobile-name {
    font-size: 25px !important;
  }
.mobile-services-list {
    margin: 4px 24px 8px !important;
  }
.mobile-cta-btn {
    margin: 12px 24px 0 !important;
    width: calc(100% - 48px) !important;
  }
}
@media (max-width: 430px) {
.hamburger {
    width: 52px !important;
    height: 52px !important;
    gap: 6px !important;
  }
.hamburger span {
    width: 24px !important;
    height: 2.5px !important;
  }
.nav-toggle:checked+.hamburger span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg) !important;
    width: 23px !important;
  }
.nav-toggle:checked+.hamburger span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg) !important;
    width: 23px !important;
  }
.mobile-menu-header {
    min-height: 104px !important;
    padding: 18px 20px !important;
    gap: 14px !important;
  }
.mobile-avatar {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    flex: 0 0 60px !important;
    padding: 0 !important;
  }
.mobile-name {
    font-size: 23px !important;
    line-height: 1.08 !important;
  }
}
@media (max-width: 360px) {
.mobile-menu-header {
    padding: 16px 18px !important;
    gap: 12px !important;
  }
.mobile-avatar {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    flex: 0 0 54px !important;
    padding: 0 !important;
  }
.mobile-name {
    font-size: 21px !important;
  }
}
.quote-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  z-index: 9997;
  transition: all 0.3s ease;
}
.quote-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.quote-bottom-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: 42px 7% 46px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: all 0.35s ease;
}
.quote-bottom-popup.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.quick-quote-form {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 260px;
  gap: 28px;
  align-items: end;
}
.quick-form-group label {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 14px;
}
.quick-form-group input {
  width: 100%;
  height: 56px;
  border: 1.5px solid #777777;
  outline: none;
  padding: 0 16px;
  font-size: 17px;
  font-family: inherit;
  background: #ffffff;
}
.quick-form-group input:focus {
  border-color: #b87922;
}
.quick-quote-submit {
  height: 58px;
  background: #b87922;
  color: #ffffff;
  border: none;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.quick-quote-submit:hover {
  background: #9f671c;
}
.quote-popup-close {
  position: absolute;
  top: 24px;
  right: 42px;
  background: transparent;
  color: #111111;
  font-size: 46px;
  line-height: 1;
  border: none;
  cursor: pointer;
  font-weight: 300;
}
@media (max-width: 768px) {
.quote-bottom-popup {
    padding: 38px 22px 32px;
    border-radius: 26px 26px 0 0;
  }
.quick-quote-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }
.quick-form-group label {
    font-size: 15px;
    margin-bottom: 8px;
  }
.quick-form-group input {
    height: 52px;
    font-size: 16px;
  }
.quick-quote-submit {
    width: 100%;
    height: 56px;
    font-size: 18px;
    border-radius: 0;
  }
.quote-popup-close {
    top: 14px;
    right: 22px;
    font-size: 40px;
  }
}
.mobile-menu-backdrop {
  display: none;
}
@media (max-width: 1024px) {
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    cursor: pointer;
    transition: all 0.3s ease;
  }
.nav-toggle:checked~.mobile-menu-backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
  }
.mobile-menu-panel {
    z-index: 10000;
  }
.hamburger {
    z-index: 10001;
  }
}
@media (max-width: 1024px) {
body.mobile-nav-open {
    overflow: hidden;
  }
body.mobile-nav-open .top-contact-bar,
body.mobile-nav-open .process-section,
body.mobile-nav-open .service-areas-section,
body.mobile-nav-open .site-footer,
body.mobile-nav-open .about-page-hero,
body.mobile-nav-open .about-story-section,
body.mobile-nav-open .about-mission-section,
body.mobile-nav-open .about-why-section,
body.mobile-nav-open .about-services-section,
body.mobile-nav-open .about-cta-section,
body.mobile-nav-open .whatsapp-float {
    filter: blur(8px);
    transition: filter 0.25s ease;
  }
body.mobile-nav-open .navbar .logo {
    filter: blur(6px);
    transition: filter 0.25s ease;
  }
body.mobile-nav-open .mobile-menu-panel,
body.mobile-nav-open .hamburger {
    filter: none !important;
  }
.mobile-menu-backdrop {
    background: rgba(0, 0, 0, 0.28);
  }
}
.social-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #d6d6d6;
  text-decoration: none;
}
.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #b87922;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.social-icon-dot {
  fill: currentColor;
  stroke: none;
}
.social-icon-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}
.social-link:hover {
  color: #b87922;
}
.footer-bottom {
  justify-content: flex-start;
}
.footer-bottom p {
  margin-right: auto;
}
@media (max-width: 768px) {
.footer-bottom p {
    margin-right: 0;
  }
}

/* The LCP image remains part of the document while preserving the former background crop. */
.about-page-hero-media,
.about-page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-page-hero-media img {
  object-fit: cover;
  object-position: center;
}
