/* ============================================================
   YES WIN PROPERTIES — Premium UI Stylesheet v3
   Blue + Green + White | Ultra-Premium Real Estate
   ============================================================ */

/* ── Google Fonts imported in HTML ── */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand */
  --blue-950:  #07142E;
  --blue-900:  #0D2756;
  --blue-800:  #1A3A72;
  --blue-700:  #1B4F9B;
  --blue-600:  #2261B8;
  --blue-500:  #2B7DC8;
  --blue-400:  #4A95D8;
  --blue-300:  #74B3E8;
  --blue-100:  #E0EEFC;
  --blue-50:   #F0F7FF;

  --green-700: #1E7A30;
  --green-600: #28963F;
  --green-500: #3DAA4A;
  --green-400: #52C261;
  --green-100: #E6F7EA;
  --green-50:  #F0FBF2;

  /* Neutrals */
  --white:     #FFFFFF;
  --off-white: #F8FAFE;
  --gray-50:   #F3F5FA;
  --gray-100:  #E8EBF4;
  --gray-200:  #D0D5E8;
  --gray-300:  #B0B8D1;
  --gray-400:  #8791AE;
  --gray-500:  #5E6B8A;
  --gray-600:  #3E4B6A;
  --gray-700:  #27334F;
  --gray-800:  #172035;
  --gray-900:  #0B1120;

  /* Text */
  --text-h:    var(--gray-800);
  --text-body: var(--gray-600);
  --text-muted:var(--gray-400);

  /* Semantic */
  --primary:      var(--blue-700);
  --primary-dk:   var(--blue-900);
  --accent:       var(--green-500);
  --accent-dk:    var(--green-700);

  /* Typography */
  --ff-display: 'Outfit', sans-serif;
  --ff-body:    'Inter', sans-serif;

  /* Spacing */
  --sec-pad: 7rem 0;
  --cw:      1280px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:   0 2px 8px rgba(27,79,155,.07);
  --sh-md:   0 6px 24px rgba(27,79,155,.11);
  --sh-lg:   0 16px 56px rgba(27,79,155,.16);
  --sh-xl:   0 32px 80px rgba(27,79,155,.22);
  --sh-green:0 8px 28px rgba(61,170,74,.28);
  --sh-blue: 0 8px 28px rgba(43,125,200,.32);

  /* Easing */
  --ease:   cubic-bezier(.16,1,.3,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img     { max-width: 100%; height: auto; display: block; }
a       { color: inherit; text-decoration: none; transition: color .2s; }
ul      { list-style: none; }
address { font-style: normal; }
button  { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: var(--sec-pad); }

/* ── Section Tag (eyebrow label) ── */
.section-tag {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  width: fit-content;
}

.tag-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.tag-line--light { background: rgba(255,255,255,.4); }

.tag-text {
  font-family: var(--ff-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
}
.tag-text--light { color: rgba(255,255,255,.75); }

/* ── Section Heading ── */
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-h);
  margin-bottom: .85rem;
}

.section-heading.centered { text-align: center; }

.heading-accent {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.heading-accent-green {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.75;
}

.section-sub.centered {
  text-align: center;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4.5rem;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-display);
  font-size: .92rem; font-weight: 600;
  padding: .85rem 1.85rem;
  border-radius: var(--r-full);
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: .02em;
}

.btn svg { flex-shrink: 0; }

/* Primary – Blue */
.btn-primary {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(43,125,200,.42);
}
.btn-primary:active { transform: none; }

/* Ghost – outlined white (hero) */
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.75);
  transform: translateY(-2px);
}

/* Outline blue */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--blue-200, #b3ceee);
}
.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* White (on image overlay) */
.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

.btn-sm { font-size: .82rem; padding: .62rem 1.25rem; }
.btn-block { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 1rem; }

/* ============================================================
   5. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.animate-fade-up { animation: fadeUp .85s var(--ease) both; }

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .9rem 0;
  transition: all .4s var(--ease);
  overflow: visible;
}

.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 32px rgba(27,79,155,.1);
  padding: .6rem 0;
}

.nav-container { display: flex; align-items: center; gap: 1.5rem; width: 100%; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

.logo-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: var(--r-sm);
  box-shadow: var(--sh-blue);
  transition: box-shadow .3s, transform .3s;
}
.nav-logo:hover .logo-icon { transform: scale(1.05); box-shadow: 0 10px 28px rgba(43,125,200,.45); }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
  font-family: var(--ff-display); font-size: 1.15rem; font-weight: 800;
}
.navbar:not(.scrolled) .logo-name { color: #fff; }
.navbar.scrolled .logo-name        { color: var(--text-h); }

.logo-sub {
  font-family: var(--ff-display);
  font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
}

/* Image logo */
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform .3s, opacity .3s;
}
.logo-img--footer {
  height: 72px;
}
.nav-logo:hover .logo-img { transform: scale(1.04); opacity: .9; }


