/* ============================================================
   AJIT CONSTRUCTION – Premium CSS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --red:           #C8102E;
  --red-dark:      #96091F;
  --red-deep:      #6B0716;
  --red-pale:      #FDECEA;
  --red-light:     #FFE9EC;
  --red-veil:      rgba(200,16,46,0.08);
  --white:         #FFFFFF;
  --cream:         #FBF8F5;
  --off-white:     #FAFAFA;
  --warm-gray:     #F7F4F0;
  --light-gray:    #EFEBE6;
  --border:        #E5E0DA;
  --border-light:  #F0EBE5;
  --text:          #1A1612;
  --text-soft:     #4A453F;
  --text-muted:    #756E66;
  --text-light:    #A8A29A;
  --charcoal:      #221E1A;
  --black-warm:    #100C09;
  --footer-bg:     #0B0805;
  --shadow-xs:     0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm:     0 4px 14px rgba(0,0,0,0.08);
  --shadow-md:     0 10px 36px rgba(0,0,0,0.10);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.14);
  --shadow-red:    0 10px 36px rgba(200,16,46,0.22);
  --r-sm: 6px; --r: 10px; --r-lg: 16px; --r-xl: 24px; --r-2xl: 32px;
  --t: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 0.2s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  /* backward compat */
  --primary: var(--red); --primary-dark: var(--red-dark);
  --primary-light: var(--red-light); --primary-pale: var(--red-pale);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; font-weight: 400; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--red); color: #fff; }

/* ── Container ─── */
.container    { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 920px;  margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 2rem; }

/* ── Section ─── */
.section    { padding: 7rem 0; }
.section-sm { padding: 4.5rem 0; }
.section-tight { padding: 5rem 0; }

/* ── Typography ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 1.25rem;
}
.eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }
.eyebrow.center::after { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }
.eyebrow.center { justify-content: center; }
.h1, .section-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600; line-height: 1.15; color: var(--text); letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.h1 em, .section-title em { font-style: italic; color: var(--red); font-weight: 500; }
.h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 600; line-height: 1.25; color: var(--text); letter-spacing: -0.01em; }
.h2 em { font-style: italic; color: var(--red); }
.h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text); }
.lead { font-size: 1.05rem; color: var(--text-soft); line-height: 1.85; font-weight: 400; }
.divider { width: 56px; height: 2px; background: var(--red); border-radius: 2px; margin: 1.5rem 0 2rem; }
.divider.center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-white { color: #fff; }
.text-muted { color: var(--text-muted); }

/* ── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.85rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.8rem;
  transition: all var(--t); cursor: pointer; white-space: nowrap;
  border: 1.5px solid transparent; font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.08em;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover { background: var(--red-pale); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn-dark:hover { background: var(--text); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 0.82rem; }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.74rem; }
.btn-block { display: flex; width: 100%; }

/* ── Top Bar ─── */
.top-bar { background: var(--black-warm); color: rgba(255,255,255,0.7); font-size: 0.76rem; padding: 0.55rem 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.65); }
.top-bar-item:hover { color: #fff; }
.top-bar-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.15); }

/* ── Header / Nav ─── */
.header { background: rgba(255,255,255,0.97); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 1000; transition: box-shadow var(--t); }
.header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: transparent; }
.navbar { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 0.875rem; flex-shrink: 0; }
.logo-mark { width: 46px; height: 46px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.3rem; color: #fff; font-family: var(--font-display); flex-shrink: 0; box-shadow: var(--shadow-red); }
.logo-text .logo-name { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); line-height: 1.1; letter-spacing: -0.02em; }
.logo-text .logo-tagline { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); margin-top: 0.15rem; font-weight: 500; }

.nav-menu { display: flex; align-items: center; gap: 0.1rem; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 0.35rem; padding: 0.6rem 0.95rem; font-size: 0.82rem; font-weight: 500; color: var(--text-soft); border-radius: 6px; transition: color var(--t-fast); white-space: nowrap; letter-spacing: 0.01em; }
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link .arrow { font-size: 0.55rem; transition: transform var(--t-fast); opacity: 0.5; }
.nav-item:hover .arrow { transform: rotate(180deg); opacity: 1; }

