/* ===================================
   JL PROPERTY DEVELOPERS – style.css
   Deep Maroon · Crimson · Gold Luxury Theme
   =================================== */

/* ---------- FONTS & VARIABLES ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #2a0008;
  --navy-mid:    #4a0010;
  --navy-light:  #6b0018;
  --crimson:     #8b0000;
  --gold:        #c9a84c;
  --gold-light:  #e8cc80;
  --gold-dark:   #9a7830;
  --white:       #ffffff;
  --off-white:   #fdf6f0;
  --text-light:  #d4b0b8;
  --text-muted:  #a07878;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --radius:  12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 20px rgba(0,0,0,.12);
  --shadow-md: 0 12px 40px rgba(0,0,0,.18);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.28);
  --trans: all .35s cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }

/* ===================== PRELOADER ===================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #2a0008;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }

.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pre-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: 6px;
}
.pre-bar {
  width: 200px;
  height: 2px;
  background: rgba(200,169,110,.2);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: fillBar 1.8s ease forwards;
  border-radius: 2px;
}
@keyframes fillBar { to { width: 100%; } }

/* ===================== CUSTOM CURSOR ===================== */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9000;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition-property: transform, opacity;
  transition-timing-function: ease;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  transition-duration: .1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  opacity: .5;
  transition-duration: .4s;
}
.cursor-ring.hover-ring { width: 56px; height: 56px; opacity: .8; }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===================== UTILITIES ===================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.dark-section { background: var(--navy); color: var(--white); }
.centered { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.section-title em { color: var(--gold); font-style: italic; font-weight: 300; }
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-sub.light { color: var(--text-light); }

.section-header.centered .section-title,
.section-header.centered .section-sub { margin-bottom: 1.5rem; }
.section-header.centered { margin-bottom: 4rem; }

/* ===================== BUTTONS ===================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform .4s ease;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,.4); }
.btn-gold:hover::after { transform: translateX(110%) skewX(-15deg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .88rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--trans);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .88rem 2.2rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--trans);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.full-width { width: 100%; justify-content: center; }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal-up, .reveal-fade, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-fade  { transform: translateY(10px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}

.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--trans);
}
#navbar.scrolled {
  background: rgba(42,0,8,.97);
  backdrop-filter: blur(16px);
  padding: .9rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(200,169,110,.15);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.logo-jl {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.logo-sub {
  font-size: .62rem;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: .55rem 1.4rem;
  border-radius: 2px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.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); }

.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(200,169,110,.2);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--gold); }

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

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 14s ease forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(42,0,8,.82) 0%,
    rgba(42,0,8,.55) 55%,
    rgba(20,0,4,.3) 100%
  );
}
.hero-grid-overlay { display: none !important; opacity: 0 !important; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-top: 6rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp .8s ease .2s both;
}
.badge-line {
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp .8s ease .4s both;
  max-width: 900px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .hero-title { white-space: normal; font-size: clamp(1.8rem, 7vw, 2.6rem); }
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp .8s ease .55s both;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  animation: fadeSlideUp .8s ease .7s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: fadeSlideUp .8s ease .85s both;
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl { font-size: .67rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.55); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 2;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

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

.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-img-main img { height: 100%; transition: transform .6s ease; }
.about-img-main:hover img { transform: scale(1.05); }

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 50%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 3;
  border: 4px solid var(--white);
}
.about-img-accent img { height: 100%; }

.about-badge-float {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 4;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.badge-txt {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: .2rem;
}

.about-gold-strip {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  width: 3px;
  height: 60%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  z-index: 1;
}

.about-text {
  font-size: .95rem;
  line-height: 1.9;
  color: #4a5568;
  margin-bottom: 1.2rem;
}

.about-pillars {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}
.pillar i { color: var(--gold); font-size: 1.1rem; }

/* ===================== PROJECTS ===================== */
.filter-bar {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .55rem 1.6rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  transition: var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,110,.3);
}

.project-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.project-img img { height: 100%; transition: transform .55s ease; }
.project-card:hover .project-img img { transform: scale(1.07); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-link {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transform: scale(.7);
  transition: transform .3s ease;
}
.project-card:hover .project-link { transform: scale(1); }

.project-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
}

