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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #1C1C1E;
  --charcoal-mid: #2A2A2D;
  --warm-white: #F8F5F0;
  --off-white: #EDE9E3;
  --gold: #C9A84C;
  --gold-light: #E2C97A;
  --gold-dark: #A07830;
  --steel: #3A5F7D;
  --steel-light: #5580A0;
  --concrete: #8A8880;
  --concrete-light: #BCBAB6;
  --text-dark: #1C1C1E;
  --text-mid: #4A4A4C;
  --text-light: #8A8880;
  --error: #C0392B;
  --success: #27AE60;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; }
.display { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; letter-spacing: -0.02em; }
.eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal); }
.section-title span { color: var(--gold); }




/* ── NAV ── */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4vw;
  background: transparent;
  transition: all 0.4s ease;
}
/*.nav-wrapper.scrolled nav {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 4vw;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}*/

.nav-wrapper.scrolled nav {
    /*background: rgba(13,27,42,0.75);
    backdrop-filter: blur(16px);*/
    -webkit-backdrop-filter: blur(16px);
    padding: 0.3rem 4vw;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
}

.nav-logo-mark {
    background: transparent;
    clip-path: none;
}

/*.nav-logo-mark {
  width: 42px; height: 42px; background: var(--gold);
   align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}*/
.nav-logo-mark span { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; font-weight: 700; color: var(--charcoal); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-family:'Cormorant Garamond',serif; font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; line-height: 1; }
.nav-logo-text .tagline { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; font-family:'Montserrat',sans-serif; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; font-family:'Montserrat',sans-serif; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform:scaleX(1); }
.nav-cta { background: var(--gold); color: var(--charcoal) !important; padding: 0.5rem 1.5rem; font-weight: 700 !important; transition: background 0.3s !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display:none !important; }
/*.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { width:26px; height:2px; background:#fff; transition:all 0.3s; }*/

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: rgba(153, 187, 196, 0.4);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 7px 7px;
    border-radius: 10px;
}

    .hamburger span {
        width: 22px;
        height: 2px;
        background: #fff;
        transition: all 0.3s;
    }
/* ── HERO ── */
.hero {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  background: #060E18;
  overflow: hidden;
}
.hero::before { display: none; }
.hero::after  { display: none; }

/* Canvas fills hero exactly */
#heroCanvas {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  z-index: 0 !important;
  display: block !important;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
/* Diagonal stripes — construction blueprint feel */
.hero-bg-stripes {
  position: absolute; inset: 0; z-index: 1; opacity: 0.03;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,1) 40px,
    rgba(201,168,76,1) 41px
  );
}
@keyframes gridShift { 0%{background-position:0 0;} 100%{background-position:60px 60px;} }
.hero-accent-line {
  position: absolute; top: 0; right: 20%; width: 1px; height: 100%; z-index: 1;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,0.5) 40%, rgba(201,168,76,0.2) 70%, transparent 100%);
}
.hero-accent-line-2 {
  position: absolute; top: 0; right: 45%; width: 1px; height: 65%; z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(58,95,125,0.5), transparent);
}
/* Glowing orb top-right */
.hero-orb {
  position: absolute; top: -120px; right: -80px; z-index: 1;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 18vh 4vw 4rem;
  max-width: 900px;
  flex: 1;
}
.hero-eyebrow { margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow .eyebrow { color: var(--gold); }
.hero-eyebrow-line { flex: 0 0 60px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title { color: #fff; margin-bottom: 1.5rem; }
.hero-title .accent { color: var(--gold); display: block; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 560px; margin-bottom: 3rem; font-weight: 300; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* Hero stats bar — rich treatment */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 0; flex-wrap: wrap;
  background: rgba(4,10,18,0.92);
  border-top: 1px solid rgba(201,168,76,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat-item {
  text-align: center;
  flex: 1; min-width: 120px;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(201,168,76,0.12);
  position: relative;
  transition: background 0.3s;
}
.stat-item:hover { background: rgba(201,168,76,0.06); }
.stat-item:last-child { border-right: none; }
/* Gold top accent on hover */
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-num { font-family:'Cormorant Garamond',serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-family:'Montserrat',sans-serif; margin-top: 0.4rem; }

.scroll-indicator {
  position: absolute; left: 4vw; bottom: 110px; z-index: 2;
  display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.35);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-family:'Montserrat',sans-serif;
}
.scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.25); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--gold); color: var(--charcoal);
  padding: 0.9rem 2.2rem; text-decoration: none;
  font-family:'Montserrat',sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: #fff;
  padding: 0.9rem 2.2rem; text-decoration: none;
  font-family:'Montserrat',sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35); transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--charcoal); color: #fff;
  padding: 0.9rem 2.2rem; text-decoration: none;
  font-family:'Montserrat',sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn-dark:hover { background: var(--charcoal-mid); }