.dropdown-menu { display: none; position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px; background: #fff; border-radius: var(--r); box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); padding: 0.55rem; z-index: 200; }
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-item { display: block; padding: 0.7rem 1rem; font-size: 0.83rem; font-weight: 500; color: var(--text-soft); border-radius: 7px; transition: all var(--t-fast); }
.dropdown-item:hover { background: var(--warm-gray); color: var(--red); padding-left: 1.2rem; }
.dropdown-sep { border-top: 1px solid var(--border-light); margin: 0.4rem 0; }

.btn-nav-cta { background: var(--red) !important; color: #fff !important; padding: 0.7rem 1.5rem !important; border-radius: 6px !important; font-size: 0.76rem !important; font-weight: 600 !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; margin-left: 0.75rem; transition: all var(--t) !important; }
.btn-nav-cta:hover { background: var(--red-dark) !important; color: #fff !important; transform: translateY(-1px); box-shadow: var(--shadow-red); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; }
.nav-overlay.active { display: block; }

/* ── Breadcrumb ─── */
.breadcrumb { background: var(--cream); border-bottom: 1px solid var(--border-light); padding: 0.75rem 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.breadcrumb-list a { color: var(--red); }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list .active { color: var(--text); font-weight: 600; }
.breadcrumb-sep { color: var(--text-light); font-size: 0.65rem; }

/* ════════════════════════════════════════════════════
   HERO (homepage)
   ════════════════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--charcoal); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,8,5,0.92) 0%, rgba(11,8,5,0.65) 40%, rgba(150,9,31,0.35) 100%); }
.hero-content { position: relative; z-index: 2; padding: 4rem 0; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(10px); color: #fff; border-radius: 50px; padding: 0.45rem 1.1rem 0.45rem 0.55rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.75rem; }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-title { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 500; color: #fff; line-height: 1.08; margin-bottom: 1.5rem; letter-spacing: -0.025em; }
.hero-title em { font-style: italic; color: #fff; opacity: 0.92; font-weight: 400; }
.hero-title .highlight { color: var(--red); font-style: italic; font-weight: 500; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 540px; margin-bottom: 2.5rem; line-height: 1.85; font-weight: 300; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2.75rem; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* Vertical scroll cue */
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; z-index: 2; }
.scroll-cue::before { content: ''; display: block; width: 1px; height: 32px; background: rgba(255,255,255,0.3); margin: 0 auto 0.65rem; animation: scrollPulse 2.2s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:.85} }

/* ════════════════════════════════════════════════════
   FEATURE / SPLIT LAYOUTS
   ════════════════════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 620px; }
.split-media { position: relative; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }
.split-media:hover img { transform: scale(1.04); }
.split-content { display: flex; align-items: center; padding: 6rem 4.5rem; }
.split-content-inner { max-width: 480px; }
.split.reverse > .split-media { order: 2; }
.split.reverse > .split-content { order: 1; }
.split-overlay-card { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; z-index: 2; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); padding: 1.4rem 1.6rem; border-radius: var(--r); display: flex; align-items: center; gap: 1.5rem; }

/* ════════════════════════════════════════════════════
   STATS STRIP
   ════════════════════════════════════════════════════ */
.stats-strip { background: var(--red); padding: 3rem 0; position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.12) 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; position: relative; z-index: 1; }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 0.74rem; font-weight: 500; color: rgba(255,255,255,0.85); margin-top: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ════════════════════════════════════════════════════
   FEATURE CARDS
   ════════════════════════════════════════════════════ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--white); border: 1px solid var(--border-light); padding: 2.5rem 2.2rem; transition: all var(--t); position: relative; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--red); transition: height var(--t); }
.feature-card:hover { background: var(--cream); border-color: var(--border); transform: translateY(-4px); }
.feature-card:hover::before { height: 100%; }
.feature-num { font-family: var(--font-display); font-size: 0.9rem; color: var(--red); font-weight: 600; margin-bottom: 1.25rem; letter-spacing: 0.05em; }
.feature-icon { width: 56px; height: 56px; border: 1.5px solid var(--red); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.5rem; background: var(--red-pale); transition: all var(--t); }
.feature-card:hover .feature-icon { background: var(--red); }
.feature-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: 0.65rem; }
.feature-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }

/* ════════════════════════════════════════════════════
   PROJECT CARDS
   ════════════════════════════════════════════════════ */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.project-card { background: #fff; border-radius: var(--r); overflow: hidden; transition: all var(--t); position: relative; }
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-card-img { position: relative; height: 320px; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.project-card:hover .project-card-img img { transform: scale(1.08); }
.project-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%); pointer-events: none; }
.project-card-tag { position: absolute; top: 1.25rem; left: 1.25rem; padding: 0.35rem 0.9rem; border-radius: 50px; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; z-index: 2; backdrop-filter: blur(8px); }
.tag-launch   { background: var(--red); color: #fff; }
.tag-ongoing  { background: rgba(26,107,53,0.92); color: #fff; }
.tag-upcoming { background: rgba(124,92,30,0.92); color: #fff; }
.tag-completed{ background: rgba(0,0,0,0.65); color: #fff; }
.project-card-overlay { position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; z-index: 2; color: #fff; }
.project-card-overlay h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.3rem; }
.project-card-overlay .loc { font-size: 0.82rem; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 0.35rem; }
.project-card-body { padding: 1.75rem 2rem; background: #fff; border-top: 3px solid var(--red); }
.project-card-meta { display: flex; gap: 1.25rem; margin-bottom: 1rem; font-size: 0.78rem; color: var(--text-muted); }
.project-card-meta span { display: flex; align-items: center; gap: 0.35rem; }
.project-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.project-card-cta { color: var(--red); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap var(--t-fast); }
.project-card:hover .project-card-cta { gap: 0.75rem; }

/* Project grid — gallery mode (for upcoming/ongoing/completed listings) */
.gallery-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gp-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; cursor: pointer; transition: all var(--t); background: var(--charcoal); }
.gp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; opacity: 0.9; }
.gp-card:hover { transform: translateY(-6px); }
.gp-card:hover img { transform: scale(1.06); opacity: 1; }
.gp-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,8,5,0.92) 100%); display: flex; align-items: flex-end; padding: 1.75rem; }
.gp-card-content { color: #fff; width: 100%; }
.gp-card-tag { display: inline-block; padding: 0.3rem 0.75rem; border-radius: 50px; font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.gp-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.35rem; }
.gp-card-loc { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-bottom: 0.75rem; }
.gp-card-meta { font-size: 0.75rem; color: rgba(255,255,255,0.7); display: flex; gap: 1rem; flex-wrap: wrap; }
.gp-card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.gp-coming { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--cream); border: 2px dashed var(--border); aspect-ratio: 4/5; border-radius: var(--r); text-align: center; padding: 2rem; transition: all var(--t); }
.gp-coming:hover { border-color: var(--red); background: var(--red-pale); }
.gp-coming-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.4; }

/* ════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════ */
.testimonial-card { background: var(--white); border: 1px solid var(--border-light); padding: 2.25rem; transition: all var(--t); position: relative; border-radius: var(--r); }
.testimonial-card::before { content: '\201C'; position: absolute; top: -1rem; left: 1.75rem; font-family: var(--font-display); font-size: 5rem; color: var(--red); line-height: 1; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-text { font-family: var(--font-accent); font-size: 1.1rem; color: var(--text-soft); line-height: 1.75; margin: 1.25rem 0 1.75rem; font-style: italic; font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--border-light); }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.1rem; color: #fff; flex-shrink: 0; font-family: var(--font-display); }
.testimonial-name { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.testimonial-role { font-size: 0.75rem; color: var(--red); margin-top: 0.15rem; letter-spacing: 0.04em; }
.stars { color: #DAA520; font-size: 0.88rem; letter-spacing: 0.1em; }

/* ════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════════════ */
.page-hero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--charcoal); }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,8,5,0.45) 0%, rgba(11,8,5,0.9) 90%); }
.page-hero-content { position: relative; z-index: 2; width: 100%; padding: 4rem 0; }
.page-hero-content h1 { font-family: var(--font-display); color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 500; margin-bottom: 1rem; letter-spacing: -0.02em; line-height: 1.1; }
.page-hero-content h1 em { font-style: italic; color: rgba(255,255,255,0.85); }
.page-hero-content p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 620px; line-height: 1.85; font-weight: 300; }
.page-hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(200,16,46,0.18); border: 1px solid rgba(200,16,46,0.45); color: #fff; border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.25rem; backdrop-filter: blur(8px); }

/* ════════════════════════════════════════════════════
   PROJECT DETAIL HERO
   ════════════════════════════════════════════════════ */
