/* =====================================================================
   UNIVERSAL PROPERTY IMPROVEMENT & CONSTRUCTION — Shared Stylesheet
   ===================================================================== */

:root {
  --c-navy:        #1a3162;
  --c-navy-dk:     #0f2040;
  --c-navy2:       #243d75;
  --c-yellow:      #ffd200;
  --c-yellow-dk:   #e6be00;
  --c-surface:     #f5f7fa;
  --c-white:       #ffffff;
  --c-text:        #1a1a2e;
  --c-text2:       #4a5068;
  --c-text3:       #8888aa;
  --c-border:      #dde1f0;

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-head:    'Poppins', sans-serif;
  --ff-body:    'Inter', sans-serif;

  --nav-h:      72px;
  --radius:     10px;
  --radius-lg:  18px;
  --radius-pill:100px;

  --shadow:        0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.14);
  --shadow-yellow: 0 8px 24px rgba(255,210,0,.45);
  --ease: cubic-bezier(.4,0,.2,1);
  --t:   .3s var(--ease);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; overflow-x:hidden; }
body { font-family:var(--ff-body); color:var(--c-text); background:var(--c-white); line-height:1.6; overflow-x:hidden; }
img  { max-width:100%; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input, select, textarea { font-family:inherit; }
.container { max-width:1260px; margin:0 auto; padding:0 24px; }

/* =====================================================================
   UTILITIES
   ===================================================================== */
.tag {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--ff-head); font-size:.75rem; font-weight:700;
  letter-spacing:3px; text-transform:uppercase; color:var(--c-yellow);
  margin-bottom:14px;
}
.tag::before { content:''; width:28px; height:2px; background:var(--c-yellow); flex-shrink:0; }

