/* ============================================================
   PREMIUM HOME BUILDERS — Luxury Construction Website
   Theme: Dark Navy · Gold · Crisp White
   Font: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

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

/* ── CSS VARIABLES ── */
:root {
  --navy:        #0a0f1e;
  --navy-mid:    #111827;
  --navy-light:  #1a2540;
  --navy-card:   #141d30;
  --gold:        #c9a84c;
  --gold-light:  #e2c475;
  --gold-pale:   #f0d99180;
  --white:       #ffffff;
  --off-white:   #f8f6f1;
  --gray-text:   #9aa0b0;
  --border:      rgba(201,168,76,0.18);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.18);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.5);
  --r-sm:        4px;
  --r-md:        8px;
  --r-lg:        16px;
  --tr:          0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', system-ui, sans-serif;
}

/* ── 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(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  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.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  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%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--gold-light); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: ''; display: block;
  width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600; color: var(--white);
  margin-bottom: 16px; line-height: 1.1;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-sub {
  font-size: 16px; font-weight: 300;
  color: var(--gray-text); max-width: 540px; line-height: 1.8;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
section { padding: 104px 0; }

/* ── GOLD DIVIDER ── */
.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px 0 32px;
}
.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: var(--tr); border: none; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-101%); transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}
.btn-gold:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-gold-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(10,15,30,0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  display: flex; flex-direction: column; gap: 1px;
}
.logo-main {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 700; color: var(--white); letter-spacing: 1px; line-height: 1;
}
.logo-main span { color: var(--gold); }
.logo-tag {
  font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-body); font-weight: 400;
}
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.75); padding: 8px 16px;
  border-radius: var(--r-sm); transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.navbar-cta { margin-left: 16px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 1.5px; background: var(--gold);
  transition: var(--tr);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4.5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,15,30,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 24px; letter-spacing: 4px; color: var(--white); }
.mobile-menu .nav-link:hover { color: var(--gold); }

/* ── PARALLAX HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,30,0.85) 0%,
    rgba(10,15,30,0.6) 50%,
    rgba(10,15,30,0.75) 100%
  );
}
/* Geometric accent overlay */
.hero::after {
  content: ''; position: absolute;
  right: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.04) 100%);
  border-left: 1px solid rgba(201,168,76,0.08);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  font-family: var(--font-body); font-weight: 400;
}
.hero-eyebrow .line { width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700; line-height: 1.0;
  color: var(--white); margin-bottom: 8px;
}
.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300; color: rgba(255,255,255,0.7);
  letter-spacing: 3px; text-transform: uppercase;
  font-family: var(--font-body); margin-bottom: 32px;
}
.hero-desc {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65);
  max-width: 500px; line-height: 1.9; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; font-family: var(--font-body); z-index: 2;
  animation: scrollPulse 2s infinite;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; right: 0;
  display: flex; z-index: 2;
}
.hero-stat {
  padding: 28px 36px;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 300;
}

/* ── ABOUT PARALLAX ── */
.about-section { background: var(--navy-mid); position: relative; overflow: hidden; }
.about-section::before {
  content: ''; position: absolute; top: -2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-parallax-img {
  position: relative; height: 580px; overflow: hidden; border-radius: var(--r-md);
}
.about-parallax-img .img-inner {
  width: 100%; height: 130%;
  background: url('../images/about-bg.jpg') center center / cover no-repeat;
  position: absolute; top: -15%;
  transition: transform 0.1s linear;
}
.about-parallax-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.about-badge {
  position: absolute; bottom: 32px; right: -20px;
  background: var(--gold);
  color: var(--navy); padding: 24px 28px;
  font-family: var(--font-display); z-index: 2;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-gold);
}
.about-badge-num { font-size: 40px; font-weight: 700; line-height: 1; }
.about-badge-txt { font-size: 12px; letter-spacing: 1px; font-family: var(--font-body); }

.about-text { padding-left: 16px; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0;
}
.about-feat {
  padding: 20px; border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: rgba(201,168,76,0.03);
  transition: var(--tr);
}
.about-feat:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-2px); }
.about-feat-icon { font-size: 22px; margin-bottom: 8px; }
.about-feat h4 { font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 1px; color: var(--gold); }
.about-feat p { font-size: 13px; color: var(--gray-text); margin-top: 4px; }

