/* ============================================================
   PURI PROJECTS — style.css
   Antique gold + ink + ivory palette, drawn from the Puri crest
   Fraunces (display) + Work Sans (body/utility)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --ivory:        #FBF8F2;
  --white:        #FFFFFF;
  --sand:         #F3EBDC;
  --sand-deep:    #E7D9BE;
  --gold:         #B4813F;
  --gold-deep:    #8E6329;
  --gold-light:   #D6AD6C;
  --gold-pale:    #F3E5C9;
  --ink:          #1B1712;
  --ink-mid:      #4A3F33;
  --ink-light:    #7C6F5F;
  --border:       #E6DAC2;
  --border-light: #EFE7D6;

  --shadow-xs: 0 1px 4px rgba(27,23,18,0.07);
  --shadow-sm: 0 2px 14px rgba(27,23,18,0.09);
  --shadow-md: 0 10px 34px rgba(27,23,18,0.14);
  --shadow-lg: 0 22px 62px rgba(27,23,18,0.18);
  --shadow-xl: 0 34px 84px rgba(27,23,18,0.22);
  --shadow-gold: 0 10px 30px rgba(180,129,63,0.34);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 17px 24px; }
.section-pad { padding: 92px 0; }
.text-center { text-align: center; }

/* ── TYPOGRAPHY HELPERS ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-pale);
  border: 1px solid rgba(180,129,63,0.32);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.badge::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--gold); flex-shrink:0; }

.section-title {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.10;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.section-title em { font-style: italic; font-weight: 500; color: var(--gold-deep); }

.section-sub {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 560px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 26px;
}
.divider span { height: 2px; background: var(--gold); border-radius: 2px; }
.divider span:first-child { width: 48px; }
.divider span:last-child  { width: 24px; }
.divider i { color: var(--gold); font-size: 9px; }
.divider--center { justify-content: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover { background: #2E2619; transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--white); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1EBA57; transform: translateY(-2px); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold-deep);
  border: 1.5px solid var(--gold);
  font-size: 13px;
  padding: 11px 22px;
}
.btn--outline-gold:hover { background: var(--gold-deep); color: var(--white); border-color: var(--gold-deep); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }

.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--full { width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: var(--ink);
  font-weight: 600; font-size: 14px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.nav-phone:hover { border-color: var(--gold); color: var(--gold-deep); }
.nav-phone i { color: var(--gold); font-size: 13px; }
.nav-phone span { font-size: 14px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 96px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://puriprojects.com/puri-aerosphere/img/b1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(15, 12, 8, 0.82) 0%,
    rgba(27, 23, 18, 0.64) 45%,
    rgba(27, 23, 18, 0.22) 100%
  );
}

.hero-content { position: relative; z-index: 2; width: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1.5px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 6.5vw, 70px);
  font-weight: 600;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold-light); }

.hero-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  margin: 16px 0 10px;
  letter-spacing: 0.3px;
}

.hero-price {
  font-family: 'Fraunces', serif;
  font-size: 29px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-price-label {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  margin-right: 6px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 20px 28px;
  width: fit-content;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.60); letter-spacing: 0.5px; margin-top: 4px; }
.stat-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.18); flex-shrink: 0; }

/* HERO FORM CARD */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
  animation: slideInRight 0.6s ease both;
}
@keyframes slideInRight { from { opacity:0; transform: translateX(24px); } to { opacity:1; transform: translateX(0); } }

.form-card-head {
  background: linear-gradient(135deg, var(--ink) 0%, #2E2619 100%);
  padding: 24px 28px;
  text-align: center;
  position: relative;
}
.form-card-head::after {
  content:'';
  position:absolute; left:0; right:0; bottom:0;
  height:3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.form-card-head h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.form-card-head p { font-size: 13px; color: rgba(255,255,255,0.65); }

.form-card-body { padding: 28px; }

.form-field { margin-bottom: 14px; }
.form-field input,
.contact-form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  color: var(--ink);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form-field input:focus,
.contact-form-group input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(180,129,63,0.14);
}
.form-field input::placeholder,
.contact-form-group input::placeholder { color: var(--ink-light); }

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.form-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px;
  font-size: 11.5px; color: var(--ink-light);
}
.form-trust i { color: var(--gold); }