.arrow-icon { font-size: 1rem; transition: transform 0.3s; }
.btn-primary:hover .arrow-icon, .btn-dark:hover .arrow-icon { transform: translateX(4px); }

/* ── SECTIONS ── */
.section { padding: 7rem 4vw; }
.section-header { margin-bottom: 4rem; }
.section-header .eyebrow { margin-bottom: 1rem; }
.section-divider { width: 60px; height: 2px; background: var(--gold); margin-top: 1.5rem; }

/* ── ABOUT STRIP ── */
.about-strip {
  padding: 6rem 4vw;
  display: flex; gap: 4rem; align-items: center; flex-wrap: wrap;
  background: linear-gradient(135deg, #1A2535 0%, #243446 40%, #1E3A52 70%, #162233 100%);
  position: relative; overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 50%, rgba(201,168,76,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 20%, rgba(58,95,125,0.15) 0%, transparent 45%);
  pointer-events: none;
}
/* Subtle blueprint grid */
.about-strip::after {
  content: '';
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.about-text { flex: 1; min-width: 300px; position: relative; z-index: 1; }
.about-text .section-title { color: #fff; margin-bottom: 1.5rem; }
.about-text p { color: rgba(255,255,255,0.58); line-height: 1.9; margin-bottom: 1rem; font-weight: 300; }
.about-pillars { flex: 0 0 340px; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,76,0.15); }
.pillar {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  padding: 2rem 1.5rem;
  transition: background 0.3s;
}
.pillar:hover { background: rgba(201,168,76,0.07); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.pillar h4 { font-family:'Montserrat',sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.8rem; color: rgba(255,255,255,0.48); line-height: 1.6; }

/* ── PROJECTS ── */
.projects-section { background: var(--warm-white); }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.4rem; background: transparent; border: 1px solid var(--concrete-light);
  font-family:'Montserrat',sans-serif; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-mid); cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--charcoal); color: var(--gold); border-color: var(--charcoal); }