/* ── SERVICES PARALLAX ── */
.services-section { background: var(--navy); }
.services-banner {
  position: relative; margin: 0 0 80px;
  height: 320px; overflow: hidden; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.services-banner .banner-bg {
  position: absolute; inset: 0;
  background: url('../images/services-bg.jpg') center / cover no-repeat;
  background-attachment: fixed;
}
.services-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(10,15,30,0.75);
}
.services-banner-content { position: relative; z-index: 2; }
.services-banner h2 {
  font-family: var(--font-display); font-size: clamp(28px,4vw,48px);
  color: var(--white); font-weight: 600;
}
.services-banner h2 span { color: var(--gold); font-style: italic; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-md); border: 1px solid var(--border);
  background: var(--navy-card);
  transition: var(--tr);
  group: true;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.service-img {
  height: 240px; overflow: hidden; position: relative;
}
.service-img img, .service-img .img-placeholder {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
  display: flex; align-items: center; justify-content: center;
}
.service-img .img-placeholder {
  background: var(--navy-light);
  font-size: 48px; color: var(--gold);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-card:hover .service-img .img-placeholder { transform: scale(1.08); }
.service-num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  color: rgba(201,168,76,0.15); line-height: 1;
}
.service-body { padding: 28px; }
.service-body h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.service-body p { font-size: 14px; color: var(--gray-text); line-height: 1.8; margin-bottom: 20px; }
.service-features { list-style: none; }
.service-features li {
  font-size: 13px; color: rgba(255,255,255,0.65);
  padding: 5px 0; display: flex; align-items: center; gap: 10px;
}
.service-features li::before {
  content: '▸'; color: var(--gold); font-size: 10px; flex-shrink: 0;
}

/* ── PROJECTS SECTION ── */
.projects-section { background: var(--navy-mid); }
.projects-banner {
  position: relative; height: 280px; overflow: hidden; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 72px;
}
.projects-banner .banner-bg {
  position: absolute; inset: 0;
  background: url('../images/projects-bg.jpg') center / cover no-repeat;
  background-attachment: fixed;
}
.projects-banner::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,15,30,0.8); z-index: 1;
}
.projects-banner-content { position: relative; z-index: 2; text-align: center; }
.projects-banner-content h2 {
  font-family: var(--font-display); font-size: clamp(28px,4vw,44px);
  color: var(--white); font-style: italic;
}
.projects-banner-content h2 span { color: var(--gold); }

.projects-filter {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px; border-radius: 40px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--border); background: transparent; color: var(--gray-text);
  cursor: pointer; transition: var(--tr); font-family: var(--font-body);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.project-card {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 4/3; cursor: pointer;
  background: var(--navy-light);
}
.project-card .proj-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.project-card:hover .proj-img { transform: scale(1.1); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.95) 0%, transparent 60%);
  transform: translateY(40%); transition: transform 0.4s ease; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.project-card:hover .project-overlay { transform: translateY(0); }
.project-tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; font-family: var(--font-body);
}
.project-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.project-loc { font-size: 12px; color: var(--gray-text); }

/* ── COUNTERS ── */
.counters-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-card) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.counter-item {
  padding: 40px 20px; text-align: center;
  border-right: 1px solid var(--border); position: relative;
}
.counter-item:last-child { border-right: none; }
.counter-num {
  font-family: var(--font-display); font-size: clamp(48px, 6vw, 72px);
  font-weight: 700; color: var(--gold); line-height: 1;
}
.counter-suffix { font-size: 32px; color: var(--gold-light); }
.counter-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray-text); margin-top: 8px; font-weight: 300;
}