/* ── TICKER ── */
.ticker-bar {
  background: var(--ink);
  padding: 13px 0;
  overflow: hidden;
  border-top: 1px solid rgba(214,173,108,0.25);
  border-bottom: 1px solid rgba(214,173,108,0.25);
}
.ticker-wrap { display: flex; }
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.82);
  flex-shrink: 0;
}
.ticker-item i { color: var(--gold-light); font-size: 10px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about-section {
  background: var(--white);
  padding: 92px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-content p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.80;
  margin-bottom: 18px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0 32px;
}
.highlight-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color var(--transition), background var(--transition);
}
.highlight-chip:hover { background: var(--gold-pale); border-color: var(--gold-light); }
.highlight-chip i { color: var(--gold-deep); font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }
.highlight-chip span { font-size: 13px; font-weight: 500; color: var(--ink); }

.about-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ABOUT VISUAL */
.about-visual { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.about-badge-card {
  position: absolute;
  bottom: -22px; left: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
}
.about-badge-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
  flex-shrink: 0;
}
.about-badge-num {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 600;
  color: var(--ink);
  display: block; line-height: 1;
}
.about-badge-label { font-size: 11.5px; color: var(--ink-light); margin-top: 3px; }

.about-img-tag {
  position: absolute;
  top: 20px; right: -18px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* ── PROJECTS ── */
.projects-section {
  background: var(--ivory);
  padding: 92px 0;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* PROJECT CARD */
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.card-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.card-img-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.project-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,8,0.60) 0%, transparent 55%);
  pointer-events: none;
}

.card-badge-new {
  position: absolute; top: 14px; left: 14px;
  background: var(--white);
  color: var(--gold-deep);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
}

.card-type {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
}
.card-type--residential { background: rgba(27,23,18,0.88); color: var(--white); }
.card-type--commercial   { background: rgba(180,129,63,0.92); color: var(--white); }

.card-bottom-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.card-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--ink-light);
  margin-bottom: 12px;
}
.card-location i { color: var(--gold); font-size: 11px; }

.card-price {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.70;
  flex: 1;
  margin-bottom: 18px;
}

