/* ============================================
   GROWTH LAND — Modern Futuristic Luxury Stylesheet
   ============================================ */

:root {
  --deep-green: #0F3D2E;
  --forest-green: #1B5E47;
  --emerald: #14B886;
  --gold: #C9A24B;
  --soft-gold: #E2C275;
  --bright-gold: #F0CB6C;
  --charcoal: #0A0A0A;
  --ink: #141414;
  --off-white: #FAF7F2;
  --beige: #EFE7D8;
  --white: #FFFFFF;
  --whatsapp: #25D366;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', 'Inter', sans-serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', Georgia, serif;

  --shadow-sm: 0 4px 14px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 20px 50px rgba(201,162,75,0.25);
  --shadow-green: 0 20px 50px rgba(15,61,46,0.18);

  --radius: 18px;
  --radius-lg: 24px;

  --container: 1280px;

  --grad-gold: linear-gradient(135deg, #E2C275 0%, #C9A24B 50%, #A88735 100%);
  --grad-green: linear-gradient(135deg, #1B5E47 0%, #0F3D2E 100%);
  --grad-dark: linear-gradient(135deg, #0F3D2E 0%, #0A0A0A 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: 0.25s ease; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; }

/* Selection */
::selection { background: var(--gold); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--deep-green); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; color: var(--charcoal); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.4rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.18);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,162,75,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(201,162,75,0.05); }
}

.gold-divider {
  width: 80px; height: 2px;
  background: var(--grad-gold);
  margin: 18px auto 0; border-radius: 2px;
  position: relative;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  position: absolute; top: 50%;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.3;
  transform: translateY(-50%);
}
.gold-divider::before { right: calc(100% + 8px); }
.gold-divider::after { left: calc(100% + 8px); }

.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}
.section-head { text-align: center; margin-bottom: 70px; }
.section-head h2 { margin-top: 4px; }
.section-sub {
  margin-top: 18px;
  color: #666;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.lead { font-size: 1.05rem; color: #444; margin-bottom: 18px; }

/* ============ AURORA AMBIENT BACKDROP ============ */
.aurora {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.55;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: floatBlob 18s ease-in-out infinite;
}
.aurora-blob.a1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,162,75,0.45), transparent 70%);
  top: -10%; left: -10%;
}
.aurora-blob.a2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(15,61,46,0.35), transparent 70%);
  top: 40%; right: -10%;
  animation-delay: -6s;
}
.aurora-blob.a3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(226,194,117,0.35), transparent 70%);
  bottom: -10%; left: 30%;
  animation-delay: -12s;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(.22,.8,.32,1);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn i, .btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn:hover i, .btn:hover svg { transform: translateX(3px); }

.btn-gold-solid {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 8px 22px rgba(201,162,75,0.32);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-gold-solid::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.btn-gold-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(201,162,75,0.5);
}
.btn-gold-solid:hover::before { transform: translateX(100%); }

.btn-outline-white {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--deep-green);
  border-color: #fff;
}

.btn-green-solid {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37,211,102,0.32);
}
.btn-green-solid:hover { filter: brightness(1.05); transform: translateY(-2px); }

.btn-call {
  background: var(--grad-gold);
  color: #fff;
  padding: 10px 18px;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(201,162,75,0.45); }

.btn-whatsapp-pill {
  background: var(--whatsapp);
  color: #fff;
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-whatsapp-pill:hover { filter: brightness(1.06); transform: translateY(-2px); }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, #134232 0%, #0a2a20 50%, #050f0c 100%);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s cubic-bezier(.85,0,.15,1);
  overflow: hidden;
}
.preloader.hide { transform: translateY(-100%); }
.preloader-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,75,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  to { background-position: 60px 60px; }
}
.preloader-inner { text-align: center; position: relative; z-index: 1; }
.preloader-logo {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.pl-growth { color: var(--gold); display: inline-block; }
.pl-growth span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  background: linear-gradient(110deg, var(--gold) 30%, var(--soft-gold) 50%, var(--gold) 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: plLetter 0.5s forwards, plShimmer 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201,162,75,0.4));
}
.pl-growth span:nth-child(1) { animation-delay: 0.1s, 1.2s; }
.pl-growth span:nth-child(2) { animation-delay: 0.2s, 1.3s; }
.pl-growth span:nth-child(3) { animation-delay: 0.3s, 1.4s; }
.pl-growth span:nth-child(4) { animation-delay: 0.4s, 1.5s; }
.pl-growth span:nth-child(5) { animation-delay: 0.5s, 1.6s; }
.pl-growth span:nth-child(6) { animation-delay: 0.6s, 1.7s; }