/* ── PACKAGES ── */
.packages-section { background: var(--navy); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.package-card {
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 44px 36px; background: var(--navy-card);
  position: relative; overflow: hidden; transition: var(--tr);
}
.package-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.4s ease;
}
.package-card.featured { border-color: var(--gold); background: var(--navy-light); }
.package-card.featured::before { transform: scaleX(1); }
.package-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.package-card:hover::before { transform: scaleX(1); }
.package-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--navy);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; font-weight: 600;
}
.package-tier {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-family: var(--font-body); font-weight: 400;
}
.package-name {
  font-family: var(--font-display); font-size: 32px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.package-price {
  font-family: var(--font-display); font-size: 20px; color: var(--gold-light);
  margin-bottom: 28px; font-style: italic;
}
.package-divider {
  height: 1px; background: var(--border); margin: 24px 0;
}
.package-features { list-style: none; }
.package-features li {
  padding: 9px 0; font-size: 14px; color: rgba(255,255,255,0.7);
  display: flex; gap: 12px; align-items: flex-start; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.package-features li:last-child { border-bottom: none; }
.pkg-check { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.package-cta { margin-top: 36px; width: 100%; justify-content: center; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--navy-mid); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 36px; background: var(--navy-card); position: relative;
  transition: var(--tr);
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.testimonial-quote {
  font-family: var(--font-display); font-size: 72px; line-height: 0.5;
  color: var(--gold); opacity: 0.3; margin-bottom: 20px;
}
.testimonial-text {
  font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.9;
  font-style: italic; margin-bottom: 28px;
  font-family: var(--font-display);
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-light); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.testimonial-name { font-size: 14px; font-weight: 500; color: var(--white); }
.testimonial-role { font-size: 12px; color: var(--gold); margin-top: 2px; }
.testimonial-stars { color: var(--gold); font-size: 12px; margin-top: 4px; letter-spacing: 2px; }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual {
  position: relative; height: 520px; border-radius: var(--r-md); overflow: hidden;
}
.why-visual .img-inner {
  width: 100%; height: 130%;
  background: url('../images/why-bg.jpg') center / cover no-repeat;
  position: absolute; top: -15%;
}
.why-visual::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 50%);
}
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-feat {
  display: flex; gap: 20px; padding: 24px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--navy-card); transition: var(--tr);
}
.why-feat:hover { border-color: var(--gold); transform: translateX(6px); }
.why-feat-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(201,168,76,0.12); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; border: 1px solid var(--border);
}
.why-feat-body h4 { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.why-feat-body p { font-size: 13px; color: var(--gray-text); line-height: 1.7; }

/* ── CTA PARALLAX ── */
.cta-section {
  position: relative; padding: 140px 0;
  background: url('../images/cta-bg.jpg') center / cover no-repeat;
  background-attachment: fixed;
  text-align: center; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.7) 50%, rgba(10,15,30,0.88) 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: var(--font-display); font-size: clamp(36px,5vw,68px);
  font-weight: 600; color: var(--white); margin-bottom: 12px;
}
.cta-content h2 span { color: var(--gold); font-style: italic; }
.cta-content p {
  font-size: 17px; color: rgba(255,255,255,0.65); max-width: 500px;
  margin: 0 auto 48px; line-height: 1.8;
}
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── GALLERY ── */
.gallery-section { background: var(--navy-mid); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r-sm); cursor: pointer;
  background: var(--navy-light);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item .gal-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.gallery-item:hover .gal-img { transform: scale(1.08); }
.gallery-item::after {
  content: '⊕'; position: absolute; inset: 0;
  background: rgba(10,15,30,0.7); color: var(--gold);
  font-size: 32px; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 36px; color: var(--gold); cursor: pointer; background: none; border: none;
  font-family: var(--font-display);
}
.lightbox-img {
  max-width: 80vw; max-height: 80vh; border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 120px; min-width: 400px; min-height: 300px;
  background: var(--navy-light);
}

