/* ============================================================
   4S PROJECTS — style.css
   Light luxury palette · Cormorant Garamond + DM Sans
   (Design system reused from Trehan IRIS template)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --cream:        #FAF7F2;
  --warm-white:   #FFFEF9;
  --sand:         #F0EBE1;
  --sand-deep:    #E4D9CA;
  --sage:         #7A8C6E;
  --sage-light:   #A8BA9A;
  --sage-dark:    #4E6046;
  --gold:         #C5924A;
  --gold-light:   #E0AC70;
  --gold-pale:    #F5E9D8;
  --navy:         #3E4095;
  --navy-mid:     #4F52AC;
  --navy-light:   #6669C2;
  --text-dark:    #1E2B1A;
  --text-mid:     #4A5568;
  --text-light:   #718096;
  --white:        #FFFFFF;
  --border:       #E2D9CC;
  --border-light: #EDE6DD;

  --shadow-xs: 0 1px 4px rgba(62,64,149,0.06);
  --shadow-sm: 0 2px 12px rgba(62,64,149,0.08);
  --shadow-md: 0 8px 32px rgba(62,64,149,0.12);
  --shadow-lg: 0 20px 60px rgba(62,64,149,0.16);
  --shadow-xl: 0 32px 80px rgba(62,64,149,0.20);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 17px 24px; }
.section-pad { padding: 88px 0; }
.text-center { text-align: center; }

.badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(122,140,110,0.10);
  border: 1px solid rgba(122,140,110,0.28);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 16px;
  color: var(--text-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: 10px; }
.divider--center { justify-content: center; }

.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(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-mid); 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: 0 8px 28px rgba(197,146,74,0.42); 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(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--outline-sage {
  background: transparent; color: var(--sage-dark); border: 1.5px solid var(--sage);
  font-size: 13px; padding: 11px 22px;
}
.btn--outline-sage:hover { background: var(--sage-dark); color: var(--white); border-color: var(--sage-dark); }

.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(255, 255, 252, 0.97);
  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: 0 24px; max-width: 1200px; margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 60px; 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(--text-dark); 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(--navy); color: var(--navy); }
.nav-phone i { color: var(--sage-dark); font-size: 13px; }

/* ── HERO ── */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; padding-top: 74px; overflow: hidden; }

.hero-bg {
  position: absolute; inset: 0;
  /* b1.webp: 1600x766px – hero background */
  background-image: url('img/b1.webp');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(20,21,60,0.78) 0%, rgba(62,64,149,0.62) 45%, rgba(62,64,149,0.25) 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: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6.5vw, 68px); font-weight: 700; line-height: 1.06;
  color: var(--white); margin-bottom: 12px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-subtitle { font-size: 19px; color: rgba(255,255,255,0.80); font-weight: 400; margin: 16px 0 32px; letter-spacing: 0.3px; }

.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: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; 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(--navy) 0%, var(--navy-mid) 100%); padding: 24px 28px; text-align: center; }
.form-card-head h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; 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: 'DM Sans', sans-serif; color: var(--text-dark);
  background: var(--cream); 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(--sage); background: var(--white); box-shadow: 0 0 0 3px rgba(122,140,110,0.12); }
.form-field input::placeholder,
.contact-form-group input::placeholder { color: var(--text-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: 0 8px 28px rgba(197,146,74,0.45); }

.form-trust { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 11.5px; color: var(--text-light); }
.form-trust i { color: var(--sage); }

/* ── TICKER ── */
.ticker-bar { background: var(--navy); padding: 13px 0; overflow: hidden; }
.ticker-wrap { display: flex; }
.ticker-track { display: flex; gap: 48px; animation: ticker 30s 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(--warm-white); padding: 88px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-content p { font-size: 16px; color: var(--text-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(--cream); 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(--white); border-color: var(--sage-light); }
.highlight-chip i { color: var(--sage-dark); font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }
.highlight-chip span { font-size: 13px; font-weight: 500; color: var(--text-dark); }

.about-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.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), var(--gold-light));
  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: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--navy); display: block; line-height: 1; }