/* Nav links */
.nav-links { display: flex; align-items: center; gap: .15rem; margin-left: auto; }

.nav-link {
  font-family: var(--ff-display);
  font-size: .88rem; font-weight: 500;
  padding: .5rem .95rem;
  border-radius: var(--r-sm);
  transition: all .2s; position: relative;
}

.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,.82); }
.navbar.scrolled .nav-link        { color: var(--gray-600); }

.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active { color: #fff; }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active       { color: var(--primary); }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: .65rem .75rem;
  margin-left: auto;
  flex-shrink: 0;
  position: relative; z-index: 1001;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.navbar.scrolled .hamburger:hover { background: rgba(27,79,155,.08); }
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s, background .3s;
}
.navbar.scrolled .hamburger span { background: var(--gray-700); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.hamburger.open span { background: var(--gray-700) !important; }

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(125deg,
    rgba(7,20,46,.95) 0%,
    rgba(13,39,86,.82) 40%,
    rgba(27,79,155,.55) 75%,
    rgba(30,122,48,.2) 100%
  );
}

/* Decorative floating shapes */
.hero-shape {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
}
.hero-shape--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(43,125,200,.12) 0%, transparent 70%);
}
.hero-shape--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: 10%;
  background: radial-gradient(circle, rgba(61,170,74,.08) 0%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: 10rem; padding-bottom: 8rem;
  max-width: 800px;
}

/* Eyebrow with lines */
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  display: block; width: 40px; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4));
}

.eyebrow-text {
  font-family: var(--ff-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.08;
  color: #fff; margin-bottom: 1.5rem;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #52C261 0%, #A8E6B4 50%, #52C261 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s linear infinite;
}
@keyframes gradShift {
  from { background-position: 0%; }
  to   { background-position: 200%; }
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.78; margin-bottom: 2.5rem;
  max-width: 580px;
}
.br-d { display: block; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4.5rem; }

/* Hero stats */
.hero-stats {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  width: fit-content;
}

.hstat {
  padding: 1.35rem 2.25rem;
  text-align: center;
  position: relative;
  transition: background .3s;
}
.hstat:hover { background: rgba(255,255,255,.08); }

.hstat-num {
  font-family: var(--ff-display);
  font-size: 2.2rem; font-weight: 900;
  color: #fff; line-height: 1;
  margin-bottom: .3rem;
}
.hstat-num span:last-child { color: var(--green-400); font-size: 1.6rem; }

.hstat-label {
  font-size: .7rem; font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .1em;
  white-space: nowrap;
}

.hstat-sep { width: 1px; background: rgba(255,255,255,.12); align-self: stretch; }

/* Scroll indicator */
.scroll-cta {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  text-decoration: none;
}
.scroll-cta__mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 13px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-cta__wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
.scroll-cta__text {
  font-family: var(--ff-display);
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}

/* ============================================================
   8. ABOUT
   ============================================================ */
.about { background: var(--off-white); position: relative; overflow: hidden; }

/* Background pattern */
.about::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--green-50) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  margin-bottom: 5rem;
  position: relative;
}

/* Image column */
.about-visual { position: relative; }

.about-img-frame {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.about-img-border {
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  border: 2px solid rgba(27,79,155,.1);
  pointer-events: none; z-index: 1;
}

.about-img {
  width: 100%; height: 520px; object-fit: cover;
  transition: transform .7s var(--ease);
}
.about-visual:hover .about-img { transform: scale(1.03); }

/* Bottom color bar */
.about-img-frame::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--blue-700), var(--green-500));
  z-index: 2;
}

/* Floating cards */
.about-float {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .75rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: .85rem 1.1rem;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(27,79,155,.08);
  animation: floatBob 3s ease-in-out infinite;
}
.about-float--tl { top: 2rem; left: -2rem; animation-delay: 0s; }
.about-float--br { bottom: 3rem; right: -2rem; animation-delay: .8s; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.float-icon { font-size: 1.5rem; }
.float-info { display: flex; flex-direction: column; }
.float-info strong { font-family: var(--ff-display); font-size: .88rem; font-weight: 700; color: var(--text-h); }
.float-info span   { font-size: .75rem; color: var(--text-muted); }

/* Text column */
.about-copy { position: relative; }

.about-lead { font-size: 1.1rem; color: var(--text-h); line-height: 1.8; margin: 1.25rem 0 .85rem; }
.about-body { font-size: .95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 2rem; }

.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }

.pillar {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.pillar:hover { transform: translateX(6px); box-shadow: var(--sh-md); border-color: var(--blue-100); }

.pillar-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: var(--r-sm);
  box-shadow: var(--sh-blue);
}
.pillar-ico--green {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: var(--sh-green);
}

.pillar-content { display: flex; flex-direction: column; gap: .15rem; }
.pillar-content strong { font-family: var(--ff-display); font-size: .95rem; font-weight: 700; color: var(--text-h); }
.pillar-content span   { font-size: .82rem; color: var(--text-body); }

/* Stats ribbon */
.stats-ribbon {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}

.srib-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
  transition-delay: var(--delay,0s);
}

.srib-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--green-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.srib-card:hover::before { transform: scaleX(1); }
.srib-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.srib-icon { font-size: 2rem; margin-bottom: .75rem; }

.srib-num {
  font-family: var(--ff-display);
  font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
  margin-bottom: .35rem;
}
.srib-card:nth-child(even) .srib-num {
  background: linear-gradient(135deg, var(--green-700), var(--green-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.srib-label { font-size: .8rem; color: var(--text-muted); letter-spacing: .04em; }

/* ============================================================
   9. PROJECTS
   ============================================================ */
.projects { background: var(--white); position: relative; overflow: hidden; }

.projects::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: var(--gray-50);
  pointer-events: none; z-index: 0;
}

.projects .container { position: relative; z-index: 1; }

.projects-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}

/* Project card */
.proj-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
  position: relative;
}
.proj-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-400), var(--green-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 10;
}
.proj-card:hover::before { transform: scaleX(1); }
.proj-card:hover { transform: translateY(-12px); box-shadow: var(--sh-xl); }

.proj-img-card {
  display: flex;
  flex-direction: column;
}

.proj-img-card .proj-img-wrap {
  height: 420px;
  background: #fff;
}

.proj-img-card .proj-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s var(--ease);
}
.proj-img-card:hover .proj-img { transform: scale(1.04); }

.proj-img-footer {
  padding: 1.1rem 1.25rem;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  gap: 0.75rem;
}

.proj-img-footer .proj-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-h);
  margin: 0;
}

/* Featured card */
.proj-card--featured {
  border: 2px solid var(--blue-300);
  box-shadow: var(--sh-md), 0 0 0 4px rgba(43,125,200,.08);
}
.proj-featured-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  font-family: var(--ff-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; padding: .3rem 1.1rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(27,79,155,.3);
}

/* Image */
.proj-img-wrap { position: relative; height: 240px; overflow: hidden; }
.proj-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.proj-card:hover .proj-img { transform: scale(1.08); }

.proj-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(27,79,155,.9);
  backdrop-filter: blur(8px);
  color: #fff; font-family: var(--ff-display);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  padding: .3rem .85rem; border-radius: var(--r-full);
}

.proj-status {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--ff-display);
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  padding: .3rem .75rem; border-radius: var(--r-full);
}
.status-green { background: rgba(34,197,94,.15); color: #16a34a; border: 1px solid rgba(34,197,94,.3); }
.status-blue  { background: rgba(27,79,155,.12); color: var(--blue-700); border: 1px solid rgba(27,79,155,.25); }

.proj-hover-cta {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,20,46,.75), rgba(13,39,86,.35));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.proj-card:hover .proj-hover-cta { opacity: 1; }
.proj-hover-cta a { display: none; }

/* Body */
.proj-body { padding: 1.5rem; }

.proj-loc {
  display: flex; align-items: center; gap: .35rem;
  font-size: .78rem; color: var(--text-muted); margin-bottom: .5rem;
}

.proj-name { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--text-h); margin-bottom: .45rem; }
.proj-desc { font-size: .87rem; color: var(--text-body); line-height: 1.65; margin-bottom: 1rem; }

.proj-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.25rem; }

.chip {
  font-family: var(--ff-display);
  font-size: .7rem; font-weight: 600;
  padding: .28rem .65rem;
  border-radius: var(--r-full);
  letter-spacing: .04em;
}
.chip--blue  { background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100); }
.chip--green { background: var(--green-100); color: var(--green-700); border: 1px solid rgba(61,170,74,.25); }