.project-hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--charcoal); }
.project-hero-bg { position: absolute; inset: 0; }
.project-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.project-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,8,5,0.4) 0%, rgba(11,8,5,0.5) 50%, rgba(11,8,5,0.95) 100%); }
.project-hero-content { position: relative; z-index: 2; width: 100%; padding: 5rem 0 3.5rem; }
.project-hero-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.project-hero-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.15); }
.project-hero-info-item { color: #fff; }
.project-hero-info-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.4rem; font-weight: 500; }
.project-hero-info-value { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: #fff; }

/* ════════════════════════════════════════════════════
   CTA BAR / STRIP (between sections) — VISIBLE CONTRAST
   ════════════════════════════════════════════════════ */
.cta-strip { background: var(--red); padding: 2.5rem 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip h3 { color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.cta-strip h3 em { font-style: italic; opacity: 0.85; }
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 0.25rem; }
.cta-strip .btn { background: #fff; color: var(--red); border-color: #fff; }
.cta-strip .btn:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.cta-dark { background: var(--charcoal); padding: 2.5rem 0; color: #fff; }
.cta-dark h3 { color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.cta-dark h3 em { font-style: italic; color: var(--red); }
.cta-dark p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-top: 0.25rem; }

/* Inline CTA banner used between content blocks */
.cta-inline { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); border-radius: var(--r-lg); padding: 2.5rem 3rem; color: #fff; text-align: center; margin: 3rem 0; box-shadow: var(--shadow-red); }
.cta-inline h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin-bottom: 0.5rem; color: #fff; }
.cta-inline p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 1.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-inline .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════════════ */
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.form-control { width: 100%; padding: 0.875rem 1.15rem; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-family: var(--font-body); font-size: 0.92rem; color: var(--text); background: #fff; transition: all var(--t-fast); outline: none; }
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-veil); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

/* Enquiry sidebar */
.enquiry-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; position: sticky; top: 100px; border: 1px solid var(--border-light); }
.enquiry-head { background: var(--charcoal); padding: 1.75rem 2rem; }
.enquiry-head h3 { color: #fff; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.25rem; font-weight: 500; }
.enquiry-head p { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.enquiry-body { padding: 2rem; }

/* ════════════════════════════════════════════════════
   TABS
   ════════════════════════════════════════════════════ */
.tab-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; gap: 0; flex-wrap: wrap; }
.tab-btn { padding: 0.85rem 1.6rem; font-weight: 500; font-size: 0.78rem; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--t-fast); background: none; border-top: none; border-left: none; border-right: none; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; }
.tab-btn.active, .tab-btn:hover { color: var(--red); border-bottom-color: var(--red); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════ */
.gallery-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gallery-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap { position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(11,8,5,0.85) 100%); display: flex; align-items: flex-end; padding: 1.25rem; opacity: 0; transition: opacity var(--t); }
.gallery-item:hover .gallery-cap { opacity: 1; }
.gallery-cap span { color: #fff; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.active { display: flex; }
.lightbox img { max-height: 85vh; max-width: 90vw; object-fit: contain; border-radius: var(--r); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; border-radius: 50%; width: 44px; height: 44px; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: all var(--t-fast); }
.lightbox-close:hover { background: var(--red); }

/* ════════════════════════════════════════════════════
   AMENITY GRID
   ════════════════════════════════════════════════════ */
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.amenity-item { background: #fff; border: 1px solid var(--border-light); border-radius: var(--r); padding: 1.4rem 1rem; text-align: center; transition: all var(--t-fast); }
.amenity-item:hover { border-color: var(--red); background: var(--red-pale); }
.amenity-icon { font-size: 1.85rem; display: block; margin-bottom: 0.65rem; }
.amenity-name { font-size: 0.8rem; font-weight: 500; color: var(--text-soft); }
.amenity-item:hover .amenity-name { color: var(--red); }

/* Amenity dark/glass for overlay use */
.amenity-glass { background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 1.5rem 1rem; text-align: center; }
.amenity-glass .amenity-name { color: #fff; }

/* ════════════════════════════════════════════════════
   SPECS TABLE
   ════════════════════════════════════════════════════ */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; border-radius: var(--r); overflow: hidden; }
.spec-table th { background: var(--charcoal); color: #fff; padding: 1rem 1.4rem; text-align: left; font-weight: 500; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.spec-table td { padding: 0.95rem 1.4rem; border-bottom: 1px solid var(--border-light); color: var(--text-soft); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--cream); }
.spec-table td:first-child { font-weight: 600; color: var(--text); width: 38%; }

/* ════════════════════════════════════════════════════
   NEARBY / LOCATION
   ════════════════════════════════════════════════════ */
.nearby-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.nearby-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: #fff; border: 1px solid var(--border-light); border-radius: var(--r); transition: all var(--t-fast); }
.nearby-item:hover { border-color: var(--red); background: var(--red-pale); transform: translateX(4px); }
.nearby-icon { font-size: 1.4rem; flex-shrink: 0; }
.nearby-name { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.nearby-dist { font-size: 0.76rem; color: var(--text-muted); margin-top: 0.15rem; }
.map-embed iframe { width: 100%; height: 420px; border: none; border-radius: var(--r-lg); display: block; }

/* ════════════════════════════════════════════════════
   ACCORDION (FAQ)
   ════════════════════════════════════════════════════ */
.accordion-item { border-bottom: 1px solid var(--border-light); }
.accordion-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; font-weight: 500; font-size: 1rem; color: var(--text); background: none; cursor: pointer; transition: color var(--t-fast); text-align: left; gap: 1rem; font-family: var(--font-display); }
.accordion-btn:hover, .accordion-btn.active { color: var(--red); }
.accordion-icon { flex-shrink: 0; font-size: 1.5rem; font-weight: 300; transition: transform var(--t); color: var(--red); }
.accordion-btn.active .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.accordion-body.open { max-height: 600px; padding-bottom: 1.4rem; }
.accordion-body-inner { font-size: 0.94rem; color: var(--text-muted); line-height: 1.85; }

/* ════════════════════════════════════════════════════
   PROCESS STEPS
   ════════════════════════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-step { text-align: center; padding: 1rem; position: relative; }
.process-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; color: var(--red); line-height: 1; margin-bottom: 1rem; opacity: 0.85; }
.process-title { font-weight: 600; font-size: 1rem; color: var(--text); margin-bottom: 0.6rem; font-family: var(--font-display); }
.process-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ════════════════════════════════════════════════════
   TIMELINE (About)
   ════════════════════════════════════════════════════ */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--red) 0%, var(--border) 100%); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 90px 1fr; margin-bottom: 4rem; align-items: center; }
.timeline-item:nth-child(odd) .tl-content  { grid-column: 1; text-align: right; padding-right: 3rem; }
.timeline-item:nth-child(odd) .tl-dot      { grid-column: 2; }
.timeline-item:nth-child(odd) .tl-empty    { grid-column: 3; }
.timeline-item:nth-child(even) .tl-empty   { grid-column: 1; }
.timeline-item:nth-child(even) .tl-dot     { grid-column: 2; }
.timeline-item:nth-child(even) .tl-content { grid-column: 3; padding-left: 3rem; }
.tl-dot { z-index: 2; display: flex; justify-content: center; }
.tl-dot-circle { width: 60px; height: 60px; border-radius: 50%; background: #fff; border: 3px solid var(--red); display: flex; align-items: center; justify-content: center; color: var(--red); font-weight: 600; font-size: 0.8rem; font-family: var(--font-display); box-shadow: var(--shadow-sm); }
.tl-content { background: #fff; border: 1px solid var(--border-light); border-radius: var(--r-lg); padding: 1.75rem; transition: all var(--t); }
.tl-content:hover { box-shadow: var(--shadow-md); border-color: var(--border); }
.tl-content h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--text); margin-bottom: 0.4rem; }
.tl-content .tl-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.tl-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.6); padding: 5.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 4rem; padding-bottom: 4.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.8rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--red); }
.footer-brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.footer-brand-tag { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--red); font-weight: 600; margin-bottom: 1.35rem; }
.footer-col p { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.5); }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: all var(--t-fast); }
.footer-links a:hover { color: var(--red); padding-left: 5px; }
.footer-social { display: flex; gap: 0.625rem; margin-top: 1.5rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: all var(--t); font-weight: 600; border: 1px solid rgba(255,255,255,0.08); }
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1rem; font-size: 0.86rem; }
.footer-contact-icon { color: var(--red); font-size: 0.95rem; flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding: 1.75rem 0; font-size: 0.76rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════
   FLOATING BUTTONS
   ════════════════════════════════════════════════════ */
.floating-whatsapp, .floating-call { position: fixed; z-index: 900; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow-md); transition: all var(--t); text-decoration: none; }
.floating-whatsapp { bottom: 6.2rem; right: 1.5rem; background: #25D366; box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.floating-call { bottom: 1.5rem; right: 1.5rem; background: var(--red); box-shadow: var(--shadow-red); }
.floating-whatsapp:hover, .floating-call:hover { transform: scale(1.1) translateY(-2px); }
.back-to-top { position: fixed; bottom: 1.5rem; left: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: all var(--t); z-index: 800; cursor: pointer; border: none; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--red); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════
   COOKIE
   ════════════════════════════════════════════════════ */
.cookie-notice { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--charcoal); color: rgba(255,255,255,0.85); padding: 1rem 2rem; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; transform: translateY(100%); transition: transform 0.4s ease; font-size: 0.85rem; }
.cookie-notice.visible { transform: translateY(0); }
.cookie-notice a { color: rgba(255,200,210,0.9); text-decoration: underline; }

