/* ============================================
   BAGGA ARCHITECTS — Global Stylesheet
   Sukoon Ek Aashiana | Bareilly
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;700&display=swap');

/* === TOKENS === */
:root {
  --ink:       #1a1a18;
  --warm:      #f7f4ef;
  --gold:      #b8933f;
  --gold-lt:   #e8d5a3;
  --muted:     #6b6860;
  --border:    #e0dbd2;
  --white:     #ffffff;
  --hero-bg:   #0f0e0c;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --ui:      'Space Grotesk', system-ui, sans-serif;

  --max: 1120px;
  --section-pad: 80px 24px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--warm);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,14,12,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,147,63,0.25);
  padding: 0 24px;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
}
.nav__brand-sub {
  font-family: var(--ui);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__cta {
  font-family: var(--ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  padding: 9px 20px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav__cta:hover { background: #a07c30; }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: 0.3s;
}

/* === HERO — GLOBAL === */
.hero {
  background: var(--hero-bg);
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Image/project1.jpeg') center/cover no-repeat;
  opacity: 0.22;
}
.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero__body {
  font-family: var(--body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #a07c30; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui);
  font-size: 0.88rem;
  font-weight: 600;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(184,147,63,0.08); }

/* === TRUST BAR === */
.trust-bar {
  background: var(--ink);
  padding: 18px 24px;
  border-bottom: 1px solid rgba(184,147,63,0.2);
}
.trust-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar__item {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-bar__item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}

/* === SECTIONS === */
.section {
  padding: var(--section-pad);
}
.section--alt { background: var(--white); }
.section--dark { background: var(--ink); color: var(--white); }
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section__label {
  font-family: var(--ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section__title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section--dark .section__title { color: var(--white); }
.section__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.section--dark .section__lead { color: rgba(255,255,255,0.6); }

/* === GRID LAYOUTS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* === CARD COMPONENTS === */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.card__img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
}
.card__body { padding: 20px; }
.card__label {
  font-family: var(--ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.card__title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.card__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === SERVICE CARD === */
.svc-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--warm);
  transition: border-color 0.2s, background 0.2s;
}
.svc-card:hover {
  border-color: var(--gold);
  background: var(--white);
}
.svc-card__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.svc-card__title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.svc-card__text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === STAT ROW === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 48px 0;
}
.stat {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
}
.stat__num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-family: var(--ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === FAQ === */
.faq-list { list-style: none; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 22px;
}

/* === ABOUT SPLIT === */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split__img {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.cred-list {
  list-style: none;
  margin-top: 24px;
}
.cred-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}
.cred-list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* === CONTACT SECTION === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(184,147,63,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item__label {
  font-family: var(--ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item__val {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--white);
}
.contact-item__val a { color: var(--white); }
.contact-item__val a:hover { color: var(--gold-lt); }
.map-embed {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-embed iframe { width: 100%; height: 280px; border: none; display: block; }

/* === FOOTER === */
.footer {
  background: #0a0908;
  border-top: 1px solid rgba(184,147,63,0.2);
  padding: 40px 24px 24px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--gold-lt);
}
.footer__links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer__links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy { margin-top: 20px; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }

/* === BREADCRUMB === */
.breadcrumb {
  background: var(--ink);
  padding: 10px 24px;
  border-bottom: 1px solid rgba(184,147,63,0.12);
}
.breadcrumb__inner {
  max-width: var(--max);
  margin: 0 auto;
  font-family: var(--ui);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.breadcrumb__inner a { color: rgba(255,255,255,0.4); }
.breadcrumb__inner a:hover { color: var(--gold); }
.breadcrumb__inner span { color: rgba(255,255,255,0.7); }

/* === FLOATING WHATSAPP === */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  :root { --section-pad: 56px 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 420px; padding: 60px 16px; }
  .hero__actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .nav__cta { display: none; }
  .trust-bar__inner { gap: 16px; }
}

/* === MOBILE NAV OPEN STATE === */
.nav.open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: rgba(15,14,12,0.98);
  padding: 20px 24px 28px;
  gap: 16px;
  border-bottom: 1px solid rgba(184,147,63,0.2);
}
.nav.open .nav__links a { font-size: 1rem; }

/* === UTILITY === */
.gold { color: var(--gold); }
.italic { font-style: italic; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 20px 0 32px;
}