.proj-footer { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Section CTA */
.section-cta {
  text-align: center; margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--blue-50), var(--green-50));
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.section-cta p { font-size: 1.05rem; color: var(--text-body); }

/* ============================================================
   10. SERVICES
   ============================================================ */
.services {
  background: linear-gradient(160deg, var(--blue-950) 0%, var(--blue-900) 50%, var(--blue-800) 100%);
  position: relative; overflow: hidden;
}

/* Decorative blob */
.services::before {
  content: '';
  position: absolute; top: -180px; right: -180px;
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,170,74,.1) 0%, transparent 65%);
  pointer-events: none;
}
.services::after {
  content: '';
  position: absolute; bottom: -120px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,125,200,.12) 0%, transparent 65%);
  pointer-events: none;
}

.services-inner { position: relative; z-index: 1; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* Service card */
.svc-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  transition: all .35s var(--ease);
  cursor: default; outline-offset: 3px;
}

/* Number watermark */
.svc-num {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--ff-display);
  font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none; user-select: none;
  transition: color .35s;
}

/* Top gradient bar */
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--green-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}

.svc-card:hover,
.svc-card:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,.35);
  outline: none;
}
.svc-card:hover::before,
.svc-card:focus-visible::before { transform: scaleX(1); }
.svc-card:hover .svc-num,
.svc-card:focus-visible .svc-num { color: rgba(255,255,255,.08); }

.svc-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  color: var(--green-400);
  margin-bottom: 1.25rem;
  transition: background .3s, box-shadow .3s, transform .3s var(--spring);
}
.svc-card:hover .svc-icon,
.svc-card:focus-visible .svc-icon {
  background: rgba(61,170,74,.2);
  box-shadow: 0 0 0 8px rgba(61,170,74,.1);
  transform: scale(1.08);
}

.svc-title { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .65rem; }
.svc-desc  { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.72; }

.svc-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--green-400);
  margin-top: 1.25rem;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s, transform .3s var(--ease);
}
.svc-card:hover .svc-arrow,
.svc-card:focus-visible .svc-arrow { opacity: 1; transform: none; }

/* ============================================================
   11. ENQUIRY
   ============================================================ */
.enquiry { background: var(--gray-50); }

.enquiry-wrap {
  display: grid; grid-template-columns: 1fr 1.25fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s;
}

.enquiry-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-400), var(--green-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 10;
}
.enquiry-wrap:hover::before { transform: scaleX(1); }
.enquiry-wrap:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,.15); }

/* Left panel */
.enquiry-panel {
  position: relative; overflow: hidden;
  min-height: 600px;
}
.enq-panel-bg {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, var(--blue-950) 0%, var(--blue-800) 60%, var(--green-700) 100%);
  z-index: 0;
}
.enq-panel-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
}

.enq-panel-content {
  position: relative; z-index: 1;
  padding: 3.5rem 2.5rem;
  height: 100%; display: flex; flex-direction: column; gap: 0;
}

.enq-panel-content .section-tag { margin-bottom: 1rem; }

.enq-desc { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 2rem; }

.enq-trust { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2.5rem; }

.trust-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .88rem; color: rgba(255,255,255,.7);
}
.trust-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(61,170,74,.25);
  border: 1px solid rgba(61,170,74,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--green-400);
  flex-shrink: 0;
}

.enq-contact-quick { display: flex; flex-direction: column; gap: .85rem; margin-top: auto; }

.qcontact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  transition: background .25s, transform .25s;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.qcontact-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.qcontact-item:hover::before { transform: scaleX(1); }
.qcontact-item:hover { background: rgba(255,255,255,.12); transform: translateX(4px) translateY(-4px); box-shadow: var(--sh-md); }
.qcontact-item small { display: block; font-size: .72rem; color: rgba(255,255,255,.5); margin-bottom: .15rem; }
.qcontact-item strong { font-family: var(--ff-display); font-size: .95rem; font-weight: 700; color: #fff; }

.qcontact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary);
  border-radius: var(--r-sm);
}
.qcontact-icon--green { background: var(--accent); }

/* Right form */
.enquiry-form-wrap {
  background: var(--white);
  padding: 3.5rem 3rem;
}

.form-header { margin-bottom: 2rem; }
.form-title { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 800; color: var(--text-h); margin-bottom: .35rem; }
.form-sub   { font-size: .88rem; color: var(--text-muted); }

.enq-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.fgroup { display: flex; flex-direction: column; gap: .4rem; }