.section-h {
  font-family:var(--ff-head);
  font-size:clamp(1.85rem,3.5vw,2.8rem);
  font-weight:800; line-height:1.15; color:var(--c-text);
}
.section-h span { color:var(--c-navy); }
.section-h.light { color:#fff; }
.section-h.light span { color:var(--c-yellow); }

.section-sub {
  font-size:1rem; color:var(--c-text2); line-height:1.75;
  max-width:540px; margin-top:10px;
}
.section-sub.light { color:rgba(255,255,255,.6); }

/* Buttons */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:var(--radius);
  font-family:var(--ff-head); font-weight:600; font-size:.9rem;
  transition:var(--t); border:2px solid transparent; white-space:nowrap;
}
.btn-primary  { background:var(--c-yellow); color:var(--c-navy); box-shadow:var(--shadow-yellow); }
.btn-primary:hover { background:var(--c-yellow-dk); transform:translateY(-2px); box-shadow:0 12px 32px rgba(255,210,0,.55); }
.btn-ghost    { background:transparent; color:#fff; border-color:rgba(255,255,255,.45); }
.btn-ghost:hover  { border-color:#fff; background:rgba(255,255,255,.1); transform:translateY(-2px); }
.btn-outline  { background:transparent; color:var(--c-navy); border-color:var(--c-navy); }
.btn-outline:hover { background:var(--c-navy); color:#fff; transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.btn-white    { background:#fff; color:var(--c-navy); border-color:#fff; }
.btn-white:hover { background:transparent; color:#fff; border-color:rgba(255,255,255,.6); }
.btn-wghost   { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.5); }
.btn-wghost:hover { border-color:#fff; background:rgba(255,255,255,.1); }
.btn-yellow   { background:var(--c-yellow); color:var(--c-navy); border-color:var(--c-yellow); }
.btn-yellow:hover { background:var(--c-yellow-dk); transform:translateY(-2px); box-shadow:var(--shadow-yellow); }

/* Scroll reveal */
.sr { opacity:0; transform:translateY(36px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
.sr.left  { transform:translateX(-36px); }
.sr.right { transform:translateX( 36px); }
.sr.vis   { opacity:1; transform:none; }

/* Card initial states */
.svc-card, .why-card, .g-item, .stat-box {
  opacity:0; transform:translateY(28px);
  transition:opacity .55s ease, transform .55s ease;
}
.g-item { transform:scale(.95); }

/* =====================================================================
   SCROLL PROGRESS
   ===================================================================== */
#progress {
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--c-navy),var(--c-yellow));
  z-index:9999; transition:width .1s linear;
}

/* =====================================================================
   NAVBAR
   ===================================================================== */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h); display:flex; align-items:center;
  transition:background .35s, box-shadow .35s;
}
.nav.solid {
  background:rgba(26,49,98,.97);
  backdrop-filter:blur(12px);
  box-shadow:0 2px 20px rgba(0,0,0,.35);
}
.nav .container { display:flex; align-items:center; justify-content:space-between; width:100%; }

.nav-logo .brand { font-family:var(--ff-head); font-size:1.15rem; font-weight:800; color:#fff; line-height:1.1; letter-spacing:-.3px; }
.nav-logo .brand em { color:var(--c-yellow); font-style:normal; }
.nav-logo .sub { font-size:.58rem; color:rgba(255,255,255,.45); letter-spacing:2.5px; text-transform:uppercase; margin-top:2px; }

.nav-links { display:flex; align-items:center; gap:4px; }
.nav-links a {
  font-family:var(--ff-head); font-size:.85rem; font-weight:500;
  color:rgba(255,255,255,.8); padding:8px 12px; border-radius:var(--radius);
  transition:var(--t); position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%) scaleX(0);
  width:70%; height:2px; background:var(--c-yellow); transition:transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color:#fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform:translateX(-50%) scaleX(1); }
.nav-links .nav-cta {
  background:var(--c-yellow); color:var(--c-navy) !important; padding:9px 20px;
  border-radius:var(--radius); font-weight:700; box-shadow:var(--shadow-yellow); margin-left:8px;
}
.nav-links .nav-cta::after { display:none; }
.nav-links .nav-cta:hover { background:var(--c-yellow-dk); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; padding:8px; }
.hamburger span { display:block; width:24px; height:2px; background:#fff; transition:var(--t); transform-origin:center; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display:none; position:fixed; inset:0; top:var(--nav-h);
  background:rgba(15,32,64,.98); z-index:999; flex-direction:column;
  align-items:center; justify-content:center; gap:8px;
  padding:40px 24px; opacity:0; pointer-events:none; transition:opacity .3s var(--ease);
}
.mobile-menu.open { display:flex; opacity:1; pointer-events:all; }
.mobile-menu a {
  font-family:var(--ff-head); font-size:1.65rem; font-weight:800;
  color:rgba(255,255,255,.8); padding:10px 40px; border-radius:var(--radius);
  transition:var(--t); width:100%; max-width:320px; text-align:center;
}
.mobile-menu a:hover { color:var(--c-yellow); background:rgba(255,210,0,.08); }
.mobile-menu .m-cta { background:var(--c-yellow); color:var(--c-navy) !important; margin-top:12px; font-weight:800; }
.mobile-menu .m-cta:hover { background:var(--c-yellow-dk); }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  min-height:360px; display:flex; align-items:center;
  position:relative; background:var(--c-navy); overflow:hidden;
  padding-top:var(--nav-h);
}
.page-banner-bg {
  position:absolute; inset:0; background-size:cover; background-position:center; opacity:.2;
}
.page-banner::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(26,49,98,.95) 0%,rgba(26,49,98,.7) 100%);
}
.page-banner-content { position:relative; z-index:2; padding:60px 0; }
.page-banner h1 {
  font-family:var(--ff-display); font-size:clamp(3rem,7vw,6rem);
  color:#fff; line-height:.95; margin-bottom:16px; letter-spacing:1px;
}
.page-banner h1 span { color:var(--c-yellow); }
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-family:var(--ff-head); font-size:.85rem; color:rgba(255,255,255,.45);
}
.breadcrumb a { color:var(--c-yellow); }
.breadcrumb a:hover { opacity:.8; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  min-height:100vh; position:relative; display:flex;
  align-items:center; overflow:hidden; background:var(--c-navy);
}
.hero-bg {
  position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1587582423116-ec07293f0395?auto=format&fit=crop&w=1920&q=80');
  background-size:cover; background-position:center;
  transform:scale(1.06); transition:transform 9s ease;
}
.hero.loaded .hero-bg { transform:scale(1); }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(110deg,rgba(15,32,64,.92) 0%,rgba(15,32,64,.75) 55%,rgba(15,32,64,.55) 100%);
}
.hero-content { position:relative; z-index:2; padding:96px 0 32px; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,210,0,.15); border:1px solid rgba(255,210,0,.4);
  color:var(--c-yellow); padding:6px 14px; border-radius:var(--radius-pill);
  font-family:var(--ff-head); font-size:.7rem; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase; margin-bottom:14px;
  opacity:0; transform:translateY(16px);
}
.hero-title {
  font-family:var(--ff-display); font-size:clamp(2.6rem,5vw,4.8rem);
  line-height:.95; color:#fff; letter-spacing:1px;
  margin-bottom:14px; opacity:0; transform:translateY(40px);
}
.hero-title .hl  { color:var(--c-yellow); }
.hero-title .out { -webkit-text-stroke:2px rgba(255,255,255,.35); color:transparent; }
.hero-desc {
  font-size:clamp(.88rem,1.1vw,.98rem); color:rgba(255,255,255,.72);
  max-width:500px; line-height:1.7; margin-bottom:22px;
  opacity:0; transform:translateY(28px);
}
.hero-btns  { display:flex; align-items:center; gap:12px; flex-wrap:wrap; opacity:0; transform:translateY(20px); }
.hero-stats {
  display:flex; align-items:center; gap:32px; flex-wrap:wrap;
  margin-top:28px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1);
  opacity:0;
}
.h-stat .num { font-family:var(--ff-display); font-size:2rem; color:var(--c-yellow); line-height:1; }
.h-stat .lbl { font-size:.68rem; color:rgba(255,255,255,.5); letter-spacing:1.5px; text-transform:uppercase; margin-top:3px; }

