/* =====================================================
   LA POST BUILD CLEANERS — Main Stylesheet
   Colors: Pink #ff66ca | Grey #545454
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:wght@400;600;700&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
  --pink:        #ff66ca;
  --pink-light:  #ffe0f5;
  --pink-dark:   #e050b5;
  --grey:        #545454;
  --grey-light:  #f8f8f8;
  --grey-mid:    #888888;
  --grey-dark:   #2e2e2e;
  --white:       #ffffff;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.16);
  --radius:      14px;
  --transition:  all 0.3s ease;
  --max-width:   1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', sans-serif;
  color: var(--grey);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Noto Serif Display', serif;
  color: #545454;
  line-height: 1.2;
}

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

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section        { padding: 100px 0; }
.section-alt    { background: var(--grey-light); }

/* ===== TYPOGRAPHY HELPERS ===== */
.section-label {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-mid);
  line-height: 1.75;
  max-width: 620px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-pink { color: var(--pink); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 8px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,102,202,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-dark {
  background: var(--grey-dark);
  color: var(--white);
  border-color: #545454;
}
.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,102,202,0.12);
  transition: var(--transition);
}

nav.scrolled { box-shadow: var(--shadow-sm); }

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

.nav-logo img {
  height: 185px;
  width: auto;
  margin-top: 28px;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  display: block;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--grey);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--pink); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #545454;
}

.nav-phone i { color: var(--pink); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 130px; left: 0; right: 0;
  background: white;
  padding: 28px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid var(--pink-light);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--grey);
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--pink); padding-left: 8px; }
.mobile-menu .btn { margin-top: 12px; text-align: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/team-photo.jpeg');
  background-size: cover;
  background-position: center top;
  opacity: 0.7;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.30) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge i { color: white; font-size: 1rem; }

.hero h1 {
  font-family: 'Noto Serif Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: white;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  line-height: 1.75;
  font-weight: 600;
  font-family: 'Hanken Grotesk', sans-serif;
}

.hero-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 42px;
  line-height: 1.85;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--grey-dark);
  padding: 22px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item i { color: var(--pink); font-size: 1.1rem; }

/* ===== SERVICES GRID ===== */
.services-intro {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid #ebebeb;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-light);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 66px;
  height: 66px;
  background: var(--pink-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon i { font-size: 1.7rem; color: var(--pink); transition: var(--transition); }

.service-card:hover .service-icon { background: var(--pink); }
.service-card:hover .service-icon i { color: white; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

/* ===== PHOTO SERVICE CARDS (like buildcleaner.com) ===== */
.photo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  cursor: pointer;
}

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

.photo-card:hover img { transform: scale(1.06); }

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.photo-card:hover .photo-card-overlay {
  background: transparent;
}

.photo-card-wrap {
  display: flex;
  flex-direction: column;
}

.photo-card-label {
  font-family: 'Noto Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  padding: 14px 0 4px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visuals {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-img-float {
  position: absolute;
  bottom: -32px;
  right: -28px;
  width: 210px;
  height: 195px;
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid white;
  box-shadow: var(--shadow-md);
}

.woman-owned-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.woman-owned-badge i { color: var(--pink); font-size: 1.5rem; }

.woman-owned-badge div span:first-child {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #545454;
  line-height: 1.3;
}

.woman-owned-badge div span:last-child {
  font-size: 0.75rem;
  color: var(--pink);
  font-weight: 600;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 20px;
}

.about-text p:last-of-type { margin-bottom: 36px; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid #ebebeb;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-light);
}

.why-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--pink-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-wrap i { color: var(--pink); font-size: 1.25rem; }

.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* ===== WHO WE SERVE ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.client-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #ebebeb;
  transition: var(--transition);
}

.client-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.client-card i {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 14px;
  display: block;
}

.client-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #545454;
}

/* ===== SERVICE AREAS ===== */
.areas-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
}

.area-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid var(--pink-light);
  padding: 12px 26px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--grey);
  transition: var(--transition);
}

.area-pill:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-pill i { color: var(--pink); font-size: 0.85rem; }

