/* ════════════════════════════════════════════════════════════
   Meeks Engineering — Light Theme Stylesheet
════════════════════════════════════════════════════════════ */

:root {
  --white:    #FFFFFF;
  --offwhite: #F7F8FA;
  --light:    #EEF0F4;
  --border:   #DDE1E9;
  --muted:    #6B7385;
  --dark:     #1A1F2E;
  --darker:   #0F1320;
  --text:     #2C3347;
  --gold:     #C9993B;
  --gold-lt:  #E8BA5C;
  --gold-bg:  #FDF6EA;
  --pool:     #0E8FA0;
  --pool-lt:  #1AAFBF;
  --pool-bg:  #EAF7F9;
  --font-display: 'Bebas Neue', sans-serif;
  --font-sub:     'Barlow Condensed', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
  --radius: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container: 1260px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
a { color: inherit; text-decoration: none; transition: color .25s; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(201,153,59,.25);
  padding: .3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.tag.pool { color: var(--pool); background: var(--pool-bg); border-color: rgba(14,143,160,.2); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--dark);
  margin-bottom: .5rem;
}
.section-title span { color: var(--gold); }
.section-title.pool-accent span { color: var(--pool); }

.lead { font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.8; }
.lead.centered { margin: 0 auto; text-align: center; }

.gold-line { width: 56px; height: 3px; background: var(--gold); margin: 1.25rem 0; border-radius: 2px; }
.gold-line.centered { margin: 1.25rem auto; }
.gold-line.pool { background: var(--pool); }

.prose { font-size: 1rem; line-height: 1.8; color: var(--text); }
.prose h2, .prose h3 { color: var(--dark); font-family: var(--font-sub); font-weight: 700; margin: 2rem 0 .75rem; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: .5rem; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sub); font-weight: 700; font-size: .9rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: var(--radius);
  transition: var(--transition); cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,153,59,.3); color: var(--white); }
.btn-outline { border: 2px solid var(--border); color: var(--text); background: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-pool { background: var(--pool); color: var(--white); }
.btn-pool:hover { background: var(--pool-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,143,160,.3); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--darker); transform: translateY(-2px); }

