/* ===== CSS VARIABLES ===== */
:root {
  --primary: #063231;
  --primary-light: #0a4a49;
  --accent: #5a2dbb;
  --accent-light: #7b4ee0;
  --accent-soft: rgba(90,45,187,0.1);
  --lime: #cbff54;
  --white: #ffffff;
  --off-white: #f6f7f7;
  --text-muted: #495b55;
  --border: #e0e7e3;
  --dark-green: #033231;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(6,50,49,0.08);
  --shadow-lg: 0 8px 40px rgba(6,50,49,0.14);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--primary);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== PAGE SYSTEM ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--primary);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 340px;
  border-left: 4px solid var(--lime);
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left-color: var(--lime); }
.toast.error { border-left-color: #ef4444; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(6,50,49,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mandala-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.mandala-logo:hover { opacity: 0.9; }
.logo-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  box-shadow: none;
}
.mandala-logo:hover .logo-icon { transform: rotate(-10deg); }
.logo-icon svg { width: 36px; height: 36px; }
.logo-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.logo-text-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1;
}
.logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: #8ed300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: none;
  font-family: inherit;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--lime); }
.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 40px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  transition: all 0.2s !important;
  margin-left: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 601;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 600;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { 
  display: flex !important; 
  opacity: 1;
}
.mobile-nav-link {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 12px 32px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: center;
  font-family: 'Sora', sans-serif;
}
.mobile-nav-link:hover { color: white; background: rgba(255,255,255,0.05); }
.mobile-nav-link.active { color: var(--lime); }
.mobile-nav-cta {
  margin-top: 16px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== COMMON COMPONENTS ===== */
.section { padding: 96px 48px; max-width: 1240px; margin: 0 auto; }
.section-sm { padding: 64px 48px; max-width: 1240px; margin: 0 auto; }
.section-full { padding: 96px 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.section-title.white { color: white; }
.section-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--accent); border-color: white; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 12px; }

/* Cards */
.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(6,50,49,0.55) 0%, rgba(3,34,33,0.82) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px;
  padding: 0 24px;
  padding-top: 80px;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 40px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  color: white;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--lime); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  cursor: pointer;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }
.hero-scroll svg { width: 20px; height: 20px; fill: none; stroke: rgba(255,255,255,0.4); stroke-width: 2; }
.hero-curve { position: absolute; bottom: -1px; left: 0; right: 0; pointer-events: none; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: white;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow);
}
.trust-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--off-white); }
.trust-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.trust-item:hover .trust-icon { background: var(--accent); transform: scale(1.05); }
.trust-icon svg { fill: var(--lime); width: 22px; height: 22px; }
.trust-item h5 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.trust-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { position: relative; }
.about-img-main {
  width: 100%; height: 400px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 180px; height: 150px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
}
.about-badge .big { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 44px; color: white; line-height: 1; }
.about-badge .small { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.check-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--primary);
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 12px; height: 12px; fill: none; stroke: var(--primary); stroke-width: 2.5; }

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--primary); padding: 96px 0; }
.services-header {
  max-width: 1240px; margin: 0 auto 56px;
  padding: 0 48px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.services-header .section-label { color: var(--lime); }
.services-header p { color: rgba(255,255,255,0.55); font-size: 15px; max-width: 300px; text-align: right; line-height: 1.65; }
.services-grid { max-width: 1240px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.28s;
  cursor: pointer;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.svc-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,34,33,0.92) 0%, rgba(6,50,49,0.6) 100%);
  transition: all 0.28s;
  z-index: 0;
}
.svc-card > * { position: relative; z-index: 1; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.svc-card:hover::after { background: linear-gradient(to top, rgba(3,34,33,0.88) 0%, rgba(6,50,49,0.5) 100%); }
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  z-index: 2;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(203,255,84,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon svg { fill: var(--lime); width: 26px; height: 26px; }
.svc-card h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 22px; color: white; margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }
.svc-link { color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.svc-link:hover { gap: 10px; }

/* ===== PROJECTS SECTION ===== */
.projects-section { background: var(--off-white); padding: 96px 0; }
.projects-header { max-width: 1240px; margin: 0 auto 56px; padding: 0 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.projects-grid { max-width: 1240px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.proj-card {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.28s;
}
.proj-card:hover { transform: scale(1.01); box-shadow: var(--shadow-lg); }
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,50,49,0.92) 0%, rgba(3,50,49,0.1) 60%);
  display: flex; align-items: flex-end;
  padding: 28px;
  transition: all 0.28s;
}
.proj-card:hover .proj-overlay { background: linear-gradient(to top, rgba(3,50,49,0.88) 0%, rgba(3,50,49,0.2) 60%); }
.proj-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.proj-info h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; color: white; margin-bottom: 4px; }
.proj-info span { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--accent); padding: 80px 48px; text-align: center; }
.cta-banner h3 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 52px); color: white; margin-bottom: 14px; letter-spacing: -1.5px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 96px 0; background: white; }
.testimonials-header { max-width: 1240px; margin: 0 auto 56px; padding: 0 48px; }
.testimonials-grid { max-width: 1240px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--off-white); border-radius: 16px; padding: 32px; border: 1px solid var(--border); transition: all 0.25s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { width: 16px; height: 16px; fill: #f59e0b; }
.testi-type { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.testi-quote { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
  font-family: 'Sora', sans-serif;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--primary); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--dark-green); padding: 80px 48px; }