/* ===== GALLERY / PHOTOS ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item.tall {
  grid-row: span 2;
}

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

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

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
  background-image: url('../images/commercial-space.jpeg');
  background-size: cover;
  background-position: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.50) 100%
  );
  z-index: 0;
}

.cta-section::after { display: none; }

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 42px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: white;
  color: #545454;
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e8e8e8;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 22px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 26px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #545454;
  font-size: 0.88rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #545454;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--pink);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #545454;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a i { font-size: 0.65rem; color: var(--pink); }

.footer-links a:hover {
  color: var(--pink);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.footer-contact-item i {
  color: var(--pink);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p { font-size: 0.82rem; }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: #545454;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--pink); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1e1e1e 0%, var(--grey) 100%);
  padding: 190px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,102,202,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--pink); transition: var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 0.65rem; }

.page-hero h1 {
  font-family: 'Noto Serif Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.75;
}

/* ===== SERVICES PAGE ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-detail-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #ebebeb;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-light);
}

.sdc-icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  background: var(--pink-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdc-icon i { color: var(--pink); font-size: 1.45rem; }

.sdc-text h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.sdc-text p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* ===== CHECK LIST ===== */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
}

.check-list li i { color: var(--pink); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info-box {
  background: linear-gradient(145deg, var(--grey-dark), var(--grey));
  border-radius: 20px;
  padding: 50px 38px;
  color: white;
  position: sticky;
  top: 110px;
}

.contact-info-box h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}