.project-info { padding: 1.5rem; }
.project-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
}
.project-info p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  font-size: .72rem;
  color: var(--text-muted);
}
.project-meta span { display: flex; align-items: center; gap: .3rem; }
.project-meta i { color: var(--gold); }

.status {
  padding: .25rem .7rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.status.ready    { background: rgba(72,199,142,.15); color: #48c78e; }
.status.ongoing  { background: rgba(200,169,110,.15); color: var(--gold-light); }
.status.upcoming { background: rgba(100,130,200,.15); color: #8ab0e8; }

.project-card.hidden { display: none; }

/* ===================== BUILD ASSIST ===================== */
.assist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.assist-card {
  background: var(--off-white);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--trans);
  overflow: hidden;
}
.assist-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.assist-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.assist-card:hover::before { transform: scaleX(1); }

.featured-assist {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
}
.featured-assist h3 { color: var(--white) !important; }
.featured-assist p { color: var(--text-light) !important; }
.featured-assist ul li { color: var(--text-light) !important; border-color: rgba(255,255,255,.1) !important; }

.assist-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 30px;
}

.assist-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.assist-icon i { color: var(--navy); font-size: 1.4rem; }

.assist-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .8rem;
}
.assist-card p {
  font-size: .88rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.assist-card ul { margin-bottom: 1.5rem; }
.assist-card ul li {
  font-size: .8rem;
  color: #4a5568;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.assist-card ul li::before {
  content: '✦';
  font-size: .55rem;
  color: var(--gold);
  flex-shrink: 0;
}

.assist-link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: var(--trans);
}
.assist-link:hover { gap: .9rem; }

/* ===================== TESTIMONIALS ===================== */
.testi-track {
  position: relative;
  overflow: hidden;
}
.testi-slider {
  display: flex;
  gap: 2rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: var(--trans);
}
.testi-card:hover { border-color: rgba(200,169,110,.3); background: rgba(255,255,255,.07); }

.testi-quote { color: var(--gold); font-size: 2rem; margin-bottom: 1.2rem; opacity: .5; }
.testi-card > p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.testi-author span {
  font-size: .75rem;
  color: var(--text-muted);
}
.testi-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: .9rem;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 2rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: var(--trans);
}
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===================== BLOGS ===================== */
.blogs-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,169,110,.15);
  transition: var(--trans);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.blog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.featured-blog .blog-img { height: 280px; }
.blog-img img { height: 100%; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
}

.blog-content { padding: 1.6rem; }
.blog-meta {
  display: flex;
  gap: 1.2rem;
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: .9rem;
}
.blog-meta i { color: var(--gold); }

.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: .8rem;
}
.featured-blog .blog-content h3 { font-size: 1.6rem; }

.blog-content p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.blog-link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: var(--trans);
}
.blog-link:hover { gap: .9rem; }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  margin-bottom: 4rem;
}

.contact-details { margin-bottom: 2.5rem; }
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.c-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .4rem;
}
.contact-item p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--trans);
}
.social-links a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: .9rem;
  color: var(--navy);
  background: #f9faff;
  transition: border-color .25s ease, box-shadow .25s ease;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.15);
  background: var(--white);
}

.form-note {
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Map */
.map-section { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.map-placeholder { position: relative; }
.map-placeholder iframe { display: block; border-radius: var(--radius-lg); filter: grayscale(30%) contrast(1.1); }
.map-pin-label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: .6rem 1.4rem;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

/* ===================== FOOTER ===================== */
.footer { background: var(--navy); color: var(--text-light); }
.footer-top { padding: 5rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  color: var(--text-muted);
}
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .8rem; }
.footer-col ul a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-col ul a::before {
  content: '→';
  color: var(--gold);
  font-size: .7rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--trans);
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: .2rem; }
.footer-col ul a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact { gap: 1rem !important; }
.footer-contact li {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  line-height: 1.6;
}
.footer-contact i { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: .78rem;
  color: var(--text-muted);
  transition: var(--trans);
}
.footer-legal a:hover { color: var(--gold); }