.about-badge-label { font-size: 11.5px; color: var(--text-light); margin-top: 3px; }

.about-img-tag {
  position: absolute; top: 20px; right: -18px; background: var(--navy); 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(--cream); padding: 88px 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(4, 1fr); gap: 24px; }

.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;
  aspect-ratio: 4/3;   /* wrapper controls shape; works for all landscape sources */
  width: 100%;
}
.card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  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(20,21,60,0.55) 0%, transparent 55%); pointer-events: none; }

.card-badge-new {
  position: absolute; top: 14px; left: 14px; background: var(--white); color: var(--sage-dark);
  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(62,64,149,0.88); color: var(--white); }

.card-bottom-tag {
  position: absolute; bottom: 14px; left: 14px; font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 700; color: var(--white); text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.card-location { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.card-location i { color: var(--sage); font-size: 11px; }
.card-price { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.card-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 18px; }

.card-features { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.card-feat { font-size: 10.5px; font-weight: 600; background: var(--cream); color: var(--text-mid); border: 1px solid var(--border-light); padding: 4px 9px; border-radius: 50px; letter-spacing: 0.3px; }

.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.card-btn {
  padding: 10px 8px; border-radius: var(--radius-sm); font-size: 12.5px; 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(--navy); color: var(--white); }
.card-btn--primary:hover { background: var(--navy-mid); color: var(--white); }
.card-btn--sage { background: transparent; color: var(--sage-dark); border: 1.5px solid var(--sage); }
.card-btn--sage:hover { background: var(--sage-dark); color: var(--white); border-color: var(--sage-dark); }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--navy); padding: 88px 0; position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(197,146,74,0.10) 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(122,140,110,0.08) 0%, transparent 68%); border-radius: 50%; pointer-events: none; }

.why-section .badge        { background: rgba(197,146,74,0.13); border-color: rgba(197,146,74,0.28); color: 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.10); 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: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 9px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.70; }

/* ── GALLERY ── */
.gallery-strip { background: var(--sand); padding: 88px 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(20,21,60,0.50) 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: 'Cormorant Garamond', serif; font-size: clamp(22px, 4vw, 40px); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.cta-text p { font-size: 16px; color: var(--text-mid); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── DEVELOPER + CONTACT ── */
.developer-section { background: var(--warm-white); padding: 88px 0; }
.dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.dev-content p { font-size: 16px; color: var(--text-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(--cream); 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: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--navy); display: block; line-height: 1; }
.dev-stat-label { font-size: 12px; color: var(--text-light); margin-top: 5px; letter-spacing: 0.3px; }
.dev-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-card-sub { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.contact-form-group { margin-bottom: 14px; }

.contact-submit-btn {
  width: 100%; padding: 15px; background: var(--navy); 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: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.contact-alt-links { display: flex; gap: 10px; margin-top: 14px; }
.contact-alt-links .btn { flex: 1; }

.contact-address-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }
.contact-address-row i { color: var(--sage-dark); margin-top: 3px; }

/* ── FLOATING ACTIONS ── */
.float-call {
  position: fixed; bottom: 84px; left: 24px; z-index: 997; width: 52px; height: 52px; background: var(--navy);
  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(--navy); 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(20,21,60,0.55); 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(--navy) 0%, var(--navy-mid) 100%); padding: 26px 28px; position: relative; }
.modal-head h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; 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: 0 8px 28px rgba(197,146,74,0.45); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-disclaimer { font-size: 11.5px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 560px; }
.footer-link { color: var(--gold-light); font-size: 12px; font-weight: 500; }
.footer-link:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@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: 62px 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; }

  .float-call, .float-wa, .float-enq { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }

  .nav-inner { padding: 12px 16px; }
  .nav-actions { gap: 8px; }
  .nav-logo-img { height: 48px; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 9px 12px; }

  .hero { padding-top: 62px; }
  .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; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@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; }

  .nav-inner { padding: 10px 14px; }
  .nav-logo-img { height: 42px; }
  .btn--sm { padding: 9px 14px; font-size: 12.5px; }
}