.projects-grid { display: flex; flex-wrap: wrap; gap: 2px; }
.project-card-wrap { flex: 1 1 360px; min-width: 300px; max-width: calc(50% - 1px); }
@media (max-width: 800px) { .project-card-wrap { max-width: 100%; } }
.project-card {
  position: relative; overflow: hidden; background: var(--charcoal);
  cursor: pointer; transition: transform 0.4s;
  aspect-ratio: 4/3;
}
.project-card:hover { transform: scale(0.99); }
.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-img-bg { transform: scale(1.08); }
.project-img-bg {
  position: absolute; inset: 0; transition: transform 0.6s ease;
  background-size: cover; background-position: center;
}
.project-residential .project-img-bg { background: linear-gradient(135deg, #1B3A5C 0%, #2E6B9E 50%, #1A5276 100%); }
.project-commercial .project-img-bg { background: linear-gradient(135deg, #1A1A2E 0%, #2C3E6F 50%, #1A237E 100%); }
.project-township .project-img-bg { background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%); }
.project-villa .project-img-bg { background: linear-gradient(135deg, #4A2500 0%, #7B3F00 50%, #A0522D 100%); }
.project-infra .project-img-bg { background: linear-gradient(135deg, #1C2833 0%, #2E4057 50%, #415A77 100%); }
.project-industrial .project-img-bg { background: linear-gradient(135deg, #1A0533 0%, #3D1A6E 50%, #512DA8 100%); }
.project-signature .project-img-bg { background: linear-gradient(135deg, #3D1C02 0%, #7D4800 50%, #C9A84C 100%); }
.project-mall .project-img-bg { background: linear-gradient(135deg, #0A192F 0%, #172A45 50%, #1F3A5F 100%); }
.project-decorative {
  position: absolute; inset: 0; opacity: 0.12;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.06) 20px, rgba(255,255,255,0.06) 21px);
}
/* Shimmer line on each card */
.project-card::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transition: left 0.6s ease;
  z-index: 3; pointer-events: none;
}
.project-card:hover::after { left: 150%; }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.97) 0%, rgba(13,27,42,0.7) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
}
.project-meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(13,27,42,0.97), transparent); }
.project-cat { font-family:'Montserrat',sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.4rem; }
.project-name { font-family:'Cormorant Garamond',serif; font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1.2; }
.project-status { display: inline-block; padding: 0.2rem 0.7rem; font-size: 0.65rem; font-family:'Montserrat',sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }
.status-completed { background: rgba(39,174,96,0.2); color: #5DBF7E; border: 1px solid rgba(39,174,96,0.3); }
.status-ongoing { background: rgba(201,168,76,0.2); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.project-detail-overlay { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1rem; }
.project-detail-meta { display: flex; gap: 2rem; margin-bottom: 1.5rem; }
.detail-meta-item label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--concrete); font-family:'Montserrat',sans-serif; display: block; }
.detail-meta-item span { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

/* ── PROCESS ── */
.process-section {
  background: linear-gradient(180deg, #F0EBE3 0%, #EDE6DC 50%, #E8E0D5 100%);
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.4;
  background-image:
    linear-gradient(var(--concrete-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--concrete-light) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.process-track { display: flex; gap: 0; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 1rem; position: relative; z-index: 1; }
.process-step {
  flex: 1; min-width: 200px; padding: 2.5rem 2rem;
  border-left: 1px solid rgba(138,136,128,0.3); position: relative;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.process-step:hover { background: rgba(255,255,255,0.7); }
.process-step:first-child { border-left: none; }
.process-step-num { font-family:'Cormorant Garamond',serif; font-size: 4rem; font-weight: 700; -webkit-text-stroke: 1px rgba(138,136,128,0.4); color: transparent; line-height: 1; margin-bottom: 1rem; }
.process-step h4 { font-family:'Montserrat',sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--charcoal); margin-bottom: 0.75rem; }
.process-step p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
.process-connector { position: absolute; top: 2.5rem; right: -1px; width: 2px; height: 2rem; background: var(--gold); }

/* ── ENQUIRY FORM ── */
.enquiry-section {
  background: linear-gradient(135deg, #0D1B2A 0%, #162536 30%, #1A3247 55%, #0F2030 100%);
  position: relative; overflow: hidden;
}
.enquiry-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 5% 50%, rgba(58,95,125,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 20%, rgba(201,168,76,0.1) 0%, transparent 45%);
  pointer-events: none;
}
.enquiry-section::after {
  content: '';
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.enquiry-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
.enquiry-info .section-title { color: #fff; }
.enquiry-info p { color: rgba(255,255,255,0.55); line-height: 1.9; margin: 1.5rem 0 2rem; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-label { font-family:'Montserrat',sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); display: block; margin-bottom: 0.25rem; }
.contact-val { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 2.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0; }
.form-group label { font-family:'Montserrat',sans-serif; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--concrete); }
.form-group label span.req { color: var(--gold); }
.form-control {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; padding: 0.85rem 1rem;
  font-family:'Inter',sans-serif; font-size: 0.9rem;
  transition: all 0.3s; outline: none; width: 100%;
}
.form-control:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-control::placeholder { color: rgba(255,255,255,0.22); }
.form-control option { background: #162536; color: #fff; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit-row { margin-top: 1.5rem; }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 0.75rem; }
.validation-error { color: #E07070; font-size: 0.75rem; font-family:'Montserrat',sans-serif; }
.success-banner { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); padding: 1.2rem 1.5rem; color: #5DBF7E; font-size: 0.9rem; margin-bottom: 1.5rem; }
.error-banner { background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.3); padding: 1.2rem 1.5rem; color: #E07070; font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, #080E15 0%, #0B1420 100%);
  padding: 0rem 1vw 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);

}
/*.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
*/
.footer-grid {
    display: grid;

}
.footer-brand p {
    color: rgba(255,255,255,0.38);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-top: 1.2rem;
    font-weight: 300;
    max-width: 480px;
}
/*.footer-brand p { color: rgba(255,255,255,0.38); font-size: 0.85rem; line-height: 1.8; margin-top: 1.2rem; font-weight: 300; }*/
.footer-col h5 { font-family:'Montserrat',sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul li {
        color: rgba(255,255,255,0.4);
        font-size: 0.85rem;
        list-style: none;
    }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.05); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: rgba(255,255,255,0.22); font-size: 0.78rem; }
.footer-rera { color: rgba(255,255,255,0.22); font-size: 0.72rem; font-family:'Montserrat',sans-serif; }

/* ── AUTH PAGES ── */
.auth-page { min-height: 100vh; display: flex; background: var(--charcoal); }
.auth-left {
  flex: 1;
  background: linear-gradient(145deg, #0D1B2A 0%, #1A2F45 40%, #243B55 70%, #162233 100%);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 3rem; position: relative; overflow: hidden;
}
.auth-left-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.auth-left-content { position: relative; z-index: 1; text-align: center; }
.auth-left-content .display { color: #fff; font-size: 3rem; }
.auth-left-content .display span { color: var(--gold); display: block; }
.auth-left-content p { color: rgba(255,255,255,0.5); margin-top: 1rem; line-height: 1.8; }
.auth-right { flex: 0 0 480px; display: flex; align-items: center; justify-content: center; padding: 3rem; background: var(--warm-white); }
.auth-form-box { width: 100%; }
.auth-form-box h2 { font-size: 2rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.auth-form-box p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 2rem; }
.auth-form-group { margin-bottom: 1.2rem; }
.auth-form-group label { display: block; font-family:'Montserrat',sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mid); margin-bottom: 0.5rem; }
.auth-input {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--off-white); border: 1px solid var(--concrete-light);
  color: var(--text-dark); font-family:'Inter',sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.3s;
}
.auth-input:focus { border-color: var(--gold); background: #fff; }
.auth-btn { width: 100%; padding: 1rem; background: linear-gradient(135deg, #1A2F45, #243B55); color: #fff; border: none; cursor: pointer; font-family:'Montserrat',sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; transition: all 0.3s; }
.auth-btn:hover { background: linear-gradient(135deg, #243B55, #2E4F6F); box-shadow: 0 4px 16px rgba(13,27,42,0.3); }
.auth-error { background: rgba(192,57,43,0.08); border-left: 3px solid var(--error); padding: 0.8rem 1rem; font-size: 0.85rem; color: var(--error); margin-bottom: 1.5rem; }
.auth-link { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-mid); }
.auth-link a { color: var(--steel); font-weight: 600; text-decoration: none; }

/* ── ADMIN ── */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: linear-gradient(180deg, #0D1B2A 0%, #162536 50%, #0F1E2D 100%);
  flex-shrink: 0; display: flex; flex-direction: column;
  padding: 0; position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100;
  border-right: 1px solid rgba(201,168,76,0.1);
}
.sidebar-header { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-logo { font-family:'Cormorant Garamond',serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
.sidebar-logo span { color: var(--gold); }
.sidebar-sub { font-size: 0.65rem; color: var(--concrete); text-transform: uppercase; letter-spacing: 0.15em; font-family:'Montserrat',sans-serif; }
.sidebar-nav { padding: 1.5rem 0; flex: 1; }
.sidebar-section-label { font-family:'Montserrat',sans-serif; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.22); padding: 0.5rem 1.5rem; margin-top: 0.5rem; }
.sidebar-link {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; font-family:'Inter',sans-serif;
  transition: all 0.3s; border-left: 2px solid transparent;
}
.sidebar-link:hover { color: var(--gold); background: rgba(201,168,76,0.05); }
.sidebar-link.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.08); }
.sidebar-link .icon { font-size: 1rem; }
.sidebar-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.admin-main { margin-left: 260px; flex: 1; background: #F0EDE8; min-height: 100vh; }
.admin-topbar { background: #fff; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #E8E5E0; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.admin-topbar h1 { font-size: 1.5rem; color: var(--charcoal); }
.admin-user { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; color: var(--text-mid); }
.admin-avatar { width: 34px; height: 34px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: var(--charcoal); }
.admin-content { padding: 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: #fff; padding: 1.5rem; border-left: 3px solid var(--gold); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.stat-card h3 { font-family:'Montserrat',sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-light); margin-bottom: 0.5rem; }
.stat-card .num { font-family:'Cormorant Garamond',serif; font-size: 2.5rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.stat-card .trend { font-size: 0.75rem; color: var(--success); margin-top: 0.3rem; }
.admin-table-card { background: #fff; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.admin-table-card h2 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--off-white); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-family:'Montserrat',sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); padding: 0.75rem 1rem; border-bottom: 2px solid var(--off-white); }
.admin-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--off-white); font-size: 0.88rem; color: var(--text-mid); }
.admin-table tr:hover td { background: #FAF8F5; }
.badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.65rem; font-family:'Montserrat',sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-new { background: rgba(52,152,219,0.12); color: #3498DB; }
.badge-read { background: rgba(149,165,166,0.12); color: #95A5A6; }
.badge-completed { background: rgba(39,174,96,0.12); color: var(--success); }
.badge-ongoing { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.admin-action-btn { padding: 0.35rem 0.9rem; font-size: 0.75rem; font-family:'Montserrat',sans-serif; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.btn-view { background: var(--steel); color: #fff; }
.btn-view:hover { background: var(--steel-light); }
.btn-delete { background: rgba(192,57,43,0.1); color: var(--error); border: 1px solid rgba(192,57,43,0.2); }
.btn-delete:hover { background: var(--error); color: #fff; }
.empty-state { text-align: center; padding: 3rem; color: var(--text-light); }
.empty-state .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.modal-overlay.show { display: flex; }
.modal { background: #fff; max-width: 600px; width: 90%; max-height: 85vh; overflow-y: auto; }
.modal-header { padding: 1.5rem; background: linear-gradient(135deg, #0D1B2A, #1A2F45); display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { color: #fff; font-size: 1.2rem; }
.modal-close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.4rem; cursor: pointer; transition: color 0.2s; }
.modal-close:hover { color: var(--gold); }
.modal-body { padding: 2rem; }
.modal-field { margin-bottom: 1.2rem; }
.modal-field label { display: block; font-family:'Montserrat',sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); margin-bottom: 0.4rem; }
.modal-field p { font-size: 0.9rem; color: var(--text-dark); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .enquiry-layout { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,27,42,0.98); padding: 2rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-content { padding: 12vh 4vw 3rem; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(201,168,76,0.1); }
  .scroll-indicator { display: none; }
  .about-strip { flex-direction: column; }
  .projects-grid { display: flex; flex-direction: column; }
  .project-card-wrap { max-width: 100%; flex: 1 1 100%; }
  .process-track { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .auth-page { flex-direction: column; }
  .auth-left { min-height: 30vh; }
  .auth-right { flex: 1; }
  .admin-sidebar { transform: translateX(-260px); }
  .admin-main { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .fade-up { transition: none; } }

/* ── ADMIN SIDEBAR NAV OVERRIDE ── */
/* Prevent global nav{display:flex} from affecting sidebar */
.admin-sidebar nav,
.sidebar-nav {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  padding: 1.5rem 0;
  flex: 1;
}
.sidebar-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  width: 100% !important;
  padding: 0.75rem 1.5rem !important;
  white-space: nowrap;
}

/* Canvas hero — hide old CSS bg elements */
.hero-bg-grid,
.hero-accent-line,
.hero-accent-line-2,
.hero-bg-stripes,
.hero-orb { display: none !important; }

/* Ensure hero content sits above canvas */
.hero-content  { position: relative; z-index: 2; }
.hero-stats    { position: relative; z-index: 2; }
.scroll-indicator { z-index: 2; }

/* Strong dark overlay — full coverage so text is always readable */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(4, 10, 20, 0.72);
}

/* Text shadow for extra legibility */
.hero-title      { text-shadow: 0 2px 24px rgba(0,0,0,0.95), 0 1px 6px rgba(0,0,0,1); }
.hero-subtitle   { text-shadow: 0 1px 16px rgba(0,0,0,1), 0 0 8px rgba(0,0,0,1); }
.hero-eyebrow .eyebrow { text-shadow: 0 1px 8px rgba(0,0,0,1); }
.stat-num        { text-shadow: 0 2px 12px rgba(0,0,0,1); }
.stat-label      { text-shadow: 0 1px 8px rgba(0,0,0,1); }

/* Hero button contrast boost over canvas */
.hero .btn-outline {
  background: rgba(0,0,0,0.35) !important;
  border-color: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(4px);
}
.hero .btn-outline:hover {
  background: rgba(201,168,76,0.15) !important;
  border-color: var(--gold) !important;
}
.scroll-indicator {
  background: rgba(6,14,24,0.45);
  padding: 0.3rem 0.75rem;
  backdrop-filter: blur(4px);
}

/* ── HERO TEXT BACKDROP ── */
.hero-text-backdrop {
  position: relative;
  padding: 2.5rem 4rem 2.5rem 0;
  margin-left: -4vw;
  padding-left: 4vw;
  border-left: 3px solid rgba(201,168,76,0.6);
  /* Strong dark panel behind text */
  background: linear-gradient(
    to right,
    rgba(4,8,16,0.95) 0%,
    rgba(4,8,16,0.90) 50%,
    rgba(4,8,16,0.60) 75%,
    transparent 100%
  );
}

/* Hero text — forced white, max contrast */
.hero-title {
  color: #FFFFFF !important;
  text-shadow:
    0 2px 4px rgba(0,0,0,1),
    0 4px 16px rgba(0,0,0,0.9),
    0 0 40px rgba(0,0,0,0.8) !important;
  font-weight: 700 !important;
}
.hero-title .accent {
  color: #E8C76A !important;
  text-shadow:
    0 2px 4px rgba(0,0,0,1),
    0 4px 16px rgba(0,0,0,0.9) !important;
}
.hero-subtitle {
  color: rgba(255,255,255,0.92) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,1), 0 2px 16px rgba(0,0,0,0.8) !important;
  font-weight: 400 !important;
}
.hero-eyebrow .eyebrow {
  color: #E8C76A !important;
  text-shadow: 0 1px 6px rgba(0,0,0,1) !important;
  letter-spacing: 0.2em !important;
}
.hero-eyebrow-line { background: #E8C76A !important; opacity: 1 !important; }

/* ══════════════════════════════════════════════
   PROJECT CARD — CLEAN FINAL RULES
   uploaded image shows fully, gradient only at bottom
   ══════════════════════════════════════════════ */

/* Card container */
.project-card {
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer;
  transition: transform 0.4s;
  aspect-ratio: 4/3;
  background: var(--charcoal);
}
.project-card:hover { transform: scale(0.99); }

/* Uploaded <img> fills card completely — NO filter, NO overlay */
.project-card-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.6s ease !important;
  z-index: 0 !important;
  /* NO filter, NO brightness — show image as-is */
  filter: none !important;
}
.project-card:hover .project-card-img {
  transform: scale(1.06) !important;
  filter: brightness(0.55) !important;
}

/* CSS gradient bg (fallback when no image uploaded) */
.project-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.project-card:hover .project-img-bg { transform: scale(1.08); }

/* REMOVE all ::before / ::after overlays on project-card */
.project-card::before { display: none !important; content: none !important; }
.project-card::after  { display: none !important; content: none !important; }

/* Decorative pattern — subtle, sits above image */
.project-decorative {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(255,255,255,0.06) 20px, rgba(255,255,255,0.06) 21px
  );
  pointer-events: none;
}

/* Meta bar — gradient ONLY at bottom, behind title/status */
.project-meta {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 3 !important;
  padding: 1.5rem !important;
  background: linear-gradient(
    to top,
    rgba(4,10,20,0.96) 0%,
    rgba(4,10,20,0.75) 45%,
    transparent 100%
  ) !important;
}

/* Hover overlay — hidden by default, shown on hover */
.project-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.97) 0%,
    rgba(13,27,42,0.82) 60%,
    rgba(13,27,42,0.5) 100%
  ) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.4s, visibility 0.4s;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 2rem !important;
}
.project-card:hover .project-overlay {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* ══ CAPTCHA STYLES ══ */
.captcha-row {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
}
.captcha-question {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,168,76,0.08);
  border: 1px dashed rgba(201,168,76,0.4);
  padding: 0.85rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  user-select: none;
}
.captcha-icon { font-size: 1rem; opacity: 0.7; }
.captcha-input {
  width: 90px !important;
  flex: 0 0 90px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem !important;
}
.captcha-refresh {
  flex: 0 0 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.captcha-refresh:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: rotate(180deg);
}

/* Light theme captcha (used inside white modal) */
.modal .captcha-question {
  background: var(--off-white);
  border: 1px dashed var(--gold-dark);
  color: var(--gold-dark);
}
.modal .captcha-input {
  background: var(--off-white) !important;
  border: 1px solid var(--concrete-light) !important;
  color: var(--text-dark) !important;
}
.modal .captcha-refresh {
  border: 1px solid var(--concrete-light);
  color: var(--gold-dark);
}
.modal .captcha-refresh:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

@media (max-width: 480px) {
  .captcha-row { flex-wrap: wrap; }
  .captcha-question { flex: 1 1 100%; }
  .captcha-input { flex: 1 1 auto; width: auto !important; }
  .captcha-refresh { flex: 0 0 50px; }
}