/* ── CONTACT ── */
.contact-section { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info { }
.contact-info h3 {
  font-family: var(--font-display); font-size: 36px; color: var(--white); margin-bottom: 8px;
}
.contact-info > p { font-size: 15px; color: var(--gray-text); margin-bottom: 40px; }
.contact-detail {
  display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-detail-text h4 {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.contact-detail-text p, .contact-detail-text a {
  font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6;
  transition: color 0.3s;
}
.contact-detail-text a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 36px; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border: 1px solid var(--border); border-radius: var(--r-sm);
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: var(--tr); font-family: var(--font-body);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.contact-form-box {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 48px;
}
.contact-form-box h3 {
  font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 6px;
}
.contact-form-box > p { font-size: 14px; color: var(--gray-text); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; font-weight: 400;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 13px 16px; font-family: var(--font-body); font-size: 14px;
  color: var(--white); transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option { background: var(--navy-card); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Map */
.map-box {
  margin-top: 80px; border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; height: 380px;
  background: var(--navy-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
}
.map-box svg { opacity: 0.3; }
.map-box p { font-size: 14px; color: var(--gray-text); }
.map-box a { font-size: 13px; color: var(--gold); border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: border-color 0.3s; }
.map-box a:hover { border-color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #060a14;
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer-brand-desc { font-size: 14px; color: var(--gray-text); line-height: 1.8; margin: 20px 0 28px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; font-weight: 400;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: var(--gray-text); transition: color 0.3s; display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '▸'; color: var(--gold); font-size: 9px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-line { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-line span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: 14px; }
.footer-contact-line a, .footer-contact-line p { font-size: 13px; color: var(--gray-text); transition: color 0.3s; line-height: 1.6; }
.footer-contact-line a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { color: var(--gold); }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 9000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.wa-tooltip {
  background: var(--navy-card); color: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-size: 13px; padding: 8px 16px; white-space: nowrap;
  opacity: 0; transform: translateX(8px); transition: var(--tr); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5); transition: var(--tr); text-decoration: none;
  position: relative;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,0.65); }
.wa-btn svg { width: 32px; height: 32px; fill: white; }
.wa-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid #25D366; animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 60vh; min-height: 380px;
  display: flex; align-items: center;
  background: var(--navy-mid);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.9) 0%, rgba(10,15,30,0.6) 100%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-attachment: fixed; background-size: cover; background-position: center;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 10px; align-items: center; margin-bottom: 16px; }
.breadcrumb a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb .cur { color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(36px,6vw,72px);
  color: var(--white); font-weight: 600; font-style: italic; line-height: 1.1;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); margin-top: 12px; font-weight: 300; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── PACKAGES PAGE ── */
.packages-compare { overflow-x: auto; margin-top: 48px; }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 14px 20px; border: 1px solid var(--border);
  text-align: center; color: rgba(255,255,255,0.8);
}
.compare-table thead th {
  background: var(--navy-light); color: var(--gold);
  font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}
.compare-table tbody tr:hover { background: rgba(201,168,76,0.03); }
.compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.65); }
.check { color: var(--gold); }
.cross { color: rgba(255,255,255,0.2); }

/* ── ABOUT PAGE EXTENDED ── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute; left: -38px; top: 4px;
  width: 14px; height: 14px; background: var(--gold); border-radius: 50%;
  border: 2px solid var(--navy);
}
.timeline-item h4 { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--gold); margin-bottom: 6px; }
.timeline-item p { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .navbar-nav { display: none; }
  .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { position: static; flex-wrap: wrap; margin-top: 48px; }
  .hero-stat { flex: 1; min-width: 120px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { border-bottom: 1px solid var(--border); }
  .packages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { background-attachment: scroll; }
  .cta-section { background-attachment: scroll; }
  .about-badge { right: 0; }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .why-features .why-feat { flex-direction: column; gap: 12px; }
}
/* ── PACKAGE PDF DOWNLOAD SECTION ── */

.package-download-section{
  padding:120px 0;
  background:var(--navy-mid);
  text-align:center;
}

.package-download-box{
  max-width:700px;
  margin:auto;
  padding:60px 40px;
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  background:var(--navy-card);
  box-shadow:var(--shadow-dark);
  position:relative;
  overflow:hidden;
}

.package-download-box::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
}

.package-download-title{
  font-family:var(--font-display);
  font-size:42px;
  color:var(--white);
  margin-bottom:12px;
}

.package-download-title span{
  color:var(--gold);
  font-style:italic;
}

.package-download-text{
  font-size:15px;
  color:var(--gray-text);
  max-width:520px;
  margin:auto;
  margin-bottom:40px;
  line-height:1.8;
}

/* DOWNLOAD BUTTON */

.download-pdf-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 40px;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:500;
  border-radius:var(--r-sm);
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--navy);
  transition:var(--tr);
}

.download-pdf-btn:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-gold);
}