/* ================================================================
   RN Safety nets - Main Stylesheet
   File: assets/css/style.css
   ================================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&family=Bebas+Neue&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --bg:      #06111f;
  --bg2:     #0b1e35;
  --bg3:     #0f2744;
  --gold:    #f5a623;
  --orange:  #e8531a;
  --white:   #f0f6ff;
  --muted:   #7a92b0;
  --border:  rgba(245,166,35,0.18);
  --card:    rgba(255,255,255,0.04);
  --grad:    linear-gradient(135deg,#f5a623,#e8531a);
  --shadow:  0 20px 60px rgba(0,0,0,0.5);
  --shadowg: 0 8px 40px rgba(245,166,35,0.3);
  --nav-h:   72px;
  --r:       14px;
  --ff-h:    'Oswald', sans-serif;
  --ff-b:    'Nunito', sans-serif;
  --ff-d:    'Bebas Neue', sans-serif;
  --ease:    cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: var(--ff-b); background: var(--bg); color: var(--white); line-height: 1.7; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; font-family: inherit; }
::selection { background: rgba(245,166,35,0.3); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 5px; }

/* ── PAGE LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity .6s, visibility .6s;
}
#loader.out { opacity: 0; visibility: hidden; }
.ldr-brand {
  font-family: var(--ff-d); font-size: 2.6rem;
  letter-spacing: 6px;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ldr-sub  { font-size: .72rem; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; }
.ldr-bar  { width: 200px; height: 3px; background: rgba(255,255,255,.07); border-radius: 10px; overflow: hidden; }
.ldr-bar::after {
  content: ''; display: block; height: 100%;
  background: var(--grad); border-radius: 10px;
  animation: ldrSlide 1.8s var(--ease) forwards;
}
@keyframes ldrSlide { from { width: 0; } to { width: 100%; } }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 8000;
  transition: all .4s var(--ease);
}
.nav.stuck {
  background: rgba(6,17,31,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
}
.nav-brand   { display: flex; align-items: center; gap: 12px; }
.brand-icon  {
  width: 46px; height: 46px; background: var(--grad);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; flex-shrink: 0;
  overflow: hidden;
}
.brand-icon img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-family: var(--ff-h); font-size: 1.25rem; font-weight: 700; letter-spacing: 2px; color: var(--gold); line-height: 1; }
.brand-sub  { font-size: .6rem; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link  {
  font-family: var(--ff-h); font-size: .88rem; font-weight: 500;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 8px 13px; border-radius: 8px;
  color: rgba(240,246,255,.85); transition: all .3s; cursor: pointer;
}
.nav-link:hover { color: var(--gold); background: rgba(245,166,35,.08); }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 240px;
  background: rgba(11,30,53,.98); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all .3s var(--ease);
  box-shadow: var(--shadow);
  max-height: 400px; overflow-y: auto;
}
.nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; transform: none; }
.nav-dd-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 8px;
  font-size: .85rem; color: var(--muted); transition: all .2s;
}
.nav-dd-menu a:hover { background: rgba(245,166,35,.08); color: var(--gold); padding-left: 20px; }
.nav-dd-cat {
  font-size: .65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); opacity: .7;
  padding: 10px 14px 4px; display: block;
}

.nav-cta {
  background: var(--grad) !important; color: white !important;
  padding: 10px 22px !important; border-radius: 50px !important;
  font-weight: 700 !important; box-shadow: var(--shadowg);
  margin-left: 8px; transition: all .3s var(--ease) !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 14px 50px rgba(245,166,35,.45) !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: transparent; border: none;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all .35s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── UTILITIES ── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 28px; }
section { padding: 90px 0; }
.divider { height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.25);
  color: var(--gold); font-size: .72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.pdot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pdotA 1.6s ease-in-out infinite; }
@keyframes pdotA { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.6)} }

.sec-head { text-align: center; margin-bottom: 60px; }
.sec-title { font-family: var(--ff-h); font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 700; line-height: 1.15; margin-bottom: 14px; color: var(--white); }
.sec-title span { color: var(--gold); }
.sec-sub { font-size: .97rem; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.85; }

.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-h); font-weight: 600; font-size: .93rem; letter-spacing: 1px; text-transform: uppercase; padding: 14px 30px; border-radius: 50px; border: none; cursor: pointer; transition: all .4s var(--ease); white-space: nowrap; }
.btn-p { background: var(--grad); color: white; box-shadow: var(--shadowg); }
.btn-p:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(245,166,35,.45); }
.btn-g { background: transparent; color: var(--white); border: 2px solid rgba(240,246,255,.2); }
.btn-g:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── SCROLL REVEAL ── */
.rev, .rev-l, .rev-r { opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rev   { transform: translateY(34px); }
.rev-l { transform: translateX(-38px); }
.rev-r { transform: translateX(38px); }
.rev.in, .rev-l.in, .rev-r.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,#06111f 0%,#0f2744 100%);
}
/* 📁 HERO BACKGROUND IMAGE — add your image to: assets/images/hero/hero-bg.jpg */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero/hero-bg.jpg') center/cover no-repeat;
  opacity: .12;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 15% 50%, rgba(245,166,35,.1) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 85% 20%, rgba(232,83,26,.07) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(245,166,35,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,166,35,.03) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 80px 0; }
