* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
}

/* ── TOP STRIP ── */
.top-strip {
  background: #222;
  color: #fff;
  font-size: 13px;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.logo {
  padding-left: 40px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

#navMenu {
  padding-right: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.navbar nav ul li a {
  position: relative;
  text-decoration: none;
  color: #222;
  padding: 10px 0;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.navbar nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #7a1bb9;
  transition: width 0.3s ease;
}

.navbar nav ul li a:hover::after {
  width: 100%;
}

/* ── DROPDOWN ── */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: auto;
  background: #fff;
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  border-top: 2px solid #7a1bb9;
  border-radius: 0 0 8px 8px;
  overflow: visible;
}

.dropdown-menu li {
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-weight: 400;
  font-size: 13px;
  white-space: nowrap;
}

.dropdown-menu li a::after {
  display: none !important;
}

.dropdown-menu li a:hover {
  background: #f8f0ff;
  color: #7a1bb9;
}

.dropdown-menu.show {
  display: block;
}

.chevron {
  display: inline-block;
  transition: transform 0.25s ease;
}

.chevron.open {
  transform: rotate(180deg);
}

/* Desktop Hover Logic from Main Site */
@media (min-width: 901px) {
  .dropdown:hover .dropdown-menu { display: block; }
  .dropdown:hover .chevron { transform: rotate(180deg); }
}

/* ── HAMBURGER ── */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  z-index: 1100;
}

/* ── FLOATING BUTTONS (Synced with newgal) ── */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
  background-color: #25d366;
}
.phone-btn {
  background-color: #007bff;
}

/* ── RESPONSIVE NAV ── */
@media (max-width: 900px) {
  .top-strip {
    display: none;
  }
  .logo {
    padding-left: 0;
  }

  .navbar {
    position: sticky;
    top: 0;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  #navMenu {
    display: none;
    width: 100%;
    background: #fff;
    order: 3;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    padding-right: 0;
    max-height: 80vh;
    overflow-y: auto;
  }

  #navMenu.open {
    display: block;
  }

  #navMenu ul {
    flex-direction: column;
    padding: 8px 0 16px;
    gap: 0;
  }

  #navMenu ul li {
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
  }

  #navMenu ul li:last-child {
    border-bottom: none;
  }

  .navbar nav ul li a {
    padding: 13px 20px;
    font-size: 14px;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: #f9f4ff;
    padding-left: 0;
    min-width: unset;
    width: 100%;
  }

  .dropdown-menu li a {
    padding: 11px 20px 11px 36px;
    font-size: 13px;
    color: #555;
  }

  .dropdown-menu li a:hover {
    background: #f0e6ff;
    color: #7a1bb9;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 16px;
  }
  .logo img {
    height: 40px;
  }
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 40%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 750px;
}

.hero-content h1 {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.hero-bold {
  font-weight: 800;
  color: #ffffff;
}

/* Button styled to match main site */
.hero-btn {
  display: inline-block;
  background: #740183;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 40px;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background: #5e0f7a;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    height: 75vh;
    align-items: flex-end;
    padding-bottom: 60px;
  }
  .hero-content {
    padding: 0 24px;
  }
  .hero-content h1 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 24px;
  }
}

/* ── ACP SECTION ── */
.acp-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px 70px;
}

.acp-section__heading {
  font-family: Montserrat, serif;
  font-size: 31px;
  font-weight: bold;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 38px;
  letter-spacing: -0.01em;
}

.acp-section__para {
  font-family: "Montserrat", serif;
  font-size: 15.5px;
  color: #57004b;
  line-height: 1.85;
  text-align: justify;
  margin-bottom: 13px;
}

.acp-section__para:last-child {
  margin-bottom: 0;
}

/* ── WHY CHOOSE ── */
.why-choose {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px 70px;
  text-align: center;
}

