/*
 * Tshepo Ceiling & Painting
 * Premium Website Styles — Navy · Gold · White
 * Designed by Ritshuri Tech Solutions
 * =========================================
 */

/* ============= VARIABLES ============= */
:root {
  --navy: #0B1F3A;
  --navy-2: #122847;
  --navy-dark: #070f1c;
  --gold: #C9A34E;
  --gold-light: #d9b86a;
  --gold-dark: #a8882f;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --muted: #8A8A9A;
  --border: rgba(201, 163, 78, 0.2);
  --t: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============= RESET ============= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ============= SCROLLBAR ============= */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ============= CUSTOM CURSOR (desktop) ============= */
@media (hover:hover) and (pointer:fine) {
  body {
    cursor: none;
  }

  .cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: transform 0.14s linear, width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  }

  .cursor-ring.big {
    width: 54px;
    height: 54px;
    opacity: 0.25;
  }
}

/* ============= PAGE LOADER ============= */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.out {
  opacity: 0;
  visibility: hidden;
}

.ldr-logo {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
}

.ldr-logo span {
  color: var(--gold);
}

.ldr-bar {
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.ldr-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: ldrFill 2s ease-in-out forwards;
}

@keyframes ldrFill {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ============= TOP BAR ============= */
.top-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201, 163, 78, 0.12);
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.tb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tb-left {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.tb-left a,
.tb-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--t);
}

.tb-left a:hover {
  color: var(--gold);
}

.tb-left i {
  color: var(--gold);
  font-size: 0.72rem;
}

.btn-wa-top {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  transition: var(--t);
}

.btn-wa-top:hover {
  background: #1ebe5d;
  transform: scale(1.04);
  color: #fff;
}

/* ============= NAVBAR ============= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 163, 78, 0.1);
  transition: var(--t);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: relative;
  transition: var(--t);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-qnav {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 8px 22px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--t);
}

.btn-qnav:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 22px rgba(201, 163, 78, 0.35);
}

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}

.ham span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: var(--t);
}

.ham.on span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ham.on span:nth-child(2) {
  opacity: 0;
}

.ham.on span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1800;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
}

.drawer-overlay.on {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1900;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-left: 1px solid rgba(201, 163, 78, 0.12);
  transition: right 0.42s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-drawer.on {
  right: 0;
}

.dr-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 44px;
}

.dr-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.dr-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.dr-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--t);
}

.dr-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.dr-links i {
  font-size: 0.95rem;
  width: 20px;
}

.dr-bottom {
  margin-top: auto;
}

.btn-qdr {
  display: block;
  text-align: center;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 14px;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--t);
  margin-bottom: 20px;
}

.btn-qdr:hover {
  background: var(--gold);
  color: var(--navy);
}

.dr-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dr-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  transition: var(--t);
}

.dr-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============= HERO ============= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(135deg, rgba(11, 31, 58, 0.88) 0%, rgba(7, 15, 28, 0.78) 100%),
    url('images/Ceiling/Rhino-Board/hero-bgg.jpeg');
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  transform: scale(1.06);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

/* Gold corner brackets */
.hc {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
}

.hc.tl {
  top: 22px;
  left: 22px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.hc.br {
  bottom: 22px;
  right: 22px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* Gold radial glow (visible even without image) */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 163, 78, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  max-width: 880px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 163, 78, 0.3);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fup 0.8s ease 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  opacity: 0;
  animation: fup 0.8s ease 0.6s forwards;
}

.hero-title .g {
  color: var(--gold);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
  opacity: 0;
  animation: fup 0.8s ease 0.9s forwards;
}

.hero-sub {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0;
  animation: fup 0.8s ease 1s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  animation: fup 0.8s ease 1.2s forwards;
}

.btn-hp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--t);
}

.btn-hp:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 163, 78, 0.38);
  color: var(--navy);
}

.btn-hs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--t);
}

.btn-hs:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.scroll-ind {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-mouse {
  width: 21px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: sw 1.6s ease-in-out infinite;
}

@keyframes sw {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  55% {
    transform: translateY(8px);
    opacity: 0.25
  }
}

/* ============= TRUST STRIP ============= */
.trust-strip {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201, 163, 78, 0.1);
  padding: 13px 0;
  overflow: hidden;
}

.mq-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: mq 22s linear infinite;
  width: max-content;
}

.mq-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.mq-item i {
  color: var(--gold);
}

.mq-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ============= SECTION COMMONS ============= */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.sec-title {
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sec-title.light {
  color: #fff;
}

.sec-desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

.sec-desc.light {
  color: rgba(255, 255, 255, 0.5);
}

.tc {
  text-align: center;
}

.tc .sec-desc {
  margin: 0 auto;
}

/* ============= FEATURED WORK ============= */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

@media(max-width:860px) {
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:540px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }
}