/* ─── REVEAL ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: rgba(255,255,255,.0);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.site-logo a, .logo-text-wrap { display: flex; align-items: center; gap: .75rem; }
.logo-icon {
  width: 44px; height: 44px; background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--white); flex-shrink: 0;
}
.logo-text, .logo-name {
  font-family: var(--font-sub); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .06em; line-height: 1.2; color: var(--dark);
}
.logo-text small { display: block; font-weight: 400; font-size: .68rem; letter-spacing: .15em; color: var(--muted); }

.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu > li > a {
  font-family: var(--font-sub); font-weight: 600; font-size: .88rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .25s;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li > a.active { color: var(--gold); }

.nav-menu .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 200px; padding: .5rem 0;
  list-style: none; z-index: 100; box-shadow: var(--shadow-md);
}
.nav-menu li { position: relative; }
.nav-menu li:hover .sub-menu { display: block; }
.nav-menu .sub-menu li a { display: block; padding: .6rem 1.25rem; font-size: .85rem; color: var(--muted); }
.nav-menu .sub-menu li a:hover { color: var(--gold); background: var(--gold-bg); }

.header-cta { flex-shrink: 0; font-size: .83rem; padding: .65rem 1.4rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); display: block; }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-nav-menu { list-style: none; text-align: center; }
.mobile-nav-menu li a {
  display: block; font-family: var(--font-display); font-size: 2.5rem;
  letter-spacing: .1em; color: var(--dark); padding: .4rem 0;
}
.mobile-nav-menu li a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.6rem; color: var(--muted); background: none; border: none; cursor: pointer;
}
.mobile-contact-info { font-family: var(--font-sub); color: var(--muted); margin-top: .5rem; }
.mobile-contact-info a { color: var(--gold); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end; padding-bottom: 6rem; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1e2840 60%, #162030 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 25%, rgba(201,153,59,.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 15% 80%, rgba(14,143,160,.08) 0%, transparent 65%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 55px 55px;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border: 1px solid rgba(201,153,59,.15); animation: shapeFloat 8s ease-in-out infinite; }
.shape-1 { width: 300px; height: 300px; right: 10%; top: 12%; border-radius: 40% 60% 50% 70%; }
.shape-2 { width: 150px; height: 150px; right: 22%; bottom: 28%; border-radius: 50%; border-color: rgba(14,143,160,.2); animation-delay: -3s; }
.shape-3 { width: 70px; height: 70px; right: 8%; bottom: 32%; animation-delay: -5s; }
@keyframes shapeFloat {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(8px,-12px) rotate(4deg); }
  66% { transform: translate(-6px,8px) rotate(-3deg); }
}
.crane-deco { position: absolute; right: 5%; top: 8%; width: min(400px, 38vw); opacity: .06; pointer-events: none; }
.hero-badge {
  position: absolute; top: 38%; right: 10%;
  width: 136px; height: 136px; border: 2px solid var(--gold);
  border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; animation: rotateBadgeBorder 20s linear infinite;
}
.hero-badge .badge-num { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--gold); }
.hero-badge .badge-label { font-family: var(--font-sub); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .2rem; }
@keyframes rotateBadgeBorder { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
  font-family: var(--font-sub); font-size: .82rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: .75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 2px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .92; color: var(--white); margin-bottom: 1.5rem; white-space: pre-line;
}
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 490px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.h-stat .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.h-stat .label { font-family: var(--font-sub); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .2rem; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--font-sub); font-size: .68rem; letter-spacing: .2em; color: rgba(255,255,255,.4); text-transform: uppercase;
}
.mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.3); border-radius: 11px; display: flex; justify-content: center; padding-top: 5px; }
.wheel { width: 3px; height: 7px; background: var(--gold); border-radius: 2px; animation: scrollWheel 1.8s ease infinite; }
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker { background: var(--gold); padding: .6rem 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 2rem; animation: tickerScroll 30s linear infinite; }
.ticker-track span { font-family: var(--font-sub); font-weight: 700; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--white); }
.ticker-track .dot { color: rgba(255,255,255,.4); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section-about        { padding: 7rem 0; background: var(--white); }
.section-services     { padding: 7rem 0; background: var(--offwhite); }
.section-stats        { padding: 5rem 0; background: var(--dark); }
.section-gallery      { padding: 7rem 0; background: var(--white); }
.section-projects     { padding: 7rem 0; background: var(--offwhite); }
.section-testimonials { padding: 7rem 0; background: var(--white); }
.section-contact      { padding: 7rem 0; background: var(--offwhite); }
.section-blog         { padding: 5rem 0; background: var(--white); }
.page-content-section { padding: 5rem 0; }
.full-gallery         { padding: 4rem 0 7rem; }
.section-projects.full { background: var(--white); }
.section-header { margin-bottom: 3.5rem; }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-card-top {
  position: absolute; top: -1.5rem; left: -1.5rem; z-index: 2;
  background: var(--pool); color: var(--white);
  padding: .9rem 1.25rem; border-radius: var(--radius);
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-sub); font-weight: 700; font-size: .85rem; letter-spacing: .05em;
  box-shadow: var(--shadow-md);
}
.about-img-main {
  width: 100%; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-card-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--white);
  padding: 1.5rem 2rem; border-radius: var(--radius);
  text-align: center; width: 160px; box-shadow: var(--shadow-md);
}
.about-card-float .big { font-family: var(--font-display); font-size: 3rem; line-height: 1; }
.about-card-float .small { font-family: var(--font-sub); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.values { display: flex; flex-direction: column; gap: .75rem; margin-top: 2.5rem; }
.value-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; background: var(--offwhite); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.value-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.value-item .icon { width: 36px; height: 36px; background: var(--gold-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.value-item .text strong { font-family: var(--font-sub); font-weight: 700; font-size: .9rem; display: block; margin-bottom: .15rem; color: var(--dark); }
.value-item .text p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ─── SERVICES ───────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,153,59,.25); }
.service-card.pool-card::before { background: var(--pool); }
.service-card.pool-card:hover { border-color: rgba(14,143,160,.25); }
.service-card.featured { border-color: rgba(201,153,59,.3); background: var(--gold-bg); }
.sc-icon { width: 52px; height: 52px; border-radius: 10px; background: var(--gold-bg); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold); margin-bottom: 1.25rem; }
.sc-icon.pool { background: var(--pool-bg); color: var(--pool); }
.sc-title { font-family: var(--font-sub); font-weight: 700; font-size: 1.1rem; letter-spacing: .04em; margin-bottom: .5rem; color: var(--dark); }
.sc-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.sc-badge { margin-top: 1.25rem; font-family: var(--font-sub); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: .4rem; }
.sc-badge.pool { color: var(--pool); }

.pool-feature {
  margin-top: 3rem;
  background: var(--pool-bg); border: 1px solid rgba(14,143,160,.2);
  border-radius: 12px; padding: 3rem;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center;
}
.pool-types { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.5rem; margin-top: 1.5rem; }
.pool-type { display: flex; align-items: center; gap: .65rem; font-family: var(--font-sub); font-size: .95rem; color: var(--text); }
.pool-type i { color: var(--pool); font-size: .85rem; }
.pool-img { aspect-ratio: 16/10; background: var(--light); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.pool-img img { width: 100%; height: 100%; object-fit: cover; }
.pool-feature-text .gold-line { margin: 1.25rem 0; }
.pool-feature-text .lead { max-width: 100%; }
.pool-feature-text .btn { margin-top: 2rem; }

/* ─── STATS ──────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); line-height: 1; color: var(--gold); }
.stat-item .label { font-family: var(--font-sub); font-weight: 700; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .5rem; }

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-filters { display: flex; justify-content: center; gap: .65rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  font-family: var(--font-sub); font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem 1.3rem; border-radius: 2rem;
  border: 1px solid var(--border); color: var(--muted);
  background: var(--white); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px; gap: 12px;
}
.gallery-grid.full { grid-template-columns: repeat(4, 1fr); }
.g-item {
  background: var(--light); border-radius: 8px; overflow: hidden;
  position: relative; cursor: pointer; border: 1px solid var(--border);
  transition: var(--transition);
}
.g-item:hover { transform: scale(1.02); z-index: 2; box-shadow: var(--shadow-lg); }
.g-item img { width: 100%; height: 100%; object-fit: cover; }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,19,32,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay .g-cat { font-family: var(--font-sub); font-size: .72rem; letter-spacing: .12em; color: var(--gold); text-transform: uppercase; }
.g-overlay .g-title { font-family: var(--font-sub); font-weight: 700; font-size: .9rem; margin-top: .25rem; color: var(--white); }
.g-zoom { position: absolute; top: 1rem; right: 1rem; width: 34px; height: 34px; background: rgba(255,255,255,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--dark); }
.g-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-btn { width: 54px; height: 54px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); transition: transform .25s; box-shadow: var(--shadow-md); }
.g-item:hover .play-btn { transform: scale(1.12); }
.g-item.hidden { display: none; }

.gallery-empty { text-align: center; padding: 5rem 2rem; }
.gallery-empty i { font-size: 3rem; color: var(--border); margin-bottom: 1.5rem; display: block; }
.gallery-empty h3 { font-family: var(--font-sub); font-size: 1.3rem; margin-bottom: .75rem; color: var(--dark); }
.gallery-empty p { color: var(--muted); font-size: .95rem; }

/* ─── PROJECTS ───────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); box-shadow: var(--shadow-sm); }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(201,153,59,.2); }
.project-img { aspect-ratio: 16/10; background: var(--light); position: relative; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.project-card:hover .project-img img { transform: scale(1.04); }
.project-status {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-sub); font-weight: 700; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 2rem;
}
.status-completed { background: rgba(22,163,74,.9); color: var(--white); }
.status-ongoing   { background: var(--gold); color: var(--white); }
.status-upcoming  { background: var(--pool); color: var(--white); }
.project-info { padding: 1.5rem; }
.project-cat { font-family: var(--font-sub); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.project-name { font-family: var(--font-sub); font-weight: 700; font-size: 1.1rem; letter-spacing: .04em; margin-bottom: .5rem; }
.project-name a { color: var(--dark); }
.project-name a:hover { color: var(--gold); }
.project-location { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; }
.project-location i { font-size: .8rem; color: var(--gold); }

.project-hero-img { position: relative; max-height: 60vh; overflow: hidden; }
.project-hero-img img { width: 100%; object-fit: cover; max-height: 60vh; }
.project-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,19,32,.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding-bottom: 3rem;
}
.project-single-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); line-height: .95; margin-top: 1rem; color: var(--white); }
.project-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: 4rem 0; align-items: start; }
.project-gallery-section { margin-top: 3rem; }
.project-gallery-section h3 { font-family: var(--font-sub); font-size: 1.3rem; letter-spacing: .06em; margin-bottom: 1.5rem; color: var(--dark); }
.project-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.project-photo-grid .g-item { aspect-ratio: 4/3; }

.project-meta-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 2rem; position: sticky; top: 100px; box-shadow: var(--shadow-sm); }
.project-meta-card h4 { font-family: var(--font-sub); font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.25rem; color: var(--muted); }
.meta-list { list-style: none; }
.meta-list li { display: flex; justify-content: space-between; align-items: flex-start; padding: .7rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.meta-list li:last-child { border-bottom: none; }
.meta-key { font-family: var(--font-sub); font-size: .78rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; flex-shrink: 0; }
.meta-val { font-size: .9rem; color: var(--dark); text-align: right; font-weight: 600; }
.related-projects { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.related-projects h3 { font-family: var(--font-sub); font-weight: 700; font-size: 1.4rem; letter-spacing: .08em; margin-bottom: 2rem; text-transform: uppercase; color: var(--dark); }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: var(--offwhite); border: 1px solid var(--border); border-radius: 10px; padding: 2rem; transition: var(--transition); }
.testi-card:hover { border-color: rgba(201,153,59,.3); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; letter-spacing: .08em; }
.testi-text { font-size: .95rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testi-text p { margin: 0; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--white); flex-shrink: 0; }
.testi-name { font-family: var(--font-sub); font-weight: 700; font-size: .9rem; letter-spacing: .04em; color: var(--dark); }
.testi-role { font-size: .78rem; color: var(--muted); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.info-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.info-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.info-item .icon { width: 42px; height: 42px; background: var(--gold-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.info-item .detail strong { display: block; font-family: var(--font-sub); font-weight: 700; font-size: .88rem; letter-spacing: .04em; margin-bottom: .2rem; color: var(--dark); }
.info-item .detail span { font-size: .85rem; color: var(--muted); }

.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-title { font-family: var(--font-sub); font-weight: 700; font-size: 1.2rem; letter-spacing: .06em; margin-bottom: .4rem; color: var(--dark); }
.form-sub { font-size: .85rem; color: var(--muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-family: var(--font-sub); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--offwhite); border: 1px solid var(--border); border-radius: var(--radius);
  padding: .8rem 1rem; color: var(--text); font-size: .9rem;
  width: 100%; transition: border-color .25s; outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-feedback { margin-bottom: 1rem; padding: .75rem 1rem; border-radius: var(--radius); display: none; font-size: .88rem; }
.form-feedback.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; display: block; }
.form-feedback.error   { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; display: block; }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--dark) 0%, #1e2840 100%);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); line-height: .95; color: var(--white); margin-bottom: .5rem; }
.page-hero-title span { color: var(--gold); }
.page-hero .lead { color: rgba(255,255,255,.6); }
.page-hero .gold-line { background: var(--gold); }
.page-hero .tag { color: var(--gold); }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb { padding: 1rem 0; background: var(--offwhite); border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; gap: .5rem; align-items: center; list-style: none; font-family: var(--font-sub); font-size: .8rem; color: var(--muted); }
.breadcrumb ol li + li::before { content: '/'; margin-right: .5rem; color: var(--border); }
.breadcrumb ol li a { color: var(--muted); }
.breadcrumb ol li a:hover { color: var(--gold); }

/* ─── IMAGE PLACEHOLDERS ─────────────────────────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem;
  background: var(--light); color: var(--muted);
  font-family: var(--font-sub); font-size: .8rem; letter-spacing: .08em; text-align: center; padding: 1rem;
}
.img-placeholder i { font-size: 2rem; color: var(--border); display: block; }
.img-placeholder.pool i { color: var(--pool); opacity: .4; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo .logo-icon { width: 40px; height: 40px; font-size: 1.2rem; }
.footer-logo .logo-name { color: var(--white); }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .65rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); font-size: .9rem; transition: var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,153,59,.1); }
.footer-col h5 { font-family: var(--font-sub); font-weight: 700; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .25s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list { list-style: none; }
.footer-contact-list li { display: flex; gap: .65rem; font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: .75rem; align-items: flex-start; }
.footer-contact-list li i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: .2rem; }
.footer-contact-list li a { color: rgba(255,255,255,.5); }
.footer-contact-list li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom p a { color: rgba(255,255,255,.3); }
.footer-bottom p a:hover { color: var(--gold); }
.made-in { font-size: .78rem; color: rgba(255,255,255,.3); }
.made-in span { color: var(--gold); }

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; text-align: center; }
.lightbox-content img { max-width: 88vw; max-height: 80vh; border-radius: 8px; object-fit: contain; }
.lightbox-caption { margin-top: .75rem; font-family: var(--font-sub); color: rgba(255,255,255,.5); font-size: .88rem; letter-spacing: .05em; }
.lightbox-close { position: fixed; top: 1.5rem; right: 2rem; font-size: 1.5rem; color: var(--white); background: rgba(255,255,255,.12); border: none; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: .75; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); font-size: 1.3rem; color: var(--white); background: rgba(255,255,255,.12); border: none; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: .65; transition: opacity .2s; }
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ─── VIDEO MODAL ────────────────────────────────────────── */
.video-modal { position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 9998; display: none; align-items: center; justify-content: center; }
.video-modal.open { display: flex; }
.video-modal-inner { position: relative; width: min(900px, 92vw); }
.video-modal-close { position: absolute; top: -2.75rem; right: 0; font-size: 1.6rem; color: var(--white); background: none; border: none; cursor: pointer; opacity: .7; }
.video-modal-close:hover { opacity: 1; }
.video-responsive { position: relative; padding-bottom: 56.25%; background: #000; border-radius: 10px; overflow: hidden; }
.video-responsive iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ─── BLOG ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(201,153,59,.2); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-info { padding: 1.75rem; }
.blog-meta { font-family: var(--font-sub); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.blog-title { font-family: var(--font-sub); font-weight: 700; font-size: 1.2rem; margin-bottom: .75rem; }
.blog-title a { color: var(--dark); }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }

/* ─── PAGINATION ─────────────────────────────────────────── */
.nav-links { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.page-numbers { font-family: var(--font-sub); font-weight: 700; font-size: .88rem; padding: .5rem .9rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); color: var(--muted); transition: var(--transition); }
.page-numbers:hover, .page-numbers.current { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .pool-feature  { grid-template-columns: 1fr; }
  .about-grid    { gap: 3rem; }
  .project-detail-grid { grid-template-columns: 1fr; }
  .project-meta-card { position: static; }
}
@media (max-width: 768px) {
  .primary-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .hero-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid, .projects-grid, .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card-top { display: none; }
  .about-card-float { right: 0; bottom: -2rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}