.h-badge { animation: fadeUp .7s .2s both; }
.h-title {
  font-family: var(--ff-d);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: .92; letter-spacing: 1px; margin-bottom: 22px;
  animation: fadeUp .7s .35s both;
}
.h-t1 { display: block; color: var(--white); }
.h-t2 { display: block; color: var(--gold); text-shadow: 0 0 60px rgba(245,166,35,.4); }
.h-t3 { display: block; font-size: 38%; letter-spacing: 8px; color: var(--muted); margin-top: 8px; }
.h-desc   { font-size: 1.08rem; color: var(--muted); max-width: 500px; margin-bottom: 38px; animation: fadeUp .7s .5s both; line-height: 1.85; }
.h-ctas   { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; animation: fadeUp .7s .65s both; }
.h-stats  { display: flex; gap: 40px; flex-wrap: wrap; animation: fadeUp .7s .8s both; }
.h-stat .num { font-family: var(--ff-d); font-size: 2.8rem; color: var(--gold); line-height: 1; }
.h-stat .lbl { font-size: .72rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeIn 1s 1.2s both;
}
.sc-txt   { font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.sc-mouse { width: 22px; height: 34px; border: 2px solid rgba(245,166,35,.4); border-radius: 11px; position: relative; }
.sc-mouse::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: var(--gold); border-radius: 3px;
  animation: scWheel 1.6s ease-in-out infinite;
}
@keyframes scWheel { 0%,100%{transform:translateX(-50%) translateY(0);opacity:1} 70%{transform:translateX(-50%) translateY(8px);opacity:0} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }

/* ── MARQUEE ── */
.marquee-sec {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 16px 0;
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.m-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 32px; font-family: var(--ff-h); font-size: .85rem; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
.m-sep  { color: var(--gold); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── TRUST BAR ── */
.trust-sec  { background: var(--bg3); padding: 46px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.trust-item {
  display: flex; align-items: center; gap: 15px;
  padding: 18px 20px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r); transition: all .3s;
}
.trust-item:hover { border-color: rgba(245,166,35,.4); transform: translateY(-3px); }
.t-ico { width: 50px; height: 50px; background: rgba(245,166,35,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; transition: all .3s; }
.trust-item:hover .t-ico { background: var(--grad); }
.t-title { font-family: var(--ff-h); font-size: .93rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.t-desc  { font-size: .76rem; color: var(--muted); }

/* ── SERVICES ── */
.svc-sec    { background: var(--bg); }
.svc-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.sf-btn {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  font-family: var(--ff-h); font-size: .78rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; cursor: pointer; transition: all .3s;
}
.sf-btn.active, .sf-btn:hover { background: var(--grad); border-color: transparent; color: white; box-shadow: var(--shadowg); }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.svc-card.hidden { display: none; }
.svc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  transition: all .45s var(--ease); cursor: pointer;
}
.svc-card:hover { transform: translateY(-10px); border-color: rgba(245,166,35,.45); box-shadow: 0 24px 60px rgba(0,0,0,.5),0 0 40px rgba(245,166,35,.1); }
.svc-img-wrap {
  height: 180px; overflow: hidden; position: relative;
  background: linear-gradient(135deg,#0f2744,#1a3a6b);
  display: flex; align-items: center; justify-content: center;
}
/* 📁 SERVICE IMAGES — add your images to: assets/images/services/
   Naming: invisible-grills.jpg, balcony-nets.jpg, pigeon-nets.jpg, etc. */
.svc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.08); }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(6,17,31,.8) 0%,transparent 60%); }
.svc-emoji { font-size: 3.5rem; position: relative; z-index: 1; }
.svc-tag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--grad); color: white; font-size: .63rem; font-weight: 700;
  letter-spacing: 1px; padding: 4px 11px; border-radius: 50px; text-transform: uppercase;
}
.svc-body { padding: 22px; }
.svc-ico  { width: 44px; height: 44px; background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 12px; transition: all .3s; }
.svc-card:hover .svc-ico { background: var(--grad); border-color: transparent; }
.svc-name { font-family: var(--ff-h); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.svc-text { font-size: .83rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: var(--ff-h); font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: gap .3s; }
.svc-card:hover .svc-link { gap: 14px; }

/* ── ABOUT ── */
.about-sec  { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap { position: relative; }
/* 📁 ABOUT IMAGE — add your image to: assets/images/hero/about.jpg */
.about-main { width: 100%; height: 520px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); background: linear-gradient(135deg,#0f2744,#1a3a6b); }
.about-exp  {
  position: absolute; top: 30px; left: -22px;
  background: var(--grad); color: white; border-radius: 16px;
  padding: 20px 22px; text-align: center; box-shadow: var(--shadowg);
}
.ae-num { font-family: var(--ff-d); font-size: 2.8rem; line-height: 1; }
.ae-txt { font-size: .7rem; letter-spacing: 1px; opacity: .9; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 26px 0; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--muted); }
.chk { width: 22px; height: 22px; background: rgba(245,166,35,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .7rem; flex-shrink: 0; }

/* ── PROCESS ── */
.proc-sec { background: var(--bg); }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; }
.proc-grid::before { content: ''; position: absolute; top: 43px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(to right,var(--gold),rgba(245,166,35,.1)); }
.proc-step { text-align: center; position: relative; z-index: 1; }
.step-circ { width: 86px; height: 86px; background: var(--bg2); border: 2px solid var(--border); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: var(--ff-d); font-size: 1.8rem; color: var(--gold); transition: all .4s var(--ease); }
.proc-step:hover .step-circ { background: var(--grad); border-color: transparent; color: white; transform: scale(1.1); }
.step-title { font-family: var(--ff-h); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.step-desc  { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* ── GALLERY ── */
.gal-sec     { background: var(--bg2); }
.gal-tabs    { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.g-tab { background: transparent; border: 1px solid var(--border); color: var(--muted); font-family: var(--ff-h); font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 8px 20px; border-radius: 50px; cursor: pointer; transition: all .3s; }
.g-tab.active, .g-tab:hover { background: var(--grad); border-color: transparent; color: white; box-shadow: var(--shadowg); }
/* 📁 GALLERY IMAGES — add photos to: assets/images/gallery/
   Name them: g1.jpg, g2.jpg ... g20.jpg (any format jpg/png/webp) */
.gal-masonry { columns: 4; column-gap: 14px; }
.g-item { breRN-inside: avoid; margin-bottom: 14px; border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; background: linear-gradient(135deg,#0f2744,#1a3a6b); }
.g-item img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-placeholder { width: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; padding: 40px 20px; }
.g-over { position: absolute; inset: 0; background: rgba(6,17,31,.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.g-item:hover .g-over { opacity: 1; }
.g-zoom { width: 48px; height: 48px; background: var(--grad); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transform: scale(.5); transition: transform .3s; }
.g-item:hover .g-zoom { transform: scale(1); }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; z-index: 9500; background: rgba(0,0,0,.95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
#lb-img { max-width: 88vw; max-height: 88vh; object-fit: contain; border-radius: 12px; }
.lb-close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; background: rgba(255,255,255,.1); border: none; border-radius: 50%; color: white; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.lb-close:hover { background: var(--gold); }

/* ── TESTIMONIALS ── */
.testi-sec  { background: var(--bg); }
.testi-wrap { overflow: hidden; }
.testi-slider { display: flex; gap: 22px; transition: transform .5s var(--ease); }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px; min-width: calc(33.33% - 15px); flex-shrink: 0; transition: all .4s; }
.testi-card:hover { border-color: rgba(245,166,35,.4); box-shadow: var(--shadowg); }
.t-stars  { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.t-text   { font-size: .93rem; color: var(--muted); line-height: 1.85; margin-bottom: 22px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 13px; }
.t-av     { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-family: var(--ff-h); font-size: 1.1rem; font-weight: 700; color: white; flex-shrink: 0; }
.t-name   { font-family: var(--ff-h); font-size: .97rem; font-weight: 600; color: var(--white); }
.t-loc    { font-size: .77rem; color: var(--muted); }
.slider-ctrl { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.s-btn { width: 44px; height: 44px; background: var(--card); border: 1px solid var(--border); border-radius: 50%; color: var(--muted); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; }
.s-btn:hover { background: var(--grad); border-color: transparent; color: white; }

/* ── BOOKING FORM ── */
.book-sec  { background: var(--bg2); }
.book-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.ci-list   { display: flex; flex-direction: column; gap: 13px; margin-top: 26px; }
.ci        { display: flex; align-items: center; gap: 15px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; transition: all .3s; }
.ci:hover  { border-color: rgba(245,166,35,.4); transform: translateX(6px); }
.ci-ico    { width: 42px; height: 42px; background: var(--grad); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: .97rem; color: white; flex-shrink: 0; }
.ci-lbl    { font-size: .7rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.ci-val    { font-family: var(--ff-h); font-size: .93rem; font-weight: 600; color: var(--white); }
.form-box  { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 40px; }
.form-title{ font-family: var(--ff-h); font-size: 1.45rem; font-weight: 700; margin-bottom: 26px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09); border-radius: 10px;
  padding: 13px 16px; color: var(--white); font-size: .93rem;
  outline: none; transition: all .3s; font-family: var(--ff-b);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: rgba(245,166,35,.04);
  box-shadow: 0 0 0 3px rgba(245,166,35,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.22); }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 95px; }
.form-submit {
  width: 100%; background: var(--grad); color: white;
  font-family: var(--ff-h); font-size: .97rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px; border-radius: 12px; border: none; cursor: pointer;
  box-shadow: var(--shadowg); transition: all .4s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 6px;
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(245,166,35,.45); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-msg { margin-top: 14px; padding: 13px 16px; border-radius: 10px; font-size: .88rem; text-align: center; display: none; }
.form-msg.ok  { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #4ade80; display: block; }
.form-msg.err { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #f87171; display: block; }

/* ── MAP ── */
.map-sec { background: var(--bg2); border-top: 1px solid var(--border); padding: 50px 0; }

/* ── CTA BANNER ── */
.cta-sec    { background: var(--grad); padding: 70px 0; text-align: center; }
.cta-sec h2 { font-family: var(--ff-d); font-size: clamp(2.2rem,5vw,4.5rem); letter-spacing: 2px; color: white; margin-bottom: 14px; }
.cta-sec p  { color: rgba(255,255,255,.88); font-size: 1rem; margin-bottom: 30px; }
.cta-btns   { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-w    { background: white; color: #e8531a; font-family: var(--ff-h); font-weight: 700; font-size: .93rem; letter-spacing: 1px; text-transform: uppercase; padding: 14px 30px; border-radius: 50px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s; }
.cta-w:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.2); }
.cta-dark { background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.5); color: white; font-family: var(--ff-h); font-weight: 700; font-size: .93rem; letter-spacing: 1px; text-transform: uppercase; padding: 14px 30px; border-radius: 50px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s; }
.cta-dark:hover { background: rgba(255,255,255,.25); }

/* ── FOOTER ── */
.footer { background: #030c18; padding: 78px 0 0; border-top: 1px solid var(--border); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.05); }
.foot-brand .fb-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot-brand .fb-ico { width: 40px; height: 40px; background: var(--grad); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; overflow: hidden; }
.foot-brand .fb-ico img { width: 100%; height: 100%; object-fit: cover; }
.foot-brand .fb-name { font-family: var(--ff-h); font-size: 1.15rem; font-weight: 700; color: var(--gold); }
.foot-brand p { font-size: .86rem; color: var(--muted); line-height: 1.8; max-width: 255px; margin-bottom: 20px; }
.socials   { display: flex; gap: 9px; }
.soc-btn   { width: 37px; height: 37px; background: var(--card); border: 1px solid var(--border); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--muted); transition: all .3s; }
.soc-btn:hover { background: var(--grad); border-color: transparent; color: white; transform: translateY(-3px); }
.foot-col h4 { font-family: var(--ff-h); font-size: .98rem; font-weight: 700; color: var(--white); margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.foot-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
.foot-links { display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: .86rem; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: all .25s; }
.foot-links a:hover { color: var(--gold); padding-left: 5px; }
.foot-links a::before { content: '›'; color: var(--gold); }
.fc-rows { display: flex; flex-direction: column; gap: 13px; }
.fc-row  { display: flex; align-items: flex-start; gap: 11px; }
.fc-ico  { width: 29px; height: 29px; background: rgba(245,166,35,.1); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .77rem; color: var(--gold); flex-shrink: 0; }
.fc-txt  { font-size: .83rem; color: var(--muted); line-height: 1.5; }
.fc-txt a { color: var(--muted); transition: color .2s; }
.fc-txt a:hover { color: var(--gold); }
.foot-bottom { max-width: 1300px; margin: 0 auto; padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-bottom p { font-size: .8rem; color: var(--muted); }
.foot-bottom a { color: var(--gold); }

/* ── FLOATING BUTTONS ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 7000; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.wa-tip   { background: #25D366; color: white; font-size: .76rem; font-weight: 700; padding: 6px 13px; border-radius: 8px; white-space: nowrap; opacity: 0; transform: translateX(12px); transition: all .3s; pointer-events: none; }
.wa-float:hover .wa-tip { opacity: 1; transform: none; }
.wa-btn   { width: 58px; height: 58px; background: #25D366; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(37,211,102,.55); cursor: pointer; position: relative; text-decoration: none; animation: waPop 2.5s ease-in-out infinite; }
.wa-btn::before { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(37,211,102,.3); animation: waRing 2.5s ease-in-out infinite; }
.wa-btn:hover { transform: scale(1.14); animation: none; }
@keyframes waPop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes waRing { 0%,100%{transform:scale(1);opacity:.8} 60%{transform:scale(1.4);opacity:0} }
.call-float { position: fixed; bottom: 100px; right: 28px; z-index: 7000; }
.call-btn   { width: 49px; height: 49px; background: var(--grad); border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; cursor: pointer; box-shadow: var(--shadowg); transition: all .3s; text-decoration: none; }
.call-btn:hover { transform: scale(1.12); }
.top-btn    { position: fixed; bottom: 28px; left: 28px; z-index: 7000; width: 43px; height: 43px; border-radius: 11px; background: var(--bg2); border: 1px solid var(--border); color: var(--gold); font-size: .95rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s; }
.top-btn.show { opacity: 1; visibility: visible; }
.top-btn:hover { background: var(--grad); border-color: transparent; color: white; transform: translateY(-3px); }

/* ── SERVICE PAGE HERO ── */
.svc-page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(160deg,#06111f,#0f2744);
  position: relative; overflow: hidden; min-height: 55vh;
  display: flex; align-items: center;
}
/* 📁 SERVICE PAGE BG — change this per service page via inline style */
.svc-page-hero::before { content: ''; position: absolute; inset: 0; opacity: .12; background-size: cover; background-position: center; }
.svc-page-hero::after  { content: ''; position: absolute; inset: 0; background: linear-gradient(to right,rgba(6,17,31,.96) 55%,rgba(6,17,31,.4)); }
.svc-hero-content { position: relative; z-index: 2; max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.svc-page-title { font-family: var(--ff-d); font-size: clamp(3rem,7vw,7rem); letter-spacing: 2px; line-height: .95; margin-bottom: 20px; }
.detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start; }
.detail-img  { width: 100%; height: 480px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); background: linear-gradient(135deg,#0f2744,#1a3a6b); }
.feature-row { display: flex; align-items: flex-start; gap: 16px; padding: 18px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 14px; transition: all .3s; }
.feature-row:hover { border-color: rgba(245,166,35,.4); transform: translateX(6px); }
.fr-icon  { width: 44px; height: 44px; background: rgba(245,166,35,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.fr-title { font-family: var(--ff-h); font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.fr-desc  { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.price-table-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.price-table-wrap table { width: 100%; border-collapse: collapse; }
.price-table-wrap thead th { background: var(--grad); color: white; padding: 14px 20px; font-family: var(--ff-h); font-size: .87rem; font-weight: 700; letter-spacing: 1px; text-align: left; }
.price-table-wrap tbody td { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .87rem; color: var(--muted); }
.price-table-wrap tbody tr:last-child td { border-bottom: none; }
.price-table-wrap tbody tr:hover td { background: rgba(245,166,35,.04); color: var(--white); }
.price { color: var(--gold); font-weight: 700; font-family: var(--ff-h); }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-q    { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-family: var(--ff-h); font-size: 1rem; font-weight: 600; color: var(--white); transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-arrow { transition: transform .35s; color: var(--gold); }
.faq-a    { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-item.open .faq-a   { max-height: 200px; padding-bottom: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a p  { font-size: .88rem; color: var(--muted); line-height: 1.8; }

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
  .svc-grid    { grid-template-columns: repeat(3,1fr); }
  .foot-grid   { grid-template-columns: 1fr 1fr; }
  .gal-masonry { columns: 3; }
  .trust-grid  { grid-template-columns: repeat(2,1fr); }
  .proc-grid   { grid-template-columns: repeat(2,1fr); }
  .proc-grid::before { display: none; }
}
@media(max-width:900px) {
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .about-main  { height: 350px; }
  .book-grid   { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-img  { height: 320px; }
  .testi-card  { min-width: calc(50% - 11px); }
}
@media(max-width:768px) {
  :root { --nav-h: 65px; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(6,17,31,.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start;
    padding: 18px; gap: 4px;
    transform: translateY(-16px); opacity: 0; visibility: hidden;
    transition: all .4s var(--ease);
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-dd-menu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; box-shadow: none; padding: 0 0 0 14px; max-height: none; }
  .nav-burger  { display: flex; }
  .nav-cta     { width: 100%; justify-content: center; }
  .container   { padding: 0 18px; }
  section      { padding: 68px 0; }
  .svc-grid    { grid-template-columns: repeat(2,1fr); }
  .gal-masonry { columns: 2; }
  .testi-card  { min-width: 100%; }
  .form-row    { grid-template-columns: 1fr; }
  .form-box    { padding: 24px; }
  .foot-grid   { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .trust-grid  { grid-template-columns: 1fr 1fr; }
  .proc-grid   { grid-template-columns: 1fr; gap: 28px; }
  .checks      { grid-template-columns: 1fr; }
  .h-ctas      { flex-direction: column; }
  .h-ctas .btn { width: 100%; justify-content: center; }
  .cta-btns    { flex-direction: column; align-items: center; }
}
@media(max-width:480px) {
  .svc-grid    { grid-template-columns: 1fr; }
  .gal-masonry { columns: 1; }
  .trust-grid  { grid-template-columns: 1fr; }
  .h-stats     { gap: 22px; }
}

/* ===== SLIDER FIX ===== */
.slider {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.slides {
  display: flex;
  width: 100%;
  animation: slide 30s infinite;
}

.slides img {
  width: 100%;
  flex: 0 0 100%;   /* 🔥 IMPORTANT FIX */
  height: 400px;
  object-fit: cover;
}

/* Correct animation */
@keyframes slide {
  0%, 20%   { transform: translateX(0%); }
  25%, 40%  { transform: translateX(-100%); }
  45%, 60%  { transform: translateX(-200%); }
  65%, 80%  { transform: translateX(-300%); }
  85%, 100% { transform: translateX(-400%); }
}

/* Mobile */
@media (max-width: 768px) {
  .slider { height: 220px; }
  .slides img { height: 220px; }
}

@media (max-width: 480px) {
  .slider { height: 180px; }
  .slides img { height: 180px; }
}

/* Container Setup */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 80vh; /* Shorter on mobile to see content below */
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* The Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center; /* Keeps the center of the net visible */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Content Styling */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.5rem; /* Large on desktop */
    line-height: 1.1;
    margin: 15px 0;
}

/* MOBILE SPECIFIC FIXES */
@media (max-width: 768px) {
    .hero-slider-container {
        height: 100vh; /* Fill mobile screen */
    }

    .hero-content h1 {
        font-size: 1.8rem; /* Smaller text for mobile */
    }

    .hero-btns {
        display: flex;
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
    }

    .btn-quote, .btn-call {
        width: 100%; /* Full width buttons for easy thumb tapping */
        padding: 12px;
    }
}