.stats-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.stats-left .section-label { color: var(--lime); }
.stats-left .section-title { color: white; margin-bottom: 16px; }
.stats-left .section-body { color: rgba(255,255,255,0.5); }
.stats-numbers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.stat-item { padding-left: 24px; border-left: 3px solid var(--accent); }
.stat-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 48px; color: var(--lime); line-height: 1; }
.stat-div { width: 28px; height: 2px; background: rgba(255,255,255,0.15); margin: 10px 0; }
.stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.stat-desc { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 4px; }

/* ===== LOGOS ===== */
.logos-strip { background: #021e1e; padding: 44px 48px; display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.logo-partner { color: rgba(255,255,255,0.22); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; cursor: default; }
.logo-partner:hover { color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
footer { background: #020c0c; padding: 80px 48px 36px; }
.footer-wrap { max-width: 1240px; margin: 0 auto; }
.footer-cta {
  background: var(--primary);
  border-radius: 20px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.footer-cta h3 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 32px; color: white; margin-bottom: 12px; letter-spacing: -1px; }
.footer-cta p { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.65; }
.footer-cta-right p { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 20px; line-height: 1.65; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.3); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.7; margin: 18px 0 22px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); }
.social-btn svg { fill: rgba(255,255,255,0.55); width: 15px; height: 15px; transition: fill 0.2s; }
.social-btn:hover svg { fill: white; }
.footer-col h6 { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-nav-link {
  color: rgba(255,255,255,0.55); font-size: 14px;
  transition: color 0.2s; cursor: pointer;
  background: none; border: none; font-family: inherit;
  text-align: left; display: block; width: 100%;
  padding: 0;
}
.footer-col a:hover, .footer-nav-link:hover { color: var(--lime); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-row svg { fill: var(--accent); width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-row span { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.footer-bottom { max-width: 1240px; margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.45); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--primary);
  padding: 140px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1200&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .section-label { color: var(--lime); display: block; margin-bottom: 12px; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 64px); color: white; letter-spacing: -2px; margin-bottom: 16px; line-height: 1.1; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.4); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--lime); }
.breadcrumb .bc-link { color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.2s; }
.breadcrumb .bc-link:hover { color: white; }

/* ===== ABOUT PAGE ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { border-radius: 16px; overflow: hidden; background: white; border: 1px solid var(--border); transition: all 0.25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-photo { width: 100%; height: 220px; object-fit: cover; background: var(--border); }
.team-photo-placeholder { width: 100%; height: 220px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; }
.team-photo-placeholder span { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 40px; color: rgba(255,255,255,0.3); }
.team-info { padding: 20px; }
.team-info h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; color: var(--primary); margin-bottom: 4px; }
.team-info p { font-size: 13px; color: var(--accent); font-weight: 600; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: white; border-radius: 16px; padding: 36px 28px; border: 1px solid var(--border); text-align: center; transition: all 0.25s; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.value-card h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== SERVICES PAGE ===== */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.svc-detail-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.25s; }
.svc-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,50,49,0.8) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 20px; }
.svc-img-tag { background: var(--accent); color: white; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.svc-detail-body { padding: 28px; }
.svc-detail-body h3 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 22px; color: var(--primary); margin-bottom: 10px; }
.svc-detail-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.svc-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.svc-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--primary); }
.svc-feature svg { fill: none; stroke: var(--accent); stroke-width: 2.5; width: 16px; height: 16px; flex-shrink: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 32px 20px; background: white; border-radius: 16px; border: 1px solid var(--border); position: relative; }
.process-step::after { content: '→'; position: absolute; right: -18px; top: 50%; transform: translateY(-50%); color: var(--border); font-size: 24px; font-weight: 300; }
.process-step:last-child::after { display: none; }
.step-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 48px; color: var(--off-white); margin-bottom: 12px; }
.process-step h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ===== PROJECTS PAGE ===== */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.projects-all-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proj-all-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.25s;
  cursor: pointer;
}
.proj-all-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.proj-all-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.proj-all-body { padding: 20px; }
.proj-all-body h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; color: var(--primary); margin-bottom: 6px; }
.proj-all-body p { font-size: 13px; color: var(--text-muted); }
.proj-all-body .proj-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.proj-all-body .proj-type { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); }
.proj-all-body .proj-year { font-size: 12px; color: var(--text-muted); }
.proj-all-card.hidden { display: none; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info h3 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 32px; color: var(--primary); margin-bottom: 16px; letter-spacing: -1px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: white; border-radius: 14px; border: 1px solid var(--border); margin-bottom: 12px; transition: all 0.2s; }
.contact-detail:hover { border-color: var(--accent); }
.contact-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { fill: var(--lime); width: 20px; height: 20px; }
.contact-detail h5 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--primary); font-weight: 500; margin: 0; }
.contact-form-box { background: white; border-radius: 20px; padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form-box[id] { scroll-margin-top: 120px; }
.contact-form-box h3 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 26px; color: var(--primary); margin-bottom: 8px; letter-spacing: -0.5px; }
.contact-form-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--primary);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(90,45,187,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-required { color: var(--accent); }
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.submit-btn:hover { background: var(--accent-light); transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }
.submit-btn.loading { opacity: 0.75; cursor: wait; }
.faq-item { background: white; border-radius: 12px; border: 1px solid var(--border); margin-bottom: 12px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--primary); transition: background 0.2s; gap: 16px; }
.faq-q:hover { background: var(--off-white); }
.faq-q svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 2; flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ===== BLOG PAGE ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.25s; cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; background-size: cover; background-position: center; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: white; background: var(--accent); padding: 4px 10px; border-radius: 20px; }
.blog-date { font-size: 12px; color: var(--text-muted); }
.blog-body h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--primary); margin-bottom: 10px; line-height: 1.3; }
.blog-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-read { font-size: 13px; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; }