.contact-info-box > p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 38px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.ci-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: rgba(255,102,202,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon i { color: var(--pink); font-size: 1.05rem; }
.ci-item h4 { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 400; margin-bottom: 4px; }
.ci-item p { font-size: 0.92rem; color: white; font-weight: 500; margin: 0; }

/* Contact Form */
.contact-form-box {
  background: white;
  border-radius: 20px;
  padding: 52px 44px;
  box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-box > p {
  color: var(--grey-mid);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

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

.form-group { margin-bottom: 20px; }

label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: #545454;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--grey);
  background: #fafafa;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--pink);
  background: white;
  box-shadow: 0 0 0 4px rgba(255,102,202,0.08);
}

textarea { resize: vertical; min-height: 145px; }

.form-submit {
  margin-top: 10px;
  width: 100%;
  padding: 17px;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
}

.form-note {
  font-size: 0.8rem;
  color: var(--grey-mid);
  text-align: center;
  margin-top: 14px;
}

.form-note i { color: var(--pink); margin-right: 4px; }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success i {
  font-size: 3.5rem;
  color: var(--pink);
  margin-bottom: 20px;
}

.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--grey-mid); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero h1 { font-size: 3rem; }
  .about-grid { gap: 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-float { right: -15px; width: 170px; height: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-box { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  /* Maya founder section */
  .maya-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2.3rem; }
  .hero-stats { gap: 28px; }
  .section-title { font-size: 1.8rem; }
  .cta-content h2 { font-size: 2rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-box { padding: 36px 28px; }
}

@media (max-width: 580px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .section { padding: 72px 0; }
  .cta-section { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 18px; }
}

/* ===== FOUNDER SECTION ===== */
.founder-section { padding-top: 170px !important; }

/* ===== RESPONSIVE GRID CLASSES ===== */
.photo-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.photo-grid-2 { grid-template-columns: 1fr 1fr; max-width: 760px; margin-left: auto; margin-right: auto; }
.building-grid-4 { grid-template-columns: repeat(4, 1fr); max-width: 960px; margin-left: auto; margin-right: auto; }

/* ===== MOBILE HERO IMAGE ===== */
/* Desktop: hidden — CSS background handles the hero */
.hero-mobile-img { display: none; }

/* ===== MOBILE STYLES (≤ 768px) ===== */
@media (max-width: 768px) {

  /* ----- Navigation ----- */
  .nav-inner { height: 64px; }
  .nav-logo img {
    height: 48px !important;
    margin-top: 0 !important;
    width: auto !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .nav-phone { display: none !important; }
  .nav-links { display: none !important; }
  .nav-right .btn { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-menu { top: 64px; }

  /* ----- Hero: show real image so all three women are visible ----- */
  .hero { min-height: unset; display: block; }
  .hero-bg { display: none; }
  .hero-overlay { display: none; }
  .hero-mobile-img {
    display: block;
    width: 100%;
    height: auto;          /* natural aspect ratio — no crop */
    margin-top: 64px;      /* clear fixed nav */
  }

  /* ----- Hero content section (index.html text + stats) ----- */
  .hero-content-section { padding: 40px 0 !important; }
  .hero-content-section h1 { font-size: 2rem !important; }
  .hero-stats { gap: 24px; padding-top: 24px; flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; text-align: center; }

  /* ----- Section spacing ----- */
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }

  /* ----- Typography ----- */
  .section-title { font-size: 1.9rem; }
  .cta-content h2 { font-size: 1.9rem; }

  /* ----- About page: founder section ----- */
  .founder-section { padding-top: 100px !important; }
  .founder-section .section-title { font-size: 2rem !important; }

  /* ----- Inner page hero header ----- */
  .page-hero { padding: 110px 0 52px; }
  .page-hero h1 { font-size: 2rem; }

  /* ----- Photo grids: 3-col → 2-col ----- */
  .photo-grid-3 { grid-template-columns: 1fr 1fr !important; }

  /* ----- Building types grid: 4-col → 2-col ----- */
  .building-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }

  /* ----- Services detail cards: single column ----- */
  .services-detail-grid { grid-template-columns: 1fr !important; }

  /* ----- Contact form ----- */
  .contact-form-box { padding: 36px 24px; }
  .contact-info-box { padding: 36px 28px; }

  /* ----- Footer ----- */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SMALL PHONE STYLES (≤ 480px) ===== */
@media (max-width: 480px) {

  /* ----- Navigation ----- */
  .nav-inner { height: 58px; }
  .nav-logo img { height: 42px !important; }
  .mobile-menu { top: 58px; }

  /* ----- Hero image: still full-width, no change needed ----- */
  .hero-mobile-img { margin-top: 58px; }

  /* ----- Hero content section ----- */
  .hero-content-section { padding: 32px 0 !important; }
  .hero-content-section h1 { font-size: 1.75rem !important; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .stat-item { flex: unset; display: flex; align-items: center; gap: 14px; text-align: left; }
  .stat-num { margin-bottom: 0; font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }

  /* ----- Section spacing ----- */
  .section { padding: 56px 0; }
  .cta-section { padding: 64px 0; }
  .container { padding: 0 16px; }

  /* ----- Typography ----- */
  .section-title { font-size: 1.65rem; }
  .cta-content h2 { font-size: 1.65rem; }
  .section-subtitle { font-size: 0.97rem; }

  /* ----- About founder section ----- */
  .founder-section { padding-top: 82px !important; }
  .founder-section .section-title { font-size: 1.75rem !important; }

  /* ----- Inner page hero ----- */
  .page-hero { padding: 88px 0 44px; }
  .page-hero h1 { font-size: 1.75rem !important; }

  /* ----- Photo grids: 3-col → 1-col on tiny screens ----- */
  .photo-grid-3 { grid-template-columns: 1fr !important; }
  .photo-grid-2 { grid-template-columns: 1fr !important; max-width: 100% !important; }

  /* ----- Building types: keep 2-col (readable) ----- */
  .building-grid-4 { grid-template-columns: 1fr 1fr !important; }

  /* ----- Contact form ----- */
  .contact-form-box { padding: 28px 16px; }
  .contact-info-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* ----- CTA buttons stack ----- */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; text-align: center; }

  /* ----- Gallery ----- */
  .gallery-grid { grid-template-columns: 1fr; }

  /* ----- Trust bar ----- */
  .trust-items { gap: 16px; flex-direction: column; align-items: flex-start; padding: 0 8px; }

  /* ----- Footer ----- */
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* ----- Why grid & clients: already 1-col at 768px ----- */
  .why-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }

  /* ----- Area pills: smaller padding ----- */
  .area-pill { padding: 10px 18px; font-size: 0.85rem; }

}
