/*
Theme Name: Aarna Group
Theme URI: https://aarnagroup.co.in/
Author: Aarya SoftEx
Author URI: https://aaryasoftex.com
Description: Premium luxury real estate theme for Aarna Group — Built for Living. Designed for Status.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aarna-group
Tags: luxury, real-estate, custom-menu, featured-images
*/

/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --dark: #1A1612;
  --dark-mid: #2D2620;
  --brown: #5C4A35;
  --text-muted: #8A7B6B;
  --border: rgba(201, 169, 110, 0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --site-pad: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
}

/* ===========================
   NAV
   =========================== */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  transition: all 0.5s ease;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--site-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.site-nav.scrolled,
nav.site-nav.inner-nav {
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(26, 22, 18, 0.06);
}

nav.site-nav.scrolled .nav-inner,
nav.site-nav.inner-nav .nav-inner {
  padding: 0px var(--site-pad);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 90px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

nav.site-nav:not(.scrolled):not(.inner-nav) .logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 44px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  cursor: none;
  transition: color 0.3s ease;
}

nav.site-nav.scrolled .nav-links a,
nav.site-nav.inner-nav .nav-links a {
  color: var(--dark);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: var(--gold) !important;
}

.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--dark);
  color: var(--cream) !important;
  padding: 10px 24px;
  letter-spacing: 1.5px !important;
  transition: background 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 1.8s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  clip-path: circle(150% at 50% 50%);
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
  transition: transform 1.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
  animation: kenBurns 12s linear infinite alternate 1.5s;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--site-pad);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1.2s ease 0.6s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: scale(1);
}

.hero-content>* {
  pointer-events: all;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: inline;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
  max-width: 480px;
  margin: 32px 0 52px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.3);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: var(--site-pad);
  z-index: 2;
  display: flex;
  gap: 60px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.stat {
  text-align: right;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 60px;
  left: var(--site-pad);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(245, 240, 232, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  to {
    left: 100%;
  }
}

/* ===========================
   MARQUEE
   =========================== */
.marquee-wrap {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 500;
  white-space: nowrap;
  padding: 0 40px;
}

.marquee-dot {
  color: rgba(26, 22, 18, 0.4);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

/* ===========================
   SECTIONS — Common
   =========================== */
section {
  padding: 120px var(--site-pad);
}

.inner-content {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ===========================
   ABOUT
   =========================== */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  height: 580px;
}

.about-img-main {
  width: 75%;
  height: 480px;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  background: var(--dark-mid);
}

.about-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201, 169, 110, 0.3);
  overflow: hidden;
  z-index: 2;
  background: var(--dark);
}

.about-sub-images {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
  padding: 10px;
  z-index: 2;
}

.about-sub-img {
  flex: 1;
  height: 100px;
  background: var(--gold);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.about-sub-img:hover {
  opacity: 1;
}

.about-img-accent {
  border-radius: 60%;
  width: 190px;
  height: 190px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.accent-text {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--dark);
  opacity: 0.3;
}

.about-tag {
  position: absolute;
  top: 30px;
  left: 20px;
  background: var(--warm-white);
  padding: 20px 28px;
  box-shadow: 0 20px 60px rgba(26, 22, 18, 0.12);
}

.about-tag-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
}

.about-tag-txt {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-text .section-title {
  margin-bottom: 28px;
}

.about-para {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--brown);
  margin-bottom: 20px;
}

.about-features {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  min-width: 32px;
}

.feature-name {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--dark);
}

/* ===========================
   PROJECTS
   =========================== */
.projects {
  background: var(--warm-white);
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  height: 580px;
}

.project-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-card:hover .project-highlights li,
.project-page-card:hover .project-highlights li {
  transform: translateX(0);
  opacity: 1;
}

/* Direct Download Button Styling */
.direct-download {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(26, 22, 18, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  z-index: 5;
  transition: all 0.3s ease;
  cursor: none;
}

.direct-download:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
}

.direct-download svg {
  width: 18px;
  height: 18px;
}