.why-choose__heading {
  font-family: "Montserrat", serif;
  font-size: 30px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 50px;
  letter-spacing: -0.01em;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.why-choose__grid--bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  margin-top: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.why-choose__icon {
  width: 72px;
  height: 72px;
}

.why-choose__label {
  font-family: "Montserrat", serif;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: normal;
}

/* ── ACP EXPERTISE ── */
.acp-expertise {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px 70px;
  text-align: center;
}

.acp-expertise__main-heading {
  font-family: "Montserrat", serif;
  font-size: 40px;
  font-weight: normal;
  color: #1a1a1a;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.acp-expertise__sub-heading {
  font-family: "Montserrat", serif;
  font-size: 19px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 28px;
  line-height: 1.4;
}

.acp-expertise__para {
  font-family: "Montserrat", serif;
  font-size: 15.5px;
  color: #790073;
  line-height: 1.85;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* ── ACP PROCESS ── */
.acp-process {
  max-width: 80%;
  margin: 0 auto;
  padding: 30px 40px 40px;
  text-align: center;
}

.acp-process__heading {
  font-family: "Montserrat", serif;
  font-size: 26px;
  font-weight: normal;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 50px;
  letter-spacing: -0.01em;
}

.acp-process__step {
  margin-bottom: 46px;
}

.acp-process__step:last-child {
  margin-bottom: 0;
}

.acp-process__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: block;
}

.acp-process__step-title {
  font-family: "Montserrat", serif;
  font-size: 16px;
  font-weight: normal;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.5;
}

.acp-process__step-title span {
  color: #790073;
  font-weight: bold;
}

.acp-process__step-desc {
  font-family: "Montserrat", serif;
  font-size: 13.5px;
  color: #790073;
  line-height: 1.8;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

/* ── WHERE WE WORK ── */
.where-we-work {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px 70px;
  text-align: center;
}

.where-we-work__heading {
  font-family: "Montserrat",  serif;
  font-size: 46px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.where-we-work__sub-heading {
  font-family: "Montserrat", serif;
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 22px;
  line-height: 1.3;
}

.where-we-work__intro {
  font-family: "Montserrat", serif;
  font-size: 16px;
  color: #7a2050;
  line-height: 1.75;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 38px;
}

.where-we-work__list {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.where-we-work__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Montserrat", serif;
  font-size: 22px;
  color: #7a2050;
  font-weight: normal;
  line-height: 1.3;
}

.where-we-work__item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.where-we-work__list-wrapper {
  text-align: center;
}

/* ── ACP CITIES SECTION ── */
.acp-cladding {
  background: #ffffff;
  padding: 80px 40px;
  font-family: "Lato", sans-serif;
  position: relative;
  overflow: hidden;
}

.acp-cladding::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(180, 60, 90, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.acp-cladding::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(180, 60, 90, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.acp-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.acp-heading {
  font-family: "Montserrat", serif;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 900;
  color: #2d1a2e;
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.acp-subtext {
  font-size: 1.05rem;
  color: #7a2050;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 52px auto;
  font-weight: 400;
}

.acp-subtext span {
  font-weight: 600;
  color: #7a2050;
}

.acp-cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 640px;
  margin: 0 auto 48px auto;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 32px rgba(180, 60, 90, 0.09);
  backdrop-filter: blur(6px);
}

.acp-city {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 28px;
  color: #7a2050;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(180, 60, 90, 0.1);
  transition: background 0.2s, color 0.2s;
  cursor: default;
  position: relative;
}

.acp-city:nth-child(odd) {
  border-right: 1px solid rgba(180, 60, 90, 0.1);
}

.acp-city:nth-last-child(-n + 2) {
  border-bottom: none;
}

.acp-city:hover {
  background: rgba(192, 33, 78, 0.07);
  color: #8b1038;
}

.acp-city:hover .pin-icon {
  transform: translateY(-3px) scale(1.15);
}

.pin-icon {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(192, 33, 78, 0.25));
}

.acp-tagline {
  font-size: 1.05rem;
  font-style: italic;
  color: #7a2050;
  font-weight: 600;
  letter-spacing: 0.3px;
  opacity: 0.88;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.acp-heading { animation: fadeUp 0.65s ease both; }
.acp-subtext { animation: fadeUp 0.65s 0.12s ease both; }
.acp-cities-grid { animation: fadeUp 0.65s 0.22s ease both; }
.acp-tagline { animation: fadeUp 0.65s 0.38s ease both; }

@media (max-width: 540px) {
  .acp-cladding {
    padding: 56px 18px;
  }
  .acp-cities-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .acp-city:nth-child(odd) {
    border-right: none;
  }
  .acp-city:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(180, 60, 90, 0.1);
  }
  .acp-city:last-child {
    border-bottom: none;
  }
}

/* ── FOOTER (Synced with Main CSS) ── */
.site-footer {
  background: linear-gradient(135deg, #570072, #440044);
  color: #fff;
  padding-top: 30px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 20px;
  padding: 0;
}

.footer-col.brand h2 {
  font-size: 30px;
  line-height: 0.8;
}

.footer-col.brand h2 span {
  font-weight: 300;
  font-size: 18px;
}

.footer-col p {
  margin: 20px 0;
  color: #e6d9ff;
  line-height: 1.7;
}

.footer-btn {
  display: inline-block;
  background: #ffb300;
  color: #4b006e;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.footer-col h4 {
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 200;
  text-align: left;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #e6d9ff;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ffcc4d;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #e6d9ff;
}

.footer-col ul li:hover {
  color: #ffcc4d;
  transform: translateX(15px);
}

.footer-social {
  text-align: center;
  margin: 15px 0 15px;
}

.footer-social a {
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc4d;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  color: #e6d9ff;
}

/* ===== FOOTER MOBILE FIXES (From Main Site) ===== */
@media (max-width: 992px) {
  .footer-col h4 {
    text-align: left;
  }
  .footer-col ul li::before {
    margin-top: 6px;
  }
  .footer-brand {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .footer-brand .btn,
  .footer-brand .social-icons {
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 20px;
  }
  .footer-col.brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-col.brand h2 {
    font-size: 24px;
  }
  .footer-col p {
    font-size: 13px;
  }
  .footer-col h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .footer-col ul li {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .footer-col ul li:hover {
    transform: none;
  }
  .footer-social {
    padding: 10px;
  }
  .footer-bottom {
    font-size: 12px;
    padding: 12px 10px;
  }
}

@media (max-width: 420px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .footer-col.brand {
    grid-column: 1;
  }
  .footer-col h4 {
    font-size: 14px;
  }
}