.fgroup label {
  font-family: var(--ff-display);
  font-size: .82rem; font-weight: 600;
  color: var(--text-h);
}
.req { color: var(--accent); }

.finput-wrap {
  position: relative;
}
.finput-icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--gray-300); pointer-events: none;
  transition: color .25s;
}
.finput-wrap--textarea .finput-icon { display: none; }

.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  padding: .85rem 1rem .85rem 2.75rem;
  font-family: var(--ff-body); font-size: .92rem;
  color: var(--text-h);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none;
  appearance: none; -webkit-appearance: none;
}

.fgroup textarea {
  padding-left: 1rem; resize: vertical; min-height: 110px;
}

.fgroup input::placeholder,
.fgroup textarea::placeholder { color: var(--gray-300); }

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27,79,155,.1);
}
.fgroup input:focus ~ .finput-icon,
.fgroup select:focus ~ .finput-icon { color: var(--primary); }

.finput-wrap--select::after {
  content: '';
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--gray-400);
  pointer-events: none;
}
.fgroup select { padding-right: 2.5rem; cursor: pointer; }

.fgroup select option { background: var(--white); color: var(--text-h); }

.fgroup input.error { border-color: #ef4444; }

.ferr { font-size: .75rem; color: #ef4444; min-height: 1em; }

.form-success {
  display: flex; align-items: center; gap: .75rem;
  background: var(--green-100);
  border: 1px solid rgba(61,170,74,.3);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  color: var(--green-700);
  font-family: var(--ff-display); font-size: .92rem; font-weight: 600;
}
.success-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
}

/* ============================================================
   12. CONTACT
   ============================================================ */
.contact { background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }

.contact-info {
  display: flex; flex-direction: column; gap: 0;
  background: linear-gradient(155deg, var(--blue-900), var(--blue-700));
  border-radius: var(--r-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s;
}

.contact-info::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-400), var(--green-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 10;
}
.contact-info:hover::before { transform: scaleX(1); }
.contact-info:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }

.cinfo-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.cinfo-item:last-child { border-bottom: none; }
.cinfo-item:hover { background: rgba(255,255,255,.05); }

.cinfo-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  transition: background .25s;
}
.cinfo-ico--green { background: rgba(61,170,74,.2); }
.cinfo-item:hover .cinfo-ico { background: rgba(255,255,255,.18); }

.cinfo-text { display: flex; flex-direction: column; gap: .35rem; }
.cinfo-text h3 { font-family: var(--ff-display); font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .12em; }
.cinfo-text address,
.cinfo-text a,
.cinfo-text span { font-size: .88rem; color: rgba(255,255,255,.85); line-height: 1.65; display: block; }
.cinfo-text a:hover { color: var(--green-400); }

.cinfo-social {
  padding: 1.5rem 2rem;
}
.cinfo-social h3 { font-family: var(--ff-display); font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }

/* Social buttons */
.social-row { display: flex; gap: .6rem; flex-wrap: wrap; }

.soc-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.65);
  transition: all .25s;
}
.soc-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: var(--sh-blue); }
.soc-btn--wa:hover { background: #25D366; border-color: #25D366; box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* Map */
.contact-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.contact-map::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-400), var(--green-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 10;
  pointer-events: none;
}
.contact-map:hover::before { transform: scaleX(1); }
.contact-map:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }
.map-frame { height: 500px; }
.map-frame iframe { width: 100%; height: 100%; display: block; border: none; }

/* ============================================================
   13. FOOTER
   ============================================================ */
/* ============================================================
   13. FOOTER — Premium Redesign
   ============================================================ */
.footer {
  background: var(--blue-950);
  position: relative;
  margin-top: 5rem;
}

.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at right top, rgba(61,170,74,.05) 0%, transparent 60%),
              radial-gradient(circle at left bottom, rgba(43,125,200,.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Top accent line */
.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--accent), var(--blue-400));
  width: 100%;
}

/* Inner body */
.footer-inner {
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 1;
}

/* Centered brand block */
.footer-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
}

.footer-logo-link { display: inline-block; }

.footer-tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
  line-height: 1.7;
  max-width: 560px;
}

/* Dividers */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  margin: 2.5rem 0;
}