/* ════════════════════════════════════════════════════
   BG / UTILITIES
   ════════════════════════════════════════════════════ */
.bg-white { background: #fff; }
.bg-cream { background: var(--cream); }
.bg-warm  { background: var(--warm-gray); }
.bg-dark  { background: var(--charcoal); color: #fff; }
.bg-dark .section-title, .bg-dark .h2 { color: #fff; }
.bg-dark .lead, .bg-dark p { color: rgba(255,255,255,0.7); }
.bg-red { background: var(--red); color: #fff; }
.bg-red .section-title { color: #fff; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.relative { position: relative; }

/* Reveal */
.reveal { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.animate-ready { opacity: 0; transform: translateY(28px); }
.reveal.animate-ready.visible { opacity: 1; transform: none; }

/* USP strip with imagery */
.usp-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--charcoal); }
.usp-strip-item { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; color: #fff; transition: background var(--t); }
.usp-strip-item:last-child { border-right: none; }
.usp-strip-item:hover { background: rgba(200,16,46,0.1); }
.usp-strip-icon { font-size: 1.8rem; margin-bottom: 0.85rem; opacity: 0.85; }
.usp-strip-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: 0.35rem; }
.usp-strip-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Tag badges */
.badge { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.85rem; border-radius: 50px; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.badge-red { background: var(--red); color: #fff; }
.badge-dark { background: var(--charcoal); color: #fff; }
.badge-glass { background: rgba(255,255,255,0.12); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); }
.badge-outline { background: transparent; color: var(--red); border: 1px solid var(--red); }

/* Sticky banner promo */
.promo-strip { background: var(--red); color: #fff; padding: 0.6rem 0; text-align: center; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; }
.promo-strip a { color: #fff; text-decoration: underline; font-weight: 600; }

/* SEO content block */
.seo-content { padding: 4rem 0; background: var(--cream); border-top: 1px solid var(--border-light); }
.seo-content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: 1.5rem; color: var(--text); }
.seo-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin: 1.75rem 0 0.75rem; color: var(--text); }
.seo-content p, .seo-content li { font-size: 0.92rem; color: var(--text-soft); line-height: 1.9; margin-bottom: 1rem; }
.seo-content ul { margin: 0 0 1.5rem 1.25rem; }
.seo-content li { margin-bottom: 0.55rem; }
.seo-content strong { color: var(--text); font-weight: 600; }

/* ============================================================
   APPENDED: Inner-page CTA + button variants + galleries
   ============================================================ */

/* Full-bleed image CTA used on inner pages */
.cta-section { position: relative; padding: 6rem 0; overflow: hidden; text-align: center; background: linear-gradient(135deg, var(--black-warm) 0%, var(--red-dark) 100%); }
.cta-section .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-section .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-section .cta-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(16,12,9,0.92) 0%, rgba(150,9,31,0.85) 100%); }
.cta-section .cta-inner, .cta-section > .container { position: relative; z-index: 2; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 0.85rem; font-weight: 600; }
.cta-section h2 em { font-style: italic; color: #FFC2CC; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 580px; margin: 0 auto 2rem; line-height: 1.75; }

/* Button variants for dark backgrounds */
.btn-white { background: #fff; color: var(--red); border: 2px solid #fff; }
.btn-white:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: #fff; color: var(--red); border-color: #fff; transform: translateY(-2px); }

/* Section label helper (used on inner pages) */
.section-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }

/* Page hero band for inner pages (image background) */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero .page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero .page-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(16,12,9,0.94) 0%, rgba(16,12,9,0.45) 55%, rgba(16,12,9,0.25) 100%); }
.page-hero .page-hero-content { position: relative; z-index: 2; width: 100%; padding: 4rem 0; }
.page-hero h1 { font-family: var(--font-display); color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 600; line-height: 1.1; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.08rem; max-width: 620px; line-height: 1.7; }
.hero-badge-sm { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }

/* Project gallery grid (for upcoming/ongoing/completed) */
.proj-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.proj-tile { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--cream); border: 1px solid var(--border); transition: transform var(--t), box-shadow var(--t); }
.proj-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-tile-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.proj-tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.proj-tile:hover .proj-tile-img img { transform: scale(1.06); }
.proj-tile-status { position: absolute; top: 1rem; left: 1rem; z-index: 2; padding: 0.35rem 0.9rem; border-radius: 100px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; backdrop-filter: blur(6px); }
.status-launch { background: rgba(200,16,46,0.92); }
.status-ongoing { background: rgba(193,122,18,0.92); }
.status-upcoming { background: rgba(74,74,74,0.85); }
.status-completed { background: rgba(34,120,80,0.92); }
.proj-tile-body { padding: 1.5rem; }
.proj-tile-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.proj-tile-loc { font-size: 0.82rem; color: var(--red); font-weight: 600; margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.35rem; }
.proj-tile-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; padding-top: 0.85rem; border-top: 1px solid var(--border-light); }
.proj-tile-meta div { font-size: 0.78rem; color: var(--text-muted); }
.proj-tile-meta strong { display: block; color: var(--text); font-size: 0.88rem; font-weight: 600; }

/* "Coming soon" placeholder tile */
.proj-tile-soon { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 1.5rem; border: 2px dashed var(--border); background: var(--cream); min-height: 100%; }
.proj-tile-soon .ps-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--red-pale); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem; }