/* ===== ENQUIRY MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(3,34,33,0.7);
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 640px;
  width: 100%;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: all 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.modal-close svg { width: 16px; height: 16px; fill: none; stroke: var(--primary); stroke-width: 2; }
.modal-box h3 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 26px; color: var(--primary); margin-bottom: 6px; letter-spacing: -0.5px; }
.modal-box .modal-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
/* ===== REFACTORED UTILITIES ===== */
.logo-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.footer-brand .mandala-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.mandala-logo:hover { opacity: 0.9; }
.logo-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  box-shadow: none;
}
.mandala-logo:hover .logo-icon { transform: rotate(-10deg); }
.logo-icon svg { width: 36px; height: 36px; }
.logo-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.logo-text-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1;
}
.logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: #8ed300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 8px;
}


/* ===== PROJECT CARD IMAGES ===== */
.proj-all-img--villa { background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=600&q=80'); }
.proj-all-img--tower { background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=600&q=80'); }
.proj-all-img--bungalow { background-image: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=600&q=80'); }
.proj-all-img--midc { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=600&q=80'); }
.proj-all-img--family { background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=600&q=80'); }
.proj-all-img--penthouse { background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=600&q=80'); }
.proj-all-img--retail { background-image: url('https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?w=600&q=80'); }
.proj-all-img--restaurant { background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=600&q=80'); }
.proj-all-img--apartment { background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=600&q=80'); }

/* ===== BLOG CARD IMAGES ===== */
.blog-img { height: 200px; background-size: cover; background-position: center; border-radius: 12px 12px 0 0; }
.blog-img--construction { background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=600&q=80'); }
.blog-img--interior { background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=600&q=80'); }
.blog-img--renovation { background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=600&q=80'); }
.blog-img--vastu { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=600&q=80'); }
.blog-img--materials { background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?w=600&q=80'); }
.blog-img--commercial { background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=600&q=80'); }

/* ===== SERVICE CARD IMAGES ===== */
.svc-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.svc-img--residential { background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=600&q=80'); }
.svc-img--commercial { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=600&q=80'); }
.svc-img--renovation { background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=600&q=80'); }
.svc-img--interior { background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=600&q=80'); }