.proj-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy-2);
}

.proj-card.big {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

@media(max-width:540px) {
  .proj-card.big {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}

.proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--navy-2);
}

.proj-card:hover .proj-img {
  transform: scale(1.08);
}

.proj-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 15, 28, 0.95) 0%, rgba(7, 15, 28, 0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.proj-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 7px;
  transform: translateY(8px);
  opacity: 0;
  transition: var(--t);
}

.proj-card:hover .proj-tag {
  transform: translateY(0);
  opacity: 1;
}

.proj-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.proj-meta {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ============= BEFORE / AFTER ============= */
.ba-section {
  background: var(--navy-dark);
  padding: 100px 0;
  overflow: hidden;
}

.ba-wrap {
  position: relative;
  max-width: 880px;
  margin: 52px auto 0;
  border-radius: 6px;
  overflow: hidden;
  user-select: none;
  aspect-ratio: 16/9;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(201, 163, 78, 0.18);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--navy-2);
}

.ba-after-img {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.ba-lbl {
  position: absolute;
  top: 18px;
  padding: 4px 14px;
  z-index: 5;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
}

.ba-lbl.bef {
  left: 18px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ba-lbl.aft {
  right: 18px;
  background: var(--gold);
  color: var(--navy);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--gold);
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-btn {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.ba-cap {
  text-align: center;
  margin-top: 30px;
}

.ba-cap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.ba-cap p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.83rem;
  margin-top: 5px;
}

/* ============= SERVICES ============= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}

@media(max-width:720px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
}

.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-2);
  transition: transform 0.6s ease;
}

.svc-card:hover .svc-bg {
  transform: scale(1.06);
}

.svc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 15, 28, 0.97) 0%, rgba(11, 31, 58, 0.55) 65%, rgba(11, 31, 58, 0.15) 100%);
  transition: var(--t);
}

.svc-card:hover .svc-ov {
  background: linear-gradient(0deg, rgba(7, 15, 28, 0.99) 0%, rgba(11, 31, 58, 0.75) 100%);
}

.svc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 26px;
  z-index: 2;
}

.svc-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: var(--t);
}

.svc-card:hover .svc-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201, 163, 78, 0.4);
}

.svc-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.svc-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--t);
}

.svc-card:hover .svc-desc {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

/* ============= STATS ============= */
.stats-bar {
  background: var(--gold);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

@media(max-width:640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-n {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-l {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(11, 31, 58, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ============= WHY CHOOSE US ============= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

@media(max-width:720px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  text-align: center;
  padding: 46px 28px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.trust-card:hover::before {
  width: 100%;
}

.trust-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(201, 163, 78, 0.12);
}

.tc-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.1;
  position: absolute;
  top: 18px;
  right: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.tc-icon {
  font-size: 1.9rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.tc-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.tc-text {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============= GALLERY ============= */
.gal-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px 0 28px;
}

.gf-btn {
  padding: 7px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 30px;
  transition: var(--t);
  font-family: 'Poppins', sans-serif;
}

.gf-btn:hover,
.gf-btn.on {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 7px;
}

@media(max-width:800px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
}

@media(max-width:450px) {
  .gal-grid {
    grid-auto-rows: 140px;
  }
}

.gi {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.gi.wide {
  grid-column: span 2;
}

.gi.tall {
  grid-row: span 2;
}

.gi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--navy-2);
}

.gi:hover .gi-img {
  transform: scale(1.08);
}

.gi-ov {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 28, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
}

.gi:hover .gi-ov {
  opacity: 1;
}

.gi-zoom {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gi:hover .gi-zoom {
  transform: scale(1);
}

/* Gallery item hidden state for filters */
.gi.hidden {
  display: none;
}

.gi {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ============= QUOTE SECTION ============= */
.quote-sec {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(135deg, rgba(11, 31, 58, 0.95) 0%, rgba(7, 15, 28, 0.93) 100%),
    url('images/splash.jpeg');
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}

/* Decorative gold lines */
.quote-bg::before,
.quote-bg::after {
  content: '';
  position: absolute;
  background: var(--gold);
  opacity: 0.08;
}

.quote-bg::before {
  width: 2px;
  height: 100%;
  left: 10%;
  top: 0;
}

.quote-bg::after {
  width: 100%;
  height: 2px;
  top: 30%;
  left: 0;
}

.quote-inner {
  position: relative;
  z-index: 1;
}

.quote-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 163, 78, 0.18);
  border-radius: 8px;
  padding: 48px;
  backdrop-filter: blur(20px);
  max-width: 680px;
  margin: 48px auto 0;
}

@media(max-width:580px) {
  .quote-form {
    padding: 28px 20px;
  }
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media(max-width:480px) {
  .f-row {
    grid-template-columns: 1fr;
  }
}

.f-grp {
  margin-bottom: 18px;
}

.f-lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.f-inp {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 163, 78, 0.18);
  color: #fff;
  padding: 12px 15px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--t);
  outline: none;
}

.f-inp:focus {
  border-color: var(--gold);
  background: rgba(201, 163, 78, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 163, 78, 0.1);
}

.f-inp::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.f-inp option {
  background: var(--navy);
  color: #fff;
}

.f-ta {
  resize: vertical;
  min-height: 100px;
}

.f-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 22px;
}

.btn-sub {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: var(--t);
}

.btn-sub:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 32px rgba(201, 163, 78, 0.38);
  transform: translateY(-2px);
}

.btn-sub:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

/* ============= TESTIMONIALS ============= */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

@media(max-width:860px) {
  .test-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:520px) {
  .test-grid {
    grid-template-columns: 1fr;
  }
}

.test-card {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.07);
  border-radius: 5px;
  padding: 30px 26px;
  transition: var(--t);
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.09);
  border-color: rgba(201, 163, 78, 0.28);
}

.test-q {
  font-size: 2.6rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}

.test-stars {
  color: var(--gold);
  font-size: 0.82rem;
  margin: 10px 0 14px;
}

.test-txt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
}

.test-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.test-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
}