.pl-land {
  display: inline-block;
  margin-left: 14px;
  color: #fff;
  opacity: 0;
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: plType 0.7s steps(4) 0.9s forwards, plBlink 0.6s 1.6s 3;
}

@keyframes plLetter { to { opacity: 1; transform: translateY(0); } }
@keyframes plShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes plType {
  from { width: 0; opacity: 1; }
  to { width: 4ch; opacity: 1; }
}
@keyframes plBlink { 50% { border-color: transparent; } }

.preloader-line {
  height: 2px; width: 0;
  background: var(--grad-gold);
  margin: 26px auto 18px;
  animation: plLine 0.8s 1.7s forwards;
  box-shadow: 0 0 20px rgba(201,162,75,0.6);
}
@keyframes plLine { to { width: 280px; } }

.preloader-tag {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: plFade 0.6s 2.3s forwards;
}
@keyframes plFade { to { opacity: 1; } }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(15,61,46,0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  padding: 10px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(201,162,75,0.3);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  display: inline-flex;
  align-items: center;
}
.logo-growth {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-land { color: #fff; margin-left: 6px; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad-gold);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(201,162,75,0.6);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; gap: 10px; align-items: center; }

.hamburger { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; margin-left: auto; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: 320px; max-width: 85%;
  height: 100vh;
  background: linear-gradient(180deg, var(--deep-green), #0a2a20);
  padding: 100px 32px 32px;
  z-index: 99;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  overflow-y: auto;
  border-left: 1px solid rgba(201,162,75,0.3);
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 18px; }
.mobile-nav a {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 6px; }
.mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mobile-cta .btn { justify-content: center; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://cdn1.genspark.ai/user-upload-image/ai_designer/image_url_convertor/6a4809de-bb5b-41ad-aa09-0a80621eae35');
  background-size: cover;
  background-position: center;
  animation: kenBurns 40s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,61,46,0.85) 0%, rgba(15,61,46,0.55) 40%, rgba(0,0,0,0.3) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(201,162,75,0.18), transparent 60%);
  z-index: 1;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(201,162,75,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-top: 80px;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 38px;
  max-width: 660px;
  line-height: 1.6;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 50px; right: 32px;
  z-index: 3;
  display: flex; align-items: center; gap: 24px;
  padding: 18px 30px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(201,162,75,0.5);
  border-radius: 60px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-stats .stat { display: flex; flex-direction: column; align-items: center; }
.hero-stats .stat strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 1;
}
.hero-stats .stat span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 5px;
}
.hero-stats .divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }

.scroll-down {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px; height: 40px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(201,162,75,0.3);
}
.scroll-down span {
  display: block;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin: 6px auto;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ============ ABOUT ============ */
.about-section { background: var(--off-white); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin-bottom: 24px; }
.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 36px 0;
}
.mini-stat {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,75,0.2);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: 0.4s cubic-bezier(.22,.8,.32,1);
  position: relative;
  overflow: hidden;
}
.mini-stat::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(201,162,75,0.15), transparent 70%);
}
.mini-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--soft-gold);
}
.mini-stat strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  background: var(--grad-green);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-weight: 700;
}
.mini-stat span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #777;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-image, .why-image { position: relative; }
.image-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,162,75,0.3);
  box-shadow: var(--shadow-lg);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.8s ease; }
.image-frame:hover img { transform: scale(1.04); }
.img-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(15,61,46,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,162,75,0.4);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}
.img-tag i { width: 14px; height: 14px; color: var(--gold); }

.frame-accent {
  position: absolute;
  top: 24px; right: -20px;
  width: 100%; height: 100%;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.frame-accent.left { right: auto; left: -20px; top: 24px; }
.frame-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(201,162,75,0.35), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

/* ============ PROJECTS ============ */
.projects-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  position: relative;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.project-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(.22,.8,.32,1);
  display: flex; flex-direction: column;
  position: relative;
}
.project-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent, var(--gold), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}
.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(15,61,46,0.18);
}
.project-card:hover::before { opacity: 1; }
.project-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover .project-img img { transform: scale(1.08); }
.project-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}
.project-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(15,61,46,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold);
  font-family: var(--font-mono);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(201,162,75,0.4);
  z-index: 2;
}