.scroll-hint {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  color:rgba(255,255,255,.4); font-size:.68rem; letter-spacing:2px; text-transform:uppercase;
  z-index:2; animation:bounceY 2.2s ease-in-out infinite;
}
.scroll-hint .ring {
  width:30px; height:30px; border:1px solid rgba(255,255,255,.25); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:.65rem;
}
@keyframes bounceY { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { padding:100px 0; background:var(--c-surface); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; }
.about-img img { width:100%; height:100%; object-fit:cover; transition:transform 7s ease; }
.about-img:hover img { transform:scale(1.05); }
.about-chip {
  position:absolute; bottom:-18px; right:-18px;
  background:var(--c-navy); color:#fff;
  padding:18px 22px; border-radius:var(--radius-lg); text-align:center;
  box-shadow:0 8px 32px rgba(26,49,98,.4);
}
.about-chip .big { font-family:var(--ff-display); font-size:3rem; color:var(--c-yellow); line-height:1; display:block; }
.about-chip .sm  { font-family:var(--ff-head); font-size:.65rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; opacity:.75; margin-top:4px; }
.about-quote {
  margin:22px 0; padding:18px 22px;
  border-left:4px solid var(--c-yellow);
  background:rgba(255,210,0,.07); border-radius:0 var(--radius) var(--radius) 0;
  font-style:italic; color:var(--c-text2); line-height:1.75; font-size:.95rem;
}
.about-body  { color:var(--c-text2); line-height:1.8; font-size:.94rem; margin-bottom:14px; }
.check-list  { display:flex; flex-direction:column; gap:10px; margin-top:24px; }
.check-item  { display:flex; align-items:center; gap:10px; font-family:var(--ff-head); font-size:.92rem; font-weight:600; color:var(--c-text); }
.check-item i{ color:var(--c-navy); width:18px; flex-shrink:0; }

/* =====================================================================
   WHY CHOOSE US
   ===================================================================== */
.why { padding:100px 0; background:var(--c-navy); }
.why-head { text-align:center; margin-bottom:60px; }
.why-head .tag { justify-content:center; color:var(--c-yellow); }
.why-head .tag::before { display:none; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.why-card {
  padding:30px 26px; background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg); transition:var(--t);
}
.why-card:hover { background:rgba(255,210,0,.1); border-color:rgba(255,210,0,.3); transform:translateY(-4px); }
.why-icon { width:46px; height:46px; background:rgba(255,210,0,.15); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; margin-bottom:14px; transition:var(--t); }
.why-icon i { color:var(--c-yellow); font-size:1.1rem; transition:var(--t); }
.why-card:hover .why-icon { background:var(--c-yellow); }
.why-card:hover .why-icon i { color:var(--c-navy); }
.why-title { font-family:var(--ff-head); font-size:.97rem; font-weight:700; color:#fff; margin-bottom:7px; }
.why-desc  { font-size:.845rem; color:rgba(255,255,255,.5); line-height:1.65; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { padding:100px 0; background:var(--c-white); }
.services-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:60px; gap:20px; flex-wrap:wrap; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.svc-card {
  padding:34px 26px; border:1px solid var(--c-border);
  border-radius:var(--radius-lg); position:relative; overflow:hidden;
  background:var(--c-white); transition:var(--t);
}
.svc-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:var(--c-yellow); transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease);
}
.svc-card:hover { border-color:transparent; box-shadow:var(--shadow-lg); transform:translateY(-6px); }
.svc-card:hover::after { transform:scaleX(1); }
.svc-num  { position:absolute; top:18px; right:22px; font-family:var(--ff-display); font-size:4rem; color:rgba(0,0,0,.04); line-height:1; user-select:none; pointer-events:none; }
.svc-icon { width:52px; height:52px; background:rgba(26,49,98,.08); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; margin-bottom:18px; transition:var(--t); }
.svc-icon i { color:var(--c-navy); font-size:1.35rem; transition:var(--t); }
.svc-card:hover .svc-icon { background:var(--c-navy); }
.svc-card:hover .svc-icon i { color:var(--c-yellow); }
.svc-name { font-family:var(--ff-head); font-size:1.05rem; font-weight:700; margin-bottom:8px; color:var(--c-text); }
.svc-desc { font-size:.875rem; color:var(--c-text2); line-height:1.65; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { padding:100px 0; background:var(--c-surface); }
.gallery-head { margin-bottom:54px; }
.gallery-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  grid-template-rows:260px 260px; gap:14px;
}
.g-item { position:relative; overflow:hidden; border-radius:var(--radius-lg); cursor:pointer; }
.g-item:first-child { grid-row:1/3; }
.g-item img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.g-overlay { position:absolute; inset:0; background:rgba(0,0,0,0); display:flex; align-items:center; justify-content:center; transition:background .4s; }
.g-overlay i { color:#fff; font-size:1.8rem; opacity:0; transform:scale(.5); transition:opacity .3s, transform .3s; }
.g-item:hover img { transform:scale(1.08); }
.g-item:hover .g-overlay { background:rgba(26,49,98,.65); }
.g-item:hover .g-overlay i { opacity:1; transform:scale(1); }

/* =====================================================================
   CTA SECTION
   ===================================================================== */
.cta-sec { padding:80px 0; background:var(--c-yellow); position:relative; overflow:hidden; }
.cta-sec::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(0,0,0,.08) 0%,transparent 60%);
}
.cta-inner { display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap; position:relative; z-index:1; }
.cta-text h2 { font-family:var(--ff-head); font-size:clamp(1.8rem,3vw,2.4rem); font-weight:800; color:var(--c-navy); margin-bottom:8px; }
.cta-text p  { color:rgba(26,49,98,.7); font-size:1rem; }
.cta-btns    { display:flex; gap:14px; flex-wrap:wrap; flex-shrink:0; }
.btn-navy    { background:var(--c-navy); color:#fff; border-color:var(--c-navy); }
.btn-navy:hover { background:var(--c-navy-dk); transform:translateY(-2px); box-shadow:0 8px 24px rgba(26,49,98,.35); }
.btn-nghost  { background:transparent; color:var(--c-navy); border:2px solid rgba(26,49,98,.4); }
.btn-nghost:hover { border-color:var(--c-navy); background:rgba(26,49,98,.08); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact { padding:100px 0; background:var(--c-surface); }
.contact-intro { margin-bottom:56px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.c-form { background:var(--c-white); padding:40px 36px; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); }
.c-form-title { font-family:var(--ff-head); font-size:1.45rem; font-weight:800; margin-bottom:6px; color:var(--c-text); }
.c-form-sub   { color:var(--c-text2); font-size:.875rem; margin-bottom:28px; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.f-group { display:flex; flex-direction:column; gap:5px; margin-bottom:14px; }
.f-group label { font-family:var(--ff-head); font-size:.75rem; font-weight:600; color:var(--c-text2); letter-spacing:.3px; }
.f-group input, .f-group select, .f-group textarea {
  padding:11px 15px; border:2px solid var(--c-border);
  border-radius:var(--radius); font-size:.9rem; color:var(--c-text);
  background:#fff; outline:none; transition:border-color .25s, box-shadow .25s; width:100%;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color:var(--c-navy); box-shadow:0 0 0 3px rgba(26,49,98,.1); }
.f-group textarea { resize:vertical; min-height:96px; }
.f-submit {
  width:100%; padding:15px; background:var(--c-navy); color:#fff;
  border-radius:var(--radius); font-family:var(--ff-head); font-size:1rem; font-weight:700;
  display:flex; align-items:center; justify-content:center; gap:8px;
  box-shadow:0 8px 24px rgba(26,49,98,.35); transition:var(--t); margin-top:6px;
}
.f-submit:hover { background:var(--c-navy-dk); transform:translateY(-2px); }
.c-info { display:flex; flex-direction:column; gap:18px; }
.c-card { display:flex; align-items:flex-start; gap:14px; padding:18px 22px; background:var(--c-white); border-radius:var(--radius-lg); box-shadow:var(--shadow); transition:var(--t); }
.c-card:hover { transform:translateX(4px); box-shadow:var(--shadow-lg); }
.c-icon { width:42px; height:42px; background:rgba(26,49,98,.08); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.c-icon i { color:var(--c-navy); font-size:.95rem; }
.c-lbl { font-family:var(--ff-head); font-size:.72rem; font-weight:600; text-transform:uppercase; letter-spacing:1px; color:var(--c-text3); margin-bottom:4px; }
.c-val { font-family:var(--ff-head); font-size:.92rem; font-weight:600; color:var(--c-text); line-height:1.5; }
.c-val a { transition:color .2s; }
.c-val a:hover { color:var(--c-navy); }
.map-wrap { margin-top:4px; border-radius:var(--radius-lg); overflow:hidden; height:210px; }
.map-wrap iframe { width:100%; height:100%; border:none; display:block; }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer { background:var(--c-navy-dk); padding:68px 0 0; position:relative; }
footer::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,transparent 0%,var(--c-yellow) 50%,transparent 100%);
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.6fr; gap:44px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.07); }
.f-brand .name { font-family:var(--ff-head); font-size:1.1rem; font-weight:800; color:#fff; line-height:1.3; }
.f-brand .name em { color:var(--c-yellow); font-style:normal; }
.f-brand p { color:rgba(255,255,255,.45); font-size:.84rem; line-height:1.75; margin:14px 0 22px; max-width:270px; }
.f-socials { display:flex; gap:8px; }
.soc { width:35px; height:35px; border:1px solid rgba(255,255,255,.12); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.45); font-size:.82rem; transition:var(--t); }
.soc:hover { background:var(--c-yellow); border-color:var(--c-yellow); color:var(--c-navy); transform:translateY(-2px); }
.f-col-title { font-family:var(--ff-head); font-size:.8rem; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:18px; padding-bottom:10px; position:relative; }
.f-col-title::after { content:''; position:absolute; bottom:0; left:0; width:22px; height:2px; background:var(--c-yellow); }
.f-links { display:flex; flex-direction:column; gap:9px; }
.f-links a { color:rgba(255,255,255,.45); font-size:.84rem; transition:color .2s; display:flex; align-items:center; gap:6px; }
.f-links a::before { content:'›'; color:var(--c-yellow); }
.f-links a:hover { color:var(--c-yellow); }
.f-ci { display:flex; align-items:flex-start; gap:9px; color:rgba(255,255,255,.45); font-size:.84rem; margin-bottom:11px; line-height:1.55; }
.f-ci i { color:var(--c-yellow); margin-top:2px; flex-shrink:0; width:14px; }
.f-ci a { transition:color .2s; }
.f-ci a:hover { color:var(--c-yellow); }
.footer-bottom { padding:22px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.footer-bottom p { color:rgba(255,255,255,.25); font-size:.78rem; }

/* =====================================================================
   WHATSAPP FLOAT
   ===================================================================== */
.wa {
  position:fixed; bottom:28px; right:28px; width:54px; height:54px;
  background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.4rem; box-shadow:0 4px 18px rgba(37,211,102,.45);
  z-index:900; transition:var(--t); animation:pulse-wa 2.5s ease-in-out infinite;
}
.wa:hover { transform:scale(1.1) translateY(-2px); background:#1fbe5e; }
@keyframes pulse-wa { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 50%{box-shadow:0 0 0 12px rgba(37,211,102,0)} }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid      { grid-template-columns:repeat(2,1fr); }
  .footer-grid   { grid-template-columns:1fr 1fr; gap:32px; }
  .gallery-grid  { grid-template-columns:repeat(2,1fr); grid-template-rows:auto; }
  .g-item:first-child { grid-row:auto; }
  .g-item        { height:220px; }
}

@media (max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }

  .about   { padding:52px 0; }
  .why     { padding:52px 0; }
  .services{ padding:52px 0; }
  .gallery { padding:52px 0; }
  .contact { padding:52px 0; }
  .cta-sec { padding:40px 0; }
  footer   { padding:40px 0 0; }

  .page-banner          { min-height:220px; }
  .page-banner-content  { padding:32px 0; }
  .page-banner h1       { font-size:clamp(2.2rem,9vw,3.4rem); margin-bottom:8px; }

  .sr.left  { transform:translateY(36px); }
  .sr.right { transform:translateY(36px); }

  .hero-title   { font-size:clamp(2.2rem,10vw,3.8rem); }
  .hero-content { padding:86px 20px 32px; text-align:center; }
  .hero-desc    { margin-left:auto; margin-right:auto; }
  .hero-btns    { justify-content:center; }
  .hero-stats   {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:0; margin-top:20px; padding-top:16px;
    text-align:center; justify-items:center;
  }
  .h-stat { display:flex; flex-direction:column; align-items:center; padding:12px 8px; background:rgba(255,255,255,.06); border-radius:var(--radius); }
  .h-stat .num { font-size:2.2rem; }
  .h-stat .lbl { font-size:.6rem; }

  .about-grid  { grid-template-columns:1fr; gap:48px; }
  .about-chip  { right:0; bottom:-14px; }

  .services-head  { flex-direction:column; align-items:flex-start; margin-bottom:32px; }
  .why-head       { margin-bottom:32px; }
  .gallery-head   { margin-bottom:32px; }

  .services-grid  { grid-template-columns:1fr; }
  .why-grid       { grid-template-columns:1fr; }

  .contact        { overflow-x:hidden; }
  .contact-intro  { margin-bottom:28px; }
  .contact-grid   { grid-template-columns:1fr; gap:20px; width:100%; overflow:hidden; }
  .contact-grid > * { min-width:0; width:100%; }
  .c-form         { padding:24px 16px; width:100%; max-width:100%; min-width:0;
                    box-shadow:none; border:1px solid var(--c-border); overflow:hidden; }
  .c-info         { min-width:0; width:100%; }
  .f-row          { grid-template-columns:1fr; gap:10px; }
  .f-row > *      { min-width:0; }
  .f-group        { min-width:0; }
  .f-group input, .f-group select, .f-group textarea { min-width:0; max-width:100%; }

  .cta-sec      { padding:20px 0 52px; }
  .cta-inner    { flex-direction:column; text-align:center; }
  .cta-btns     { justify-content:center; }

  .footer-grid    { grid-template-columns:1fr; gap:24px; }
  .footer-bottom  { flex-direction:column; text-align:center; }
}

@media (max-width:480px) {
  .about   { padding:40px 0; }
  .why     { padding:40px 0; }
  .services{ padding:40px 0; }
  .gallery { padding:40px 0; }
  .contact { padding:40px 0; }
  .cta-sec { padding:16px 0 42px; }
  footer   { padding:32px 0 0; }

  .page-banner          { min-height:180px; }
  .page-banner-content  { padding:24px 0; }

  .section-h      { font-size:clamp(1.55rem,8vw,2.1rem); }
  .contact-intro  { margin-bottom:20px; }
  .c-form         { padding:20px 14px; }

  .hero-btns   { flex-direction:column; align-items:center; }
  .btn         { justify-content:center; width:100%; max-width:320px; }
  .gallery-grid{ grid-template-columns:1fr; grid-template-rows:auto; }
  .g-item      { height:200px; }
}

@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .sr, .svc-card, .why-card, .g-item, .stat-box { opacity:1; transform:none; }
}