/* Content prose blocks (SEO content) */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--text); margin: 2.5rem 0 1rem; }
.prose h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text); margin: 2rem 0 0.75rem; }
.prose p { color: var(--text-soft); line-height: 1.8; margin-bottom: 1.1rem; }
.prose ul.bullets { margin: 0 0 1.25rem; padding: 0; }
.prose ul.bullets li { position: relative; padding-left: 1.6rem; margin-bottom: 0.65rem; color: var(--text-soft); line-height: 1.7; }
.prose ul.bullets li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* Info card grid */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; transition: all var(--t); }
.info-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.info-card-icon { width: 48px; height: 48px; border-radius: var(--r); background: var(--red-pale); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
.info-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.info-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* FAQ accordion (SEO/AEO) */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; font-family: var(--font-display); font-size: 1.08rem; font-weight: 500; color: var(--text); cursor: pointer; }
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--red); flex-shrink: 0; transition: transform var(--t); }
.faq-q.open::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--text-soft); line-height: 1.8; }

@media (max-width: 980px) {
  .proj-gallery { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .proj-gallery { grid-template-columns: 1fr; }
  .cta-section { padding: 4rem 0; }
  .page-hero { min-height: 44vh; }
}

/* ── Floating button clean icons ── */
.floating-whatsapp, .floating-call { font-size: 0; color: #fff; }
.floating-whatsapp::before { content: ''; width: 26px; height: 26px; background: #fff; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.8-1.9-.9-.3-.1-.5-.1-.7.1-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-1.5-.7-2.5-1.3-3.5-3-.3-.5.3-.4.8-1.4.1-.2 0-.4 0-.5-.1-.1-.7-1.6-.9-2.2-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5.1 4.5 1.9.8 2.6.9 3.5.8.6-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.1-.3-.2-.6-.3zM12 2a10 10 0 00-8.6 15l-1.3 4.8 4.9-1.3A10 10 0 1012 2z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.8-1.9-.9-.3-.1-.5-.1-.7.1-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-1.5-.7-2.5-1.3-3.5-3-.3-.5.3-.4.8-1.4.1-.2 0-.4 0-.5-.1-.1-.7-1.6-.9-2.2-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5.1 4.5 1.9.8 2.6.9 3.5.8.6-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.1-.3-.2-.6-.3zM12 2a10 10 0 00-8.6 15l-1.3 4.8 4.9-1.3A10 10 0 1012 2z'/%3E%3C/svg%3E") center/contain no-repeat; }
.floating-call::before { content: ''; width: 24px; height: 24px; background: #fff; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.2 1l-2.3 2.2z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.2 1l-2.3 2.2z'/%3E%3C/svg%3E") center/contain no-repeat; }