.project-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(201,162,75,0.12);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 12px;
  font-weight: 600;
  border: 1px solid rgba(201,162,75,0.2);
}
.loc-pill i { width: 12px; height: 12px; }
.loc-pill.coming-soon { background: rgba(15,61,46,0.1); color: var(--deep-green); border-color: rgba(15,61,46,0.2); }
.project-body h3 { margin-bottom: 8px; color: var(--deep-green); font-size: 1.5rem; }
.project-meta { color: #666; font-size: 0.88rem; margin-bottom: 16px; }
.project-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-green);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.project-price span { font-size: 0.78rem; color: #999; font-weight: 400; -webkit-text-fill-color: #999; }

.view-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
}
.view-link:hover { gap: 10px; color: var(--deep-green); }
.view-link i { width: 16px; height: 16px; }

/* ============ LOCATIONS ============ */
.locations-section {
  background:
    linear-gradient(180deg, var(--off-white) 0%, var(--beige) 100%);
}
.location-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}
.loc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(.22,.8,.32,1);
  height: 280px;
  text-align: left;
  background: #fff;
}
.loc-card.active {
  border-color: var(--gold);
  transform: scale(1.01);
  box-shadow: 0 24px 60px rgba(201,162,75,0.25);
}
.loc-card:not(.active) { opacity: 0.65; }
.loc-card:not(.active):hover { opacity: 1; transform: translateY(-4px); }
.loc-img { position: absolute; inset: 0; }
.loc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.loc-card:hover .loc-img img { transform: scale(1.06); }
.loc-card::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(15,61,46,0.92) 100%);
}
.loc-info {
  position: absolute;
  bottom: 28px; left: 30px; right: 30px;
  z-index: 2;
  color: #fff;
}
.loc-tag {
  display: inline-block;
  background: var(--grad-gold);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  font-weight: 600;
}
.loc-info h3 { color: #fff; margin-bottom: 6px; font-size: 1.7rem; }
.loc-info p { color: rgba(255,255,255,0.92); font-size: 0.95rem; }

.loc-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  animation: fadeIn 0.5s ease;
}
.loc-grid.active { display: grid; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.mini-project {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.4s cubic-bezier(.22,.8,.32,1);
  border: 1px solid rgba(201,162,75,0.1);
}
.mini-project:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15,61,46,0.15);
  border-color: var(--gold);
}
.mini-project img {
  width: 100%; height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.mini-project:hover img { transform: scale(1.08); }
.mini-project > div { padding: 20px 22px 22px; }
.mini-project h4 {
  font-size: 1.15rem; color: var(--deep-green);
  margin: 8px 0 8px;
}
.mini-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.mini-price span { font-size: 0.72rem; color: #999; font-weight: 400; }

/* ============ SERVICES ============ */
.services-section { background: var(--white); position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 38px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.4s cubic-bezier(.22,.8,.32,1);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,162,75,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(15,61,46,0.12);
  border-color: rgba(201,162,75,0.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,162,75,0.15), rgba(201,162,75,0.05));
  border: 1px solid rgba(201,162,75,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: 0.4s ease;
}
.service-card:hover .service-icon {
  background: var(--grad-gold);
  border-color: transparent;
  transform: rotate(-6deg) scale(1.05);
}
.service-card:hover .service-icon i { color: #fff; }
.service-icon i {
  width: 28px; height: 28px;
  color: var(--gold);
  stroke-width: 1.5;
  transition: color 0.4s ease;
}
.service-card h3 { margin-bottom: 10px; color: var(--deep-green); position: relative; z-index: 1; }
.service-card p { color: #666; font-size: 0.95rem; position: relative; z-index: 1; }
.service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(201,162,75,0.4);
  letter-spacing: 0.1em;
}

/* ============ WHY US ============ */
.why-section { background: var(--off-white); position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 { margin-bottom: 18px; }
.why-list {
  margin-top: 32px;
  display: grid;
  gap: 22px;
}
.why-list li {
  display: flex; gap: 16px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(201,162,75,0.1);
  transition: 0.3s ease;
}
.why-list li:hover {
  background: #fff;
  border-color: rgba(201,162,75,0.3);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.why-list li i {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--gold);
  margin-top: 2px;
}
.why-list h4 {
  margin-bottom: 4px;
  color: var(--deep-green);
  position: relative;
  display: inline-block;
}
.why-list h4::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
}
.why-list p { color: #666; font-size: 0.92rem; }

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background:
    linear-gradient(180deg, var(--beige) 0%, var(--off-white) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 38px 34px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: 0.4s cubic-bezier(.22,.8,.32,1);
  border: 1px solid rgba(201,162,75,0.15);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15,61,46,0.15);
  border-color: var(--gold);
  background: #fff;
}
.testimonial-card:nth-child(4) { display: none; }
@media (min-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonial-card:nth-child(4) { display: block; }
}
.quote-mark {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
  line-height: 1;
}
.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(201,162,75,0.3));
}
.quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.08rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 24px;
}
.author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(201,162,75,0.15);
}
.author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(201,162,75,0.3);
}
.author strong { display: block; color: var(--deep-green); font-size: 0.95rem; }
.author span { font-size: 0.78rem; color: #888; }

/* ============ CONTACT ============ */
.contact-section { background: var(--white); position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}
.contact-form-wrap, .contact-info {
  border-radius: var(--radius-lg);
  padding: 44px 38px;
}
.contact-form-wrap {
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,162,75,0.15);
}
.contact-form h3 { margin-bottom: 24px; color: var(--deep-green); }
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--off-white);
  transition: 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,162,75,0.12);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: rgba(27,94,71,0.1);
  color: var(--deep-green);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 16px;
  border-left: 3px solid var(--forest-green);
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }

.contact-info {
  background:
    linear-gradient(135deg, var(--deep-green) 0%, #082619 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
}
.contact-info::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(201,162,75,0.3), transparent 70%);
  filter: blur(40px);
}
.contact-info h3 { color: #fff; margin-bottom: 26px; position: relative; z-index: 1; }
.contact-info ul { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; position: relative; z-index: 1; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info li > i {
  flex-shrink: 0;
  width: 42px; height: 42px;
  padding: 10px;
  background: rgba(201,162,75,0.18);
  color: var(--gold);
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,0.4);
}
.contact-info span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info a, .contact-info address { color: rgba(255,255,255,0.95); font-size: 0.95rem; line-height: 1.5; }
.contact-info a:hover { color: var(--gold); }

.map-wrap {
  margin: 22px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,162,75,0.3);
  position: relative;
  z-index: 1;
}

.social-row { display: flex; gap: 12px; position: relative; z-index: 1; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,162,75,0.18);
  border: 1px solid rgba(201,162,75,0.4);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s ease;
}
.social-row a:hover {
  background: var(--grad-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201,162,75,0.4);
}
.social-row i { width: 18px; height: 18px; }

/* ============ FOOTER ============ */
.site-footer {
  background:
    linear-gradient(180deg, var(--deep-green) 0%, #061a13 100%);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.site-footer::after {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,75,0.1), transparent 70%);
  filter: blur(80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-tag {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.78);
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--grad-gold);
}
.site-footer ul { display: flex; flex-direction: column; gap: 11px; }
.site-footer li, .site-footer a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  transition: 0.3s ease;
}
.site-footer a:hover { color: var(--gold); padding-left: 4px; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; }
.contact-list i { width: 16px; height: 16px; color: var(--gold); margin-top: 4px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--beige);
  letter-spacing: 0.04em;
}

/* ============ FLOATING WHATSAPP ============ */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
  transition: 0.3s ease;
}
.float-whatsapp:hover { transform: scale(1.1); }
.float-whatsapp .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--whatsapp);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.float-whatsapp .tooltip {
  position: absolute;
  right: 72px; top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: 0.3s ease;
}
.float-whatsapp:hover .tooltip { opacity: 1; right: 78px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .projects-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .frame-accent, .frame-accent.left { display: none; }
  .image-frame img { aspect-ratio: 16/10; }
  .hero-stats {
    position: static;
    margin: 30px auto 0;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 18px 22px;
  }
  .scroll-down { display: none; }
}

@media (max-width: 700px) {
  .projects-grid, .services-grid, .testimonials-grid,
  .location-tabs, .loc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap, .contact-info { padding: 32px 26px; }
  .hero-content { padding-top: 100px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .float-whatsapp { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .float-whatsapp svg { width: 24px; height: 24px; }
  .preloader-logo { font-size: 2rem; }
  .gold-divider::before, .gold-divider::after { display: none; }
}

@media (min-width: 1600px) {
  .container { max-width: 1380px; }
  h1 { font-size: 5.6rem; }
}