/* ===================== BACK TO TOP ===================== */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--trans);
  z-index: 500;
  pointer-events: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 1rem 2rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
  opacity: 0;
}
.toast i { color: var(--gold); font-size: 1.1rem; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .assist-grid   { grid-template-columns: repeat(2, 1fr); }
  .blogs-grid    { grid-template-columns: 1fr 1fr; }
  .featured-blog { grid-column: span 2; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-grid    { gap: 3.5rem; }
}

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

  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.5rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-images { height: 380px; }

  .projects-grid { grid-template-columns: 1fr; }
  .assist-grid   { grid-template-columns: 1fr; }

  .blogs-grid    { grid-template-columns: 1fr; }
  .featured-blog { grid-column: span 1; }

  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .form-row      { grid-template-columns: 1fr; }

  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }

  .testi-card { flex: 0 0 calc(100% - 0px); }

  .hero-scroll { display: none; }

  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .section { padding: 5rem 0; }
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 1.2rem; }
  .stat-divider { width: 40px; height: 1px; }
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 500;
  transition: var(--trans);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ===================== WHATSAPP TOOLTIP ===================== */
.whatsapp-float::before {
  content: 'Chat with us';
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  padding: .4rem .8rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  border: 1px solid rgba(200,169,110,.2);
}
.whatsapp-float:hover::before { opacity: 1; }

/* ===================== NAV ACTIVE LINK FIX ===================== */
.nav-links a.active { color: var(--gold) !important; }
.nav-links a.active::after { width: 100% !important; }

/* ===================== HERO SECTION BADGE IMPROVEMENT ===================== */
.hero-badge { user-select: none; }

/* ===================== FORM ACCESSIBILITY ===================== */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===================== SMOOTH IMAGE FADE-IN ===================== */
img[loading="lazy"] {
  transition: opacity .4s ease;
}

/* ===================== PROJECT CARD FOCUS ===================== */
.project-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===================== FOOTER YEAR ===================== */
/* (handled in HTML) */

/* ===================== SCROLL PROGRESS BAR ===================== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* ===================== HERO STATS RESPONSIVE ===================== */
@media (max-width: 360px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
}

/* ===================== BETTER MOBILE NAV MENU ===================== */
.mobile-menu.open {
  animation: slideDown .3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== SECTION HEADER SPACING FIX ===================== */
@media (max-width: 768px) {
  .section-header.centered { margin-bottom: 2.5rem; }
  .section { padding: 4.5rem 0; }
}

/* ===================== NAVBAR LOGO ALWAYS VISIBLE ===================== */
#navbar .logo-main,
#navbar .logo-sub { color: rgba(255,255,255,.85); }

/* ===================== IMAGE LOGO IN NAV ===================== */
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(200,169,110,.3));
  transition: var(--trans);
}
.nav-logo-img:hover {
  filter: drop-shadow(0 4px 16px rgba(200,169,110,.6));
  transform: scale(1.04);
}
#navbar.scrolled .nav-logo-img {
  height: 48px;
}

/* ===================== PRELOADER LOGO IMAGE ===================== */
.pre-logo-img {
  width: min(55vw, 55vh);
  height: auto;
  display: block;
  margin: 0 auto 3rem;
  object-fit: contain;
  animation: preLogoFade 1s ease forwards;
  filter: drop-shadow(0 0 80px rgba(201,168,76,.6));
}
@keyframes preLogoFade {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===================== WHY CHOOSE US SECTION ===================== */
.why-us { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(42,0,8,.08);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold-dark);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.why-icon i { color: var(--gold); font-size: 1.2rem; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.why-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* Vision / Mission */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 640px) { .vision-mission { grid-template-columns: 1fr; } }

.vm-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: var(--white);
  border: 1px solid rgba(201,168,76,.2);
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(201,168,76,.06);
}
.vm-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.vm-icon i { color: var(--gold); font-size: 1.1rem; }
.vm-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: .8rem;
}
.vm-card p { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.8; }

/* ===================== ABOUT DIVIDER ===================== */
.about-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0 3rem;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
}