.test-loc {
  font-size: 0.73rem;
  color: var(--muted);
}

/* ============= SERVICE AREAS ============= */
.areas-sec {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}

.areas-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.area-i {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  padding: 8px 30px;
  border-right: 1px solid rgba(201, 163, 78, 0.18);
  transition: var(--t);
  cursor: default;
}

.area-i:last-child {
  border-right: none;
}

.area-i:hover,
.area-i.hi {
  color: var(--gold);
}

/* ============= ABOUT ============= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media(max-width:760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.ab-img-wrap {
  position: relative;
}

.ab-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  background: var(--navy-2);
}

.ab-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 22px;
  border-radius: 4px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.ab-badge .yr {
  font-size: 2.4rem;
  line-height: 1;
  display: block;
}

.ab-badge .lb {
  font-size: 0.66rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.65;
}

@media(max-width:760px) {
  .ab-badge {
    position: static;
    display: inline-block;
    margin-top: 16px;
  }
}

.ab-story {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 16px;
}

.ab-feats {
  margin: 24px 0;
}

.ab-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.07);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--navy);
}

.ab-feats li i {
  color: var(--gold);
}

.btn-abt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 13px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--t);
}

.btn-abt:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.28);
  color: #fff;
}

/* ============= FOOTER ============= */
.footer {
  background: #060D19;
  padding: 76px 0 0;
  border-top: 1px solid rgba(201, 163, 78, 0.08);
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}

@media(max-width:860px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media(max-width:440px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}

.ft-brand p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.72;
  margin-top: 18px;
  max-width: 280px;
}

.ft-soc {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.ft-soc a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  transition: var(--t);
}

.ft-soc a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ft-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.ft-links li {
  margin-bottom: 9px;
}

.ft-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.86rem;
  transition: var(--t);
}

.ft-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.ft-clist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 13px;
}

.ft-clist li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.ft-clist a {
  color: inherit;
}

.ft-clist .gold-lnk {
  color: var(--gold);
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 22px 0;
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

.ft-bottom a {
  color: var(--gold);
}

/* ============= FLOATING WHATSAPP ============= */
.fwa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.fwa-lbl {
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--t);
}

.fwa:hover .fwa-lbl {
  opacity: 1;
  transform: translateX(0);
}

.fwa-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.38);
  animation: wap 2.2s ease-in-out infinite;
  transition: var(--t);
}

.fwa:hover .fwa-btn {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
}

@keyframes wap {

  0%,
  100% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.38);
  }

  50% {
    box-shadow: 0 6px 44px rgba(37, 211, 102, 0.65), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* ============= LIGHTBOX ============= */
#lbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
}

#lbox.on {
  opacity: 1;
  visibility: visible;
}

#lbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}

.lbox-x {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #fff;
  font-size: 1.9rem;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.55;
  transition: var(--t);
}

.lbox-x:hover {
  opacity: 1;
  color: var(--gold);
}

/* ============= SCROLL REVEAL ============= */
.rv {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.rv-l {
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv-l.in {
  opacity: 1;
  transform: translateX(0);
}

.rv-r {
  opacity: 0;
  transform: translateX(38px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv-r.in {
  opacity: 1;
  transform: translateX(0);
}

/* ============= ANIMATIONS ============= */
@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* ============= MOBILE OVERRIDES ============= */
@media(max-width:768px) {
  .top-bar {
    display: none;
  }

  .nav-links,
  .btn-qnav {
    display: none;
  }

  .ham {
    display: flex;
  }

  .section {
    padding: 68px 0;
  }

  .ab-badge {
    right: 0;
  }
}