.project-card:nth-child(1) .project-bg {
  background: linear-gradient(180deg, rgba(26, 22, 18, 0.2) 0%, rgba(26, 22, 18, 0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 700"><rect width="600" height="700" fill="%232D2620"/><rect x="60" y="100" width="480" height="350" fill="%23C9A96E" opacity="0.1"/><rect x="100" y="420" width="120" height="200" fill="%23C9A96E" opacity="0.25"/><rect x="240" y="460" width="100" height="160" fill="%23C9A96E" opacity="0.2"/><rect x="360" y="440" width="120" height="180" fill="%23C9A96E" opacity="0.25"/><path d="M60 420 L540 420" stroke="%23C9A96E" stroke-width="1" opacity="0.4"/><rect x="220" y="140" width="160" height="40" fill="%23C9A96E" opacity="0.15"/></svg>') center/cover;
}

.project-card:nth-child(2) .project-bg {
  background: linear-gradient(180deg, rgba(26, 22, 18, 0.1) 0%, rgba(26, 22, 18, 0.85) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><rect width="400" height="600" fill="%231A1612"/><rect x="40" y="80" width="320" height="280" fill="%235C4A35" opacity="0.4"/><rect x="60" y="380" width="80" height="160" fill="%23C9A96E" opacity="0.3"/><rect x="160" y="400" width="80" height="140" fill="%23C9A96E" opacity="0.25"/><rect x="260" y="370" width="80" height="170" fill="%23C9A96E" opacity="0.3"/><circle cx="200" cy="200" r="80" fill="none" stroke="%23C9A96E" stroke-width="0.5" opacity="0.4"/></svg>') center/cover;
}

.project-card:nth-child(3) .project-bg {
  background: linear-gradient(180deg, rgba(26, 22, 18, 0.1) 0%, rgba(26, 22, 18, 0.85) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><rect width="400" height="600" fill="%232D2620"/><rect x="20" y="60" width="360" height="300" fill="%23C9A96E" opacity="0.08"/><rect x="40" y="380" width="100" height="160" fill="%23C9A96E" opacity="0.3"/><rect x="160" y="360" width="100" height="180" fill="%23C9A96E" opacity="0.2"/><rect x="280" y="380" width="80" height="160" fill="%23C9A96E" opacity="0.3"/><path d="M20 360 L380 360" stroke="%23C9A96E" stroke-width="0.5" opacity="0.5"/><rect x="140" y="100" width="120" height="30" fill="%23C9A96E" opacity="0.15"/></svg>') center/cover;
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 44px;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.project-chip {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.project-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 8px;
}

.project-loc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.5px;
}

.project-hover {
  position: absolute;
  inset: 0;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(26, 22, 18, 0.97) 0%, rgba(26, 22, 18, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-card:hover .project-hover,
.project-page-card:hover .project-hover {
  opacity: 1;
}

.project-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}

.project-highlights {
  list-style: none;
  margin-bottom: 32px;
}

.project-highlights li {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-highlights li::before {
  content: '—';
  color: var(--gold);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: var(--gold);
}

.project-link-arrow {
  width: 36px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}

.project-link:hover .project-link-arrow {
  width: 56px;
}

.project-link-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ===========================
   WHY CHOOSE
   =========================== */
.why {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why .section-label {
  color: rgba(201, 169, 110, 0.7);
}

.why .section-title {
  color: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 80px auto 0;
}

.why-card {
  padding: 44px 32px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: none;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 110, 0.05);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: rgba(201, 169, 110, 0.15);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}

.why-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  stroke: var(--gold);
  fill: none;
}

.why-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.4;
}

.why-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================
   LOCATIONS
   =========================== */
.locations {
  background: var(--cream);
}

.locations-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.locations-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.loc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.loc-card {
  padding: 40px;
  background: var(--dark-mid);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  cursor: pointer;
}

.loc-card.active,
.loc-card:hover {
  background: var(--gold);
  transform: translateY(-10px);
}

.loc-card.active .loc-num,
.loc-card:hover .loc-num {
  color: var(--dark);
  opacity: 0.5;
}

.loc-card.active h3,
.loc-card:hover h3 {
  color: var(--dark);
}

.loc-card.active p,
.loc-card:hover p {
  color: rgba(26, 22, 18, 0.7);
}

/* Hover behavior: reset active when another is hovered */
.locations-grid:hover .loc-card.active:not(:hover) {
  background: var(--dark-mid);
  transform: translateY(0);
}

.locations-grid:hover .loc-card.active:not(:hover) .loc-num {
  color: rgba(201, 169, 110, 0.1);
  opacity: 1;
}

.locations-grid:hover .loc-card.active:not(:hover) .loc-name {
  color: #fff;
}

.locations-grid:hover .loc-card.active:not(:hover) .loc-tag {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.locations-grid:hover .loc-card.active:not(:hover) .loc-desc {
  color: rgba(250, 248, 244, 0.6);
}

.loc-number {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(201, 169, 110, 0.1);
  font-weight: 300;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
  transition: color 0.4s ease;
}

.loc-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.loc-card.active .loc-name,
.loc-card:hover .loc-name {
  color: var(--dark);
}

.loc-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  padding: 4px 12px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.loc-card.active .loc-tag,
.loc-card:hover .loc-tag {
  color: var(--dark);
  background: rgba(0, 0, 0, 0.08);
}

.loc-desc {
  font-size: 16px;
  color: rgba(250, 248, 244, 0.6);
  line-height: 1.7;
  font-weight: 300;
  transition: color 0.4s ease;
}

.loc-card.active .loc-desc,
.loc-card:hover .loc-desc {
  color: rgba(26, 22, 18, 0.7);
}

.loc-arrow {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.loc-card:hover .loc-arrow {
  gap: 20px;
}

.loc-arrow-line {
  width: 30px;
  height: 1px;
  background: #575757;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  background: var(--warm-white);
  padding: 120px 60px;
}

.test-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.test-header {
  margin-bottom: 80px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.test-card {
  padding: 44px;
  background: var(--cream);
  position: relative;
  cursor: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.test-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(26, 22, 18, 0.1);
}

.test-quote {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold-light);
  line-height: 0.6;
  margin-bottom: 24px;
}

.test-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 32px;
}

.test-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.test-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

.test-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.test-stars span {
  color: var(--gold);
  font-size: 14px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: var(--dark);
  padding: 160px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><circle cx="400" cy="200" r="300" fill="none" stroke="%23C9A96E" stroke-width="0.5" opacity="0.2"/><circle cx="400" cy="200" r="200" fill="none" stroke="%23C9A96E" stroke-width="0.5" opacity="0.15"/><circle cx="400" cy="200" r="100" fill="none" stroke="%23C9A96E" stroke-width="0.5" opacity="0.1"/></svg>') center/cover;
  pointer-events: none;
}

.cta-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cta-label::before,
.cta-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 18px 48px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-gold:hover {
  background: var(--cream);
}

.btn-ghost {
  color: var(--cream);
  padding: 18px 48px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--cream);
  padding: 120px 60px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-info {
  padding-top: 10px;
}

.contact-detail {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  stroke: var(--gold);
  fill: none;
  width: 20px;
  height: 20px;
}

.contact-item-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-val {
  font-size: 15px;
  color: var(--dark);
  font-weight: 400;
}

.contact-form {
  background: var(--warm-white);
  padding: 56px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 28px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  cursor: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: none;
  height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.submit-btn {
  width: 100%;
  background: var(--dark);
  color: var(--cream);
  padding: 18px;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===========================
   CONTACT FORM 7 INTEGRATION
   =========================== */
.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 24px;
}

.wpcf7-form-control {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--dark) !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
  padding: 14px 0 !important;
  display: block;
}

.wpcf7-form-control:focus {
  border-color: var(--gold) !important;
}

.wpcf7-textarea {
  height: 100px !important;
  resize: none !important;
}

.wpcf7-submit {
  width: 100% !important;
  background: var(--dark) !important;
  color: var(--cream) !important;
  padding: 20px !important;
  border: none !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: none !important;
  transition: all 0.3s ease !important;
  font-weight: 500 !important;
  margin-top: 10px !important;
}

.wpcf7-submit:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.wpcf7-not-valid-tip {
  color: #e74c3c !important;
  font-size: 11px !important;
  margin-top: 5px !important;
}

.wpcf7-response-output {
  margin: 30px 0 0 !important;
  padding: 15px 20px !important;
  border: 1px solid var(--gold) !important;
  color: var(--dark) !important;
  font-size: 13px !important;
  text-align: center !important;
  background: rgba(201, 169, 110, 0.05) !important;
}

/* Remove default CF7 spacing */
.wpcf7 br {
  display: none !important;
}

.wpcf7 p {
  margin-bottom: 0 !important;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 80px 0 0px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.05;
}

.footer-watermark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.site-footer .footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--site-pad);
}

/* Footer Top */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding-bottom: 30px;
}

.footer-menu ul {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-menu li {
  position: relative;
}

.footer-menu li:not(:last-child)::after {
  content: '';
  margin-left: 0;
}

.footer-menu a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--cream);
  text-transform: uppercase;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-menu a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--cream);
  font-size: 0.9rem;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Footer Center */
.footer-center {
  text-align: center;
  margin-bottom: 80px;
}

.footer-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  display: inline-block;
  filter: brightness(0) invert(1);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-phone {
  font-size: 2.5rem;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 2px;
  text-decoration: none;
}

.footer-address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.6);
  max-width: 500px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-email {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-email:hover {
  color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  font-size: 0.8rem;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
  line-height: 1.6;
}

.footer-legal {
  text-align: center;
}

.footer-developer {
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-end;
  text-align: right;
}

.footer-developer a {
  text-decoration: none;
}

.footer-developer span {
  display: block;
  font-weight: 600;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.footer-legal ul {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-legal li:not(:last-child)::after {
  content: '';
  margin-left: 0;
}

.footer-legal a {
  font-family: var(--font-body);
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.3s;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-developer p {
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.4;
}

.footer-developer a {
  text-decoration: none;
}

.footer-developer span {
  display: block;
  font-weight: 600;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

/* Responsive Footer */
@media screen and (max-width: 991px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-phone {
    font-size: 2rem;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-developer {
    text-align: center;
    flex-direction: column;
    gap: 15px;
  }
}


/* ===========================
   INNER PAGE — Hero Banner
   =========================== */
.page-hero {
  background: var(--dark);
  padding: 180px 60px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
    linear-gradient(135deg, #1A1612 0%, #2D2620 50%, #1A1612 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.page-hero-badge::before,
.page-hero-badge::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.5);
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb span {
  color: rgba(245, 240, 232, 0.3);
}

/* ===========================
   INNER PAGE — Content Sections
   =========================== */
.inner-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ABOUT PAGE — Extended */
.about-story {
  background: var(--warm-white);
  padding: 120px 60px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-story-img {
  height: 500px;
  background: linear-gradient(135deg, var(--dark-mid), var(--dark));
  position: relative;
  overflow: hidden;
}

.about-story-img::after {
  content: 'AG';
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.1;
}

/* Timeline */
.timeline-section {
  background: var(--cream);
  padding: 120px 60px;
}

.timeline {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--cream);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 16px;
  color: var(--brown);
  line-height: 1.7;
  font-weight: 300;
}

/* Values / Mission */
.values-section {
  background: var(--dark);
  padding: 120px 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.value-card {
  padding: 48px 36px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.04);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  stroke: var(--gold);
  fill: none;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}

.value-card p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.8;
  font-weight: 300;
}

/* PROJECTS PAGE */
.projects-page {
  background: var(--warm-white);
  padding: 120px 60px;
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-page-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  height: 520px;
}

.project-page-card .project-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-page-card:nth-child(1) .project-bg {
  background: linear-gradient(180deg, rgba(26, 22, 18, 0.15) 0%, rgba(26, 22, 18, 0.9) 100%),
    linear-gradient(135deg, #2D2620, #1A1612);
}

.project-page-card:nth-child(2) .project-bg {
  background: linear-gradient(180deg, rgba(26, 22, 18, 0.15) 0%, rgba(26, 22, 18, 0.9) 100%),
    linear-gradient(135deg, #1A1612, #2D2620);
}

.project-page-card:nth-child(3) .project-bg {
  background: linear-gradient(180deg, rgba(26, 22, 18, 0.15) 0%, rgba(26, 22, 18, 0.9) 100%),
    linear-gradient(135deg, #2D2620, #1A1612);
}

/* CONTACT PAGE */
.contact-page {
  background: var(--warm-white);
  padding: 120px 60px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.map-wrapper {
  margin-top: 40px;
  height: 300px;
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  opacity: 0.5;
}

/* TESTIMONIALS PAGE */
.testimonials-page {
  background: var(--warm-white);
  padding: 120px 60px;
}

.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEGAL PAGES */
.legal-content {
  background: var(--warm-white);
  padding: 100px 60px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--dark);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.legal-inner h2:first-child {
  margin-top: 0;
}

.legal-inner h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--brown);
  margin: 32px 0 12px;
}

.legal-inner p {
  font-size: 15px;
  color: var(--brown);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}

.legal-inner ul,
.legal-inner ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-inner li {
  font-size: 15px;
  color: var(--brown);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 8px;
}

.legal-inner strong {
  color: var(--dark);
  font-weight: 500;
}

/* ===========================
   FLOATING BUTTONS
   =========================== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-btn,
.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: none;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.back-to-top {
  background: var(--dark);
  border: 1px solid var(--border);
}

.back-to-top svg {
  stroke: var(--gold);
}

.back-to-top:hover {
  background: var(--gold);
}

.back-to-top:hover svg {
  stroke: var(--dark);
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

.reveal-delay-5 {
  transition-delay: 0.75s;
}

/* ===========================
   MOBILE NAV HAMBURGER
   =========================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 2px;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  cursor: none;
  font-size: 32px;
  color: var(--cream);
  font-weight: 300;
  z-index: 1100;
}

.mobile-close:hover {
  color: var(--gold);
}

/* ===========================
   RESPONSIVE — USER SPECIFIC TIERS
   =========================== */

/* ===========================
   RESPONSIVE — GLOBAL TIERS
   =========================== */

/* Desktop wide (1440px - 1599px) */
@media screen and (max-width: 1599px) {

  .inner-content,
  .nav-inner,
  .footer-inner {
    max-width: 1300px;
  }

  .about-grid {
    max-width: 1300px;
  }

  .hero-title {
    font-size: clamp(56px, 6vw, 85px);
  }
}

/* Laptop standard (1280px - 1439px) */
@media screen and (max-width: 1439px) {
  :root {
    --site-pad: 60px;
  }

  .inner-content,
  .nav-inner,
  .footer-inner {
    max-width: 1100px;
  }

  .about-grid {
    max-width: 1100px;
    gap: 60px;
  }

  .hero-title {
    font-size: 64px;
    line-height: 1.2;
  }
}

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
  :root {
    --site-pad: 40px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .projects-grid,
  .projects-page-grid,
  .loc-cards,
  .test-grid,
  .values-grid,
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-title {
    font-size: 56px;
  }

  .about-img-main {
    width: 100% !important;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile (Up to 767px) */
@media screen and (max-width: 767px) {
  :root {
    --site-pad: 24px;
  }

  section {
    padding: 80px var(--site-pad);
  }

  /* Layout Stacks */
  .projects-grid,
  .projects-page-grid,
  .loc-cards,
  .test-grid,
  .why-grid,
  .about-grid,
  .about-story-grid,
  .values-grid,
  .contact-inner,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-inner {
    padding: 0 var(--site-pad);
  }

  .hero-content {
    padding: 0 var(--site-pad);
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 15px;
    margin: 24px 0 40px;
  }

  .hero {
    height: auto;
    min-height: 80vh;
    padding: 140px 0 100px;
  }

  .hero-stats {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .page-hero {
    padding: 140px var(--site-pad) 80px;
  }

  .page-hero-title {
    font-size: 44px;
  }

  .about-img-main {
    width: 100% !important;
    height: 350px;
  }

  .about-story-img {
    height: 300px;
  }

  /* .about-visual { height: auto; } */

  .timeline::before {
    left: 20px;
    transform: none;
  }

  .timeline-item {
    padding-left: 50px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }

  /* Projects Header */
  .projects-header,
  .locations-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 50px;
  }

  /* Footer Centering */
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .btn-gold,
  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* Small Mobile (Up to 480px) */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .page-hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .logo img {
    height: 60px;
  }

  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .contact,
  .contact-page {
    padding: 120px 30px;
  }

  .contact-form2 {
    background: var(--cream);
  }

  .contact-form {

    padding: 20px;
  }
}

/* Premium Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.float-anim {
  animation: float 5.5s ease-in-out infinite;
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-scale {
  animation: fadeScale 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes textReveal {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

.text-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.text-reveal>span {
  display: inline-block;
  animation: textReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-10px);
}

.stagger-reveal>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stagger-reveal.active>* {
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal.active>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-reveal.active>*:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-reveal.active>*:nth-child(4) {
  transition-delay: 0.3s;
}