/* Contact Pills */
.footer-contact-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-pill {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: .75rem 1.4rem;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.footer-pill::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
a.footer-pill:hover::before { transform: scaleX(1); }

a.footer-pill {
  cursor: pointer;
  text-decoration: none;
}

a.footer-pill:hover {
  background: rgba(43,125,200,.15);
  border-color: rgba(43,125,200,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}

.fpill-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(61,170,74,.12);
  border: 1px solid rgba(61,170,74,.2);
  color: var(--accent);
}

.fpill-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.fpill-text small {
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  font-family: var(--ff-display);
}

.fpill-text {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* Social + Nav Row */
.footer-social-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Social icons */
.social-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer .soc-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: all .3s var(--ease);
}
.footer .soc-btn:hover {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: translateY(-4px); box-shadow: 0 10px 24px rgba(27,79,155,.4);
}
.footer .soc-btn--wa:hover {
  background: #25D366; border-color: #25D366; box-shadow: 0 10px 24px rgba(37,211,102,.4);
}

/* Inline nav */
.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1.5rem;
  align-items: center;
}

.footer-nav-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  font-family: var(--ff-display);
  font-weight: 500;
  transition: color .2s;
  position: relative;
}

.footer-nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s var(--ease);
}

.footer-nav-links a:hover { color: #fff; }
.footer-nav-links a:hover::after { width: 100%; }

/* Bottom Bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.75rem 0; position: relative; z-index: 1; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.35); }
.footer-credits { font-family: var(--ff-display); font-size: .8rem !important; color: rgba(255,255,255,.25) !important; }



/* ============================================================
   14. WhatsApp FAB
   ============================================================ */
.wa-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; align-items: center; gap: .6rem;
  background: #25D366; color: #fff;
  padding: .75rem 1.25rem .75rem .9rem;
  border-radius: var(--r-full);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  font-family: var(--ff-display); font-size: .85rem; font-weight: 700;
  transition: transform .3s var(--spring), box-shadow .3s;
  animation: waFabPulse 3s ease-in-out 2s infinite;
}
.wa-fab:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 36px rgba(37,211,102,.65); }
.wa-label { white-space: nowrap; }

@keyframes waFabPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,.8), 0 0 0 14px rgba(37,211,102,.07); }
}

/* ============================================================
   15. RESPONSIVE — TABLET ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sec-pad: 5.5rem 0; }

  .about-grid       { grid-template-columns: 1fr; gap: 3.5rem; }
  .about::before    { display: none; }
  .about-float--tl  { left: 1rem; }
  .about-float--br  { right: 1rem; }
  .about-img        { height: 400px; }
  .stats-ribbon     { grid-template-columns: repeat(2,1fr); }
  .projects-grid    { grid-template-columns: repeat(2,1fr); }
  .services-grid    { grid-template-columns: repeat(2,1fr); }
  .enquiry-wrap     { grid-template-columns: 1fr; }
  .enquiry-panel    { min-height: auto; }
  .contact-grid     { grid-template-columns: 1fr; }
  .map-frame        { height: 380px; }
  .footer-social-nav { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   16. RESPONSIVE — MOBILE ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --sec-pad: 4.5rem 0; }

  /* Navbar — logo only on mobile */
  .nav-links  { display: none !important; }
  .hamburger  { display: none !important; }
  .nav-cta    { display: none !important; }

  /* Hero */
  .hero-content   { padding-top: 7.5rem; padding-bottom: 5rem; }
  .hero-heading   { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-desc      { font-size: .95rem; }
  .br-d           { display: none; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats     { flex-direction: column; width: 100%; border-radius: var(--r-md); }
  .hstat          { padding: 1rem 1.5rem; }
  .hstat-sep      { width: 100%; height: 1px; }
  .scroll-cta     { display: none; }

  /* About */
  .about-float { display: none; }
  .about-img   { height: 280px; }
  .stats-ribbon { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }
  .proj-img-card .proj-img-wrap { height: 320px; }
  .proj-featured-badge { font-size: .68rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Enquiry */
  .enquiry-form-wrap { padding: 2rem 1.5rem; }
  .form-row-2        { grid-template-columns: 1fr; }

  /* Contact */
  .map-frame   { height: 300px; }

  /* Footer */
  .footer-contact-pills { flex-direction: column; align-items: center; }
  .footer-pill { width: 100%; max-width: 360px; border-radius: var(--r-lg); }
  .footer-social-nav { flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
  .footer-nav-links { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* WA Fab */
  .wa-fab    { bottom: 1.25rem; right: 1.25rem; padding: .7rem; border-radius: 50%; }
  .wa-label  { display: none; }
}

@media (max-width: 480px) {
  .stats-ribbon { grid-template-columns: 1fr; }
  .srib-card    { padding: 1.5rem; }
}