.card-features {
  display: flex; gap: 7px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.card-feat {
  font-size: 11px; font-weight: 600;
  background: var(--ivory);
  color: var(--ink-mid);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.card-btn {
  padding: 11px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all var(--transition);
}
.card-btn--primary { background: var(--ink); color: var(--white); }
.card-btn--primary:hover { background: #2E2619; color: var(--white); }
.card-btn--gold { background: transparent; color: var(--gold-deep); border: 1.5px solid var(--gold); }
.card-btn--gold:hover { background: var(--gold-deep); color: var(--white); border-color: var(--gold-deep); }

/* ── WHY CHOOSE US ── */
.why-section {
  background: var(--ink);
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,129,63,0.16) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(214,173,108,0.10) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.why-section .badge        { background: rgba(214,173,108,0.14); border-color: rgba(214,173,108,0.32); color: var(--gold-light); }
.why-section .badge::before{ background: var(--gold-light); }
.why-section .section-title { color: var(--white); }
.why-section .divider span  { background: var(--gold-light); }
.why-section .divider i     { color: var(--gold-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
  margin-bottom: 18px;
}
.why-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 21px; font-weight: 600;
  color: var(--white);
  margin-bottom: 9px;
}
.why-card p { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.70; }

/* ── IMAGE GALLERY STRIP ── */
.gallery-strip {
  background: var(--sand);
  padding: 92px 0;
}
.gallery-strip .section-title { margin-bottom: 0; }
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--large { grid-row: span 2; min-height: 360px; }
.gallery-item--small { min-height: 170px; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,12,8,0.55) 0%, transparent 55%);
  pointer-events: none;
}
.gallery-label {
  position: absolute; bottom: 14px; left: 16px;
  color: var(--white);
  font-size: 13px; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(105deg, var(--sand) 0%, var(--sand-deep) 100%);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}
.cta-text p { font-size: 16px; color: var(--ink-mid); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── DEVELOPER SECTION ── */
.developer-section {
  background: var(--white);
  padding: 92px 0;
}
.dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.dev-content p {
  font-size: 16px; color: var(--ink-mid);
  line-height: 1.80; margin-bottom: 18px;
}
.dev-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.dev-stat {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.dev-stat:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.dev-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 38px; font-weight: 600;
  color: var(--ink);
  display: block; line-height: 1;
}
.dev-stat-label { font-size: 12px; color: var(--ink-light); margin-top: 5px; letter-spacing: 0.3px; }
.dev-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

.contact-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-card-sub { font-size: 14px; color: var(--ink-light); margin-bottom: 24px; }

.contact-form-group { margin-bottom: 14px; }

.contact-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  margin-top: 4px;
}
.contact-submit-btn:hover { background: #2E2619; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.contact-alt-links {
  display: flex; gap: 10px;
  margin-top: 14px;
}
.contact-alt-links .btn { flex: 1; }

/* ── FLOATING ACTIONS ── */
.float-call {
  position: fixed; bottom: 84px; left: 24px;
  z-index: 997;
  width: 52px; height: 52px;
  background: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-call:hover { transform: scale(1.10); box-shadow: var(--shadow-lg); color: var(--white); }

.float-wa {
  position: fixed; bottom: 84px; right: 24px;
  z-index: 997;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 24px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-wa:hover { transform: scale(1.10); box-shadow: var(--shadow-lg); color: var(--white); }

.float-enq {
  position: fixed; top: 50%; right: -52px;
  z-index: 997;
  background: var(--gold);
  color: var(--white);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.6px;
  padding: 9px 16px;
  border-radius: 10px 10px 0 0;
  transform: translateY(-50%) rotate(270deg);
  transition: right 0.35s ease;
  white-space: nowrap;
}
.float-enq:hover { right: 0; color: var(--white); }

/* ── STICKY MOBILE BAR ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px 14px;
  z-index: 998;
  gap: 10px;
  box-shadow: 0 -6px 28px rgba(0,0,0,0.10);
}
.sticky-cta a {
  flex: 1;
  padding: 13px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.sticky-call { background: var(--ink); color: var(--white) !important; }
.sticky-enq  { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white) !important; }
.sticky-wa   { background: #25D366; color: var(--white) !important; }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,12,8,0.58);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 440px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: modalPop 0.32s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes modalPop { from { opacity:0; transform: scale(0.93) translateY(12px); } to { opacity:1; transform: scale(1) translateY(0); } }

.modal-head {
  background: linear-gradient(135deg, var(--ink) 0%, #2E2619 100%);
  padding: 26px 28px;
  position: relative;
}
.modal-head::after {
  content:'';
  position:absolute; left:0; right:0; bottom:0;
  height:3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.modal-head h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
}
.modal-head p { font-size: 13px; color: rgba(255,255,255,0.65); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.14);
  border: none; color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.26); }

.modal-body-wrap { padding: 28px; }

.modal-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 640px;
}
.footer-link { color: var(--gold-light); font-size: 12px; font-weight: 500; }
.footer-link:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid          { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card     { max-width: 520px; }
  .about-grid         { grid-template-columns: 1fr; gap: 56px; }
  .dev-grid           { grid-template-columns: 1fr; gap: 56px; }
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
  .about-badge-card   { left: 0; bottom: -18px; }
  .gallery-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-row: span 1; min-height: 220px; }
  .gallery-item--small { min-height: 220px; }
}

@media (max-width: 768px) {
  .section-pad        { padding: 60px 0; }
  .about-section,
  .projects-section,
  .why-section,
  .gallery-strip,
  .developer-section  { padding: 60px 0; }
  .projects-grid      { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .why-grid           { grid-template-columns: 1fr; }
  .projects-header    { flex-direction: column; align-items: flex-start; }
  .about-highlights   { grid-template-columns: 1fr; }
  .dev-stats          { grid-template-columns: 1fr 1fr; }
  .cta-inner          { flex-direction: column; align-items: flex-start; }
  .gallery-grid       { grid-template-columns: 1fr; }
  .gallery-item--large,
  .gallery-item--small { min-height: 220px; }

  /* Floating → hide, show sticky bar */
  .float-call, .float-wa, .float-enq { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }

  .nav-phone span { display: none; }

  .hero { padding-top: 84px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; padding: 16px 18px; width: 100%; justify-content: space-around; }
  .stat-item { padding: 0 12px; }
  .stat-sep  { height: 32px; }

  .nav-logo-img { height: 56px; }
}

@media (max-width: 480px) {
  .hero-ctas, .about-ctas, .cta-actions { flex-direction: column; }
  .hero-ctas .btn, .about-ctas .btn, .cta-actions .btn { text-align: center; justify-content: center; }
  .stat-sep { display: none; }
  .stat-item { padding: 0 6px; }
  .hero-form-card { max-width: 100%; }
  .contact-card { padding: 24px 20px; }
  .dev-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .nav-logo-img { height: 48px; }
}
