/* ================================================================
   DRAFT N DRAG BUILDERS — Stylesheet
   Inspired by WeHouse.in + Brick&Bolt.com
   Palette: Navy #0d2137 · Gold #c9a96e · White #fff
================================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #333; background: #fff; line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Variables ── */
:root {
  --navy:      #0d2137;
  --navy-dark: #071422;
  --navy-mid:  #1a3a5c;
  --gold:      #c9a96e;
  --gold-l:    #dfc48a;
  --white:     #ffffff;
  --off:       #f5f7fa;
  --light:     #eef1f6;
  --dark:      #1a1a1a;
  --mid:       #555555;
  --muted:     #888888;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.15);
  --trans:     all .28s ease;
  --font-h:    'Playfair Display', serif;
}

/* ── Utilities ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad  { padding: 90px 0; }
.bg-light     { background: var(--off); }
.bg-navy      { background: var(--navy); }
.gold         { color: var(--gold); }
.gold-text    { color: var(--gold); font-style: italic; }

.sec-header   { text-align: center; margin-bottom: 60px; }
.sec-label    {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  position: relative; padding-bottom: 10px; margin-bottom: 14px;
}
.sec-label::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 40px; height: 2px; background: var(--gold);
}
.sec-header h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 14px; }
.sec-header p  { color: var(--mid); max-width: 620px; margin: 0 auto; font-size: .95rem; }
.sec-header.light .sec-label::after { background: var(--gold); }
.sec-header.light h2 { color: var(--white); }
.sec-header.light p  { color: rgba(255,255,255,.72); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 30px;
  font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600;
  transition: var(--trans); cursor: pointer; border: 2px solid transparent;
}
.btn-gold         { background: var(--gold); color: var(--dark); }
.btn-gold:hover   { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.35); }
.btn-dark         { background: var(--navy); color: var(--white); }
.btn-dark:hover   { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline-white { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-full         { width: 100%; justify-content: center; }

/* ================================================================
   PRELOADER
================================================================ */
.preloader {
  position: fixed; inset: 0; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .4s ease, visibility .4s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-inner  { text-align: center; color: var(--white); }
.pl-logo   { font-family: var(--font-h); font-size: 3rem; color: var(--gold); margin-bottom: 8px; font-weight: 700; }
.pl-brand  { font-size: .85rem; letter-spacing: 3px; text-transform: uppercase; opacity: .7; margin-bottom: 24px; }
.pl-track  { width: 200px; height: 3px; background: rgba(255,255,255,.2); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.pl-bar    { width: 0; height: 100%; background: var(--gold); border-radius: 2px; animation: plBar 1.6s ease forwards; }
@keyframes plBar { to { width: 100%; } }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 16px 0; transition: var(--trans);
  background: rgba(7,20,34,.2); backdrop-filter: blur(8px);
}
.navbar.scrolled { background: var(--navy-dark); padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img  { width: 48px; height: 48px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-h); font-size: 1.15rem; color: var(--white); font-weight: 700; line-height: 1.1; }
.logo-sub  { font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.nav-menu  { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link  {
  padding: 7px 10px; border-radius: 6px; font-size: .83rem; font-weight: 500;
  color: rgba(255,255,255,.85); transition: var(--trans); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important; padding: 8px 18px;
  border-radius: 20px; font-weight: 700; margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-l); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
================================================================ */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-swiper, .hero-swiper .swiper-slide { width: 100%; height: 100%; }
.hero-swiper .swiper-slide { background-size: cover; background-position: center; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(7,20,34,.92) 0%, rgba(13,33,55,.75) 60%, rgba(7,20,34,.6) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px; padding-top: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,169,110,.15); border: 1px solid rgba(201,169,110,.4);
  color: var(--gold); padding: 8px 20px; border-radius: 30px;
  font-size: .8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-content h1 {
  font-family: var(--font-h); font-size: clamp(2.4rem, 5.5vw, 5rem);
  color: var(--white); line-height: 1.15; margin-bottom: 18px; font-weight: 700;
}
.hero-content p {
  color: rgba(255,255,255,.82); font-size: clamp(.95rem, 1.5vw, 1.15rem);
  max-width: 620px; margin-bottom: 32px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.hero-trust span { color: rgba(255,255,255,.75); font-size: .82rem; display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--gold); }

/* ================================================================
   STATS STRIP
================================================================ */
.stats-strip { background: var(--navy); padding: 28px 0; }
.stats-grid  {
  display: flex; align-items: center; justify-content: space-around;
  gap: 20px; flex-wrap: wrap;
}
.stat-item   { text-align: center; }
.stat-num    { display: block; font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-lbl    { font-size: .78rem; color: rgba(255,255,255,.7); letter-spacing: 1px; text-transform: uppercase; }
.stat-num-sep { width: 1px; height: 44px; background: rgba(255,255,255,.2); }

/* ================================================================
   SERVICES
================================================================ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--trans);
  background: var(--white); border: 1px solid rgba(0,0,0,.06);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-img  { height: 200px; background-size: cover; background-position: center; }
.svc-body { padding: 24px; }
.svc-icon {
  width: 44px; height: 44px; background: rgba(13,33,55,.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  font-size: 1.1rem; margin-bottom: 14px;
}
.svc-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-body p  { font-size: .85rem; color: var(--mid); margin-bottom: 16px; line-height: 1.65; }
.svc-link    { font-size: .82rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; transition: var(--trans); }
.svc-link:hover { color: var(--gold); gap: 10px; }

/* ================================================================
   WHY US
================================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px 28px; transition: var(--trans);
}
.why-card:hover { background: rgba(255,255,255,.09); border-color: rgba(201,169,110,.4); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; background: rgba(201,169,110,.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-size: 1.3rem; margin-bottom: 18px;
}
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p  { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ================================================================
   PACKAGES (Brick & Bolt inspired)
================================================================ */

/* -- Package header cards -- */
.pkg-header-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 32px;
}
.phc {
  padding: 32px 28px;
  border: 1px solid rgba(13,33,55,.12);
}
.phc-label {
  background: var(--off); display: flex; flex-direction: column; justify-content: center;
  border-right: none;
}
.phc-note  { font-size: .82rem; color: var(--navy); font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.phc-note i { color: var(--gold); }
.phc-sub   { font-size: .78rem; color: var(--mid); }
.phc-builder { background: var(--white); text-align: center; }
.phc-owner   { background: var(--white); text-align: center; }
.phc-owner.popular { background: var(--navy); }

.phc-badge {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: .7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
  margin-bottom: 12px;
}
.phc-name {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; margin-bottom: 6px;
  color: var(--navy);
}
.phc-owner.popular .phc-name { color: var(--gold); }
.phc-price {
  font-size: 2.6rem; font-weight: 800; color: var(--dark);
  line-height: 1; margin-bottom: 10px;
}
.phc-price span { font-size: .95rem; font-weight: 400; opacity: .65; }
.phc-owner.popular .phc-price { color: var(--white); }
.phc-desc { font-size: .82rem; color: var(--mid); margin-bottom: 20px; }
.phc-owner.popular .phc-desc { color: rgba(255,255,255,.7); }

/* -- Comparison table -- */
.pkg-compare-wrap {
  overflow-x: auto; border-radius: 14px;
  box-shadow: 0 6px 36px rgba(13,33,55,.12);
  margin-bottom: 32px;
}
.pkg-compare { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }

/* Category separator rows */
.pkg-compare .cat-row td {
  background: var(--navy); color: var(--gold);
  font-weight: 700; font-size: .78rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 12px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pkg-compare .cat-row i { margin-right: 8px; }

/* Column header row */
.pkg-col-hdr th {
  background: var(--navy-dark);
  color: var(--white);
  padding: 14px 22px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 2px solid var(--gold);
}
.pkg-col-hdr .col-owner {
  background: rgba(201,169,110,.15);
  color: var(--gold);
}

/* Data rows */
.pkg-compare tr:not(.cat-row):not(.pkg-col-hdr) { border-bottom: 1px solid rgba(13,33,55,.07); transition: background .18s; }
.pkg-compare tr:not(.cat-row):not(.pkg-col-hdr):hover { background: rgba(13,33,55,.03); }

.pkg-compare td { padding: 14px 22px; font-size: .875rem; color: var(--dark); vertical-align: middle; }
.spec-name { font-weight: 600; color: var(--navy); width: 33%; }
.col-owner { background: rgba(201,169,110,.07); font-weight: 500; }

/* Checkmark style */
.chk { color: #1e8a4a; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .85rem; }
.chk i { font-size: 1rem; }

/* Footer note */
.pkg-footer-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(13,33,55,.05); border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0; padding: 16px 22px; max-width: 840px; margin: 0 auto;
}
.pkg-footer-note i { color: var(--gold); flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.pkg-footer-note p { font-size: .85rem; color: var(--mid); }
.pkg-footer-note a { color: var(--navy); font-weight: 600; }

/* ================================================================
   PROCESS (6-step)
================================================================ */
.proc-track { position: relative; }
.proc-line  {
  position: absolute; top: 52px; left: calc(16.66% - 2px); right: calc(16.66% - 2px);
  height: 2px; background: linear-gradient(90deg, var(--gold), rgba(201,169,110,.3));
  z-index: 0;
}
.proc-steps {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; position: relative; z-index: 1;
}
.proc-step { text-align: center; padding: 0 8px; }
.proc-num  {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--dark); font-size: .75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
}
.proc-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(13,33,55,.07); border: 2px solid rgba(13,33,55,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--navy); margin: 0 auto 16px;
  transition: var(--trans);
}
.proc-step:hover .proc-icon { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.proc-step h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.proc-step p  { font-size: .78rem; color: var(--mid); line-height: 1.5; }

/* ================================================================
   QUALITY ASSURANCE
================================================================ */
.qual-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.qual-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px 26px; transition: var(--trans);
  position: relative;
}
.qual-card:hover { transform: translateY(-4px); border-color: rgba(201,169,110,.4); background: rgba(255,255,255,.1); }
.qual-icon {
  width: 54px; height: 54px; background: rgba(201,169,110,.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-size: 1.35rem; margin-bottom: 18px;
}
.qual-card h4   { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.qual-card p    { font-size: .84rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 14px; }
.qual-stat {
  display: inline-block; background: rgba(201,169,110,.15); border: 1px solid rgba(201,169,110,.3);
  color: var(--gold); font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
}

/* ================================================================
   PORTFOLIO
================================================================ */
.port-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px;
}
/* 7-item featured layout: first item spans 2 rows */
.port-grid-7 { grid-template-rows: 300px 260px 260px; }
.port-item-featured { grid-row: span 2; height: 100%; }
.port-item-center   { grid-column: 2; }   /* centres lone 7th item */

.port-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  height: 260px; cursor: pointer; box-shadow: var(--shadow); transition: var(--trans);
}
.port-item-featured { height: 100%; }
.port-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.port-item:hover img { transform: scale(1.08); }
.port-item:hover { box-shadow: var(--shadow-lg); }

.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,20,34,.93) 0%, rgba(13,33,55,.15) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 22px; opacity: 0; transition: var(--trans);
}
.port-item:hover .port-overlay { opacity: 1; }

/* Category tag */
.port-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold); color: var(--dark);
  font-size: .68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 6px;
}
.port-info h3 { color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.port-info p  { color: rgba(255,255,255,.75); font-size: .78rem; }
.port-overlay .fa-expand-alt { position: absolute; top: 16px; right: 16px; color: var(--gold); font-size: 1rem; }

.port-cta { text-align: center; }
.port-cta p { color: var(--mid); margin-bottom: 14px; }
.port-cta div { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi-swiper { padding: 20px 0 50px; position: relative; }
.testi-card {
  background: var(--white); border-radius: 18px;
  padding: 36px; box-shadow: 0 4px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(13,33,55,.06); height: 100%;
}
.tq { color: var(--gold); font-size: 2rem; margin-bottom: 16px; display: block; }
.testi-card p   { color: var(--mid); font-size: .88rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-ft       { display: flex; align-items: center; gap: 14px; }
.testi-av       { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.testi-ft strong { display: block; font-size: .95rem; color: var(--navy); font-weight: 700; }
.testi-ft span   { font-size: .78rem; color: var(--muted); display: block; margin-bottom: 4px; }
.stars i { color: #f5a623; font-size: .85rem; }
.tpag .swiper-pagination-bullet-active { background: var(--gold); }
.swiper-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--navy);
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: .9rem; position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; transition: var(--trans);
}
.swiper-btn:hover { background: var(--navy); color: var(--gold); }
.tprev { left: -16px; }
.tnext { right: -16px; }

/* ================================================================
   FAQ
================================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(13,33,55,.12); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q    { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; transition: var(--trans); }
.faq-q:hover { background: rgba(13,33,55,.03); }
.faq-q span   { font-weight: 600; font-size: .92rem; color: var(--navy); }
.faq-icon     { color: var(--gold); font-size: .85rem; transition: transform .3s ease; flex-shrink: 0; margin-left: 12px; }
.faq-a        { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-a p      { padding: 0 22px 18px; font-size: .88rem; color: var(--mid); line-height: 1.75; }
.faq-item.open .faq-q    { background: rgba(13,33,55,.04); color: var(--gold); }
.faq-item.open .faq-q span { color: var(--navy); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a    { max-height: 300px; }

/* ================================================================
   CONTACT
================================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.contact-info .sec-header { margin-bottom: 36px; }
.ci-list { margin-bottom: 32px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.ci-ico  { width: 42px; height: 42px; background: rgba(201,169,110,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.ci-item label { display: block; font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.ci-item a, .ci-item span { color: var(--white); font-size: .9rem; }
.ci-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; transition: var(--trans);
}
.contact-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* Form */
.contact-form-wrap { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 8px 48px rgba(0,0,0,.2); }
.contact-form h3   { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.contact-form h3 i { color: var(--gold); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-grp  { margin-bottom: 16px; }
.form-grp label { display: block; font-size: .78rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-grp input, .form-grp select, .form-grp textarea {
  width: 100%; padding: 11px 16px; border: 1.5px solid rgba(13,33,55,.15);
  border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: .88rem;
  color: var(--dark); transition: var(--trans); background: var(--off);
}
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus {
  outline: none; border-color: var(--navy); background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,33,55,.08);
}
.form-grp textarea { resize: vertical; }
.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 24px; text-align: center;
}
.form-success i    { font-size: 3rem; color: #1e8a4a; margin-bottom: 16px; }
.form-success h4   { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.form-success p    { color: var(--mid); }

/* ================================================================
   FOOTER
================================================================ */
.footer-top  { background: var(--navy-dark); padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.brand-col p { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.8; margin: 20px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: .9rem; transition: var(--trans);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.fcol h4   { font-size: .82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.fcol ul li { margin-bottom: 10px; }
.fcol ul a  { font-size: .84rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 8px; transition: var(--trans); }
.fcol ul a i { font-size: .65rem; color: var(--gold); }
.fcol ul a:hover { color: var(--gold); gap: 12px; }
.fci-list .fci { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.fci-list .fci i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.fci-list .fci a, .fci-list .fci span { font-size: .84rem; color: rgba(255,255,255,.65); }
.fci-list .fci a:hover { color: var(--gold); }

.footer-bottom { background: rgba(0,0,0,.3); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-areas   { margin-top: 6px; font-size: .75rem; }

/* ================================================================
   FLOATING ELEMENTS
================================================================ */
.wa-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 800;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--trans);
}
.wa-float:hover { transform: scale(1.12); }
.wa-tip {
  position: absolute; right: 64px; background: var(--dark); color: var(--white);
  font-size: .75rem; padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--trans);
}
.wa-float:hover .wa-tip { opacity: 1; }

.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white); font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); transition: var(--trans);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold); color: var(--dark); }

/* ================================================================
   LIGHTBOX
================================================================ */
.lightbox     { position: fixed; inset: 0; z-index: 2000; display: none; }
.lightbox.show { display: flex; align-items: center; justify-content: center; }
.lb-bg        { position: absolute; inset: 0; background: rgba(0,0,0,.9); }
.lb-box       { position: relative; z-index: 1; max-width: 90vw; max-height: 88vh; }
.lb-box img   { max-width: 90vw; max-height: 84vh; object-fit: contain; display: block; border-radius: 8px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(0,0,0,.6); color: var(--white);
  border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; cursor: pointer; border: none; transition: var(--trans);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--dark); }
.lb-close { top: -16px; right: -16px; }
.lb-prev  { left: -20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: -20px; top: 50%; transform: translateY(-50%); }
.lb-cap   { position: absolute; bottom: -36px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font-size: .85rem; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1200px) {
  .nav-link  { padding: 6px 7px; font-size: .8rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 280px;
    background: var(--navy-dark); flex-direction: column;
    justify-content: center; gap: 4px; padding: 80px 28px 40px;
    transition: right .35s ease; box-shadow: -10px 0 40px rgba(0,0,0,.3); z-index: 899;
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: rgba(255,255,255,.88) !important; padding: 11px 14px !important; font-size: .95rem !important; border-radius: 8px; }
  .nav-cta  { background: var(--gold) !important; color: var(--dark) !important; text-align: center; margin-top: 8px; }
  .hamburger span { background: var(--white); }
  .navbar.scrolled .hamburger span { background: var(--white); }

  .svc-grid    { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .qual-grid   { grid-template-columns: repeat(2, 1fr); }
  .port-grid   { grid-template-columns: repeat(2, 1fr); }
  .proc-steps  { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .proc-line   { display: none; }
  .pkg-header-cards { grid-template-columns: 1fr; }
  .phc-label   { display: none; }
  .pkg-header-cards { grid-template-columns: 1fr 1fr; border-radius: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .svc-grid    { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .qual-grid   { grid-template-columns: 1fr; }
  .port-grid   { grid-template-columns: 1fr; }
  .proc-steps  { grid-template-columns: repeat(2, 1fr); }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns   { flex-direction: column; align-items: center; }
  .stats-grid  { gap: 16px; }
  .stat-num-sep { display: none; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .pkg-header-cards { grid-template-columns: 1fr; }
  .phc-builder { border-bottom: 1px solid rgba(13,33,55,.12); }
  .tprev, .tnext { display: none; }
}
