/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --deep-charcoal: #111111;
  --bg-card: #181818;
  --luxury-gold: #D4AF37;
  --luxury-gold-hover: #F3E5AB;
  --warm-beige: #F5EFE6;
  --wood-brown: #A67C52;
  --white: #FFFFFF;
  --soft-grey: #EAEAEA;
  --dark-grey: #333333;
  --card-border: rgba(245, 239, 230, 0.08);

  /* Font Families */
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;

  /* Z-Indices */
  --z-back: -10;
  --z-base: 1;
  --z-decor: 2;
  --z-overlay: 5;
  --z-fixed: 100;
  --z-nav: 200;
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--deep-charcoal);
  color: var(--warm-beige);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  background-color: var(--deep-charcoal);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Common Section Layout */
.section-padding {
  padding: 100px 0;
}

.bg-charcoal {
  background-color: #0d0d0d;
}

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

/* Section Headers */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--luxury-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-subtitle {
  color: var(--soft-grey);
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Custom Gold Accent Text */
.gold-text {
  color: var(--luxury-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background-color: var(--luxury-gold);
  color: var(--deep-charcoal);
  border: 1px solid var(--luxury-gold);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--luxury-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border: 1px solid var(--warm-beige);
  color: var(--warm-beige);
}

.btn-outline:hover {
  background-color: var(--warm-beige);
  color: var(--deep-charcoal);
}

.btn-large {
  padding: 16px 36px;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: var(--z-nav);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 14px 0;
  background-color: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: var(--luxury-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-beige);
  position: relative;
  padding: 8px 0;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--luxury-gold);
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--luxury-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: var(--z-nav);
}

.nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f0f0f;
  background-image: url('assets/open-living-cove.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(17,17,17,0.4) 0%, rgba(17,17,17,0.85) 100%);
  z-index: var(--z-base);
}

/* Parallax Elements Layer */
.floating-elements-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-decor);
}

.float-item {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

/* Custom floating shapes animations styling */
.float-item svg {
  width: 100%;
  height: auto;
  opacity: 0.45;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

/* Slow keyframe floating animations */
.float-item:nth-child(even) {
  animation: floatSlow 8s ease-in-out infinite alternate;
}

.float-item:nth-child(odd) {
  animation: floatMedium 12s ease-in-out infinite alternate;
}

/* Offsetting delays */
.float-item:nth-child(3n) {
  animation-delay: -2s;
}
.float-item:nth-child(3n+1) {
  animation-delay: -4s;
}

/* Hero Content Styling */
.hero-content {
  position: relative;
  text-align: center;
  z-index: var(--z-overlay);
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(24, 24, 24, 0.6);
  border: 1px solid var(--luxury-gold);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-badge .stars {
  color: var(--luxury-gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.hero-badge .badge-text {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
}

.hero-badge .badge-tag {
  font-size: 0.7rem;
  color: var(--warm-beige);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--soft-grey);
  max-width: 650px;
  margin: 0 auto 40px auto;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Scroll Down indicator styling */
.scroll-down-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.scroll-down-indicator:hover {
  opacity: 1;
}

.arrow-dot {
  width: 4px;
  height: 4px;
  background-color: var(--luxury-gold);
  border-radius: 50%;
  animation: scrollPulse 2s infinite;
}

.arrow-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--luxury-gold), transparent);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 400;
}

.about-subtext {
  font-size: 1rem;
  color: var(--soft-grey);
  opacity: 0.8;
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-features li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.3rem;
  color: var(--luxury-gold);
  line-height: 1;
  padding-top: 4px;
}

.feature-text h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--soft-grey);
  opacity: 0.75;
}

/* Luxury Image Card with vector shape */
.about-graphic-container {
  display: flex;
  justify-content: center;
}

.luxury-image-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  perspective: 1000px;
}

.about-svg,
.about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--luxury-gold);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  transition: var(--transition-smooth);
}

.luxury-image-card:hover .about-svg,
.luxury-image-card:hover .about-img {
  transform: rotateY(-10deg) rotateX(10deg) translate3d(0, -10px, 0);
  filter: drop-shadow(-15px 30px 40px rgba(0,0,0,0.8));
}

.luxury-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--luxury-gold);
  color: var(--deep-charcoal);
  padding: 24px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  z-index: var(--z-decor);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition-smooth);
}

.luxury-badge .number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.luxury-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.luxury-image-card:hover .luxury-badge {
  transform: translate3d(5px, -5px, 15px);
  box-shadow: -5px 20px 45px rgba(0,0,0,0.5);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--card-border);
  padding: 40px 30px;
  border-radius: 2px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: var(--z-base);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--luxury-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  transition: all 1s ease;
}

.service-card:hover .service-icon svg {
  stroke-dashoffset: 400;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.service-description {
  color: var(--soft-grey);
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.6;
}

.service-card:hover {
  transform: translate3d(0, -10px, 0);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}

/* ==========================================================================
   ANTI-GRAVITY SHOWCASE SECTION
   ========================================================================== */
.showcase {
  position: relative;
  background-color: var(--deep-charcoal);
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: var(--z-base);
}

.showcase-interactive-area {
  position: relative;
  width: 100%;
  min-height: 700px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 50px 0;
  z-index: var(--z-decor);
}

.showcase-3d-card {
  position: relative;
  height: 380px;
  background: rgba(24, 24, 24, 0.7);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.1s ease-out, border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 120px at var(--glow-x, 50%) var(--glow-y, 50%), rgba(212, 175, 55, 0.15) 0%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: var(--z-decor);
}

.showcase-3d-card:hover .card-glow {
  opacity: 1;
}

.card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  z-index: var(--z-overlay);
  justify-content: space-between;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--luxury-gold);
  font-weight: 700;
}

.card-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--soft-grey);
  opacity: 0.6;
}

.showcase-3d-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.showcase-3d-card p {
  font-size: 0.9rem;
  color: var(--soft-grey);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-visual {
  width: 100%;
  height: 100px;
  margin-top: auto;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.card-visual svg {
  width: 100%;
  height: 100%;
}

.showcase-3d-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.08);
}

.showcase-3d-card:hover .card-visual {
  opacity: 1;
  transform: translate3d(0, -5px, 0);
}

/* Floating behavior for showcase area cards */
.float-card {
  will-change: transform;
}

.float-card:nth-child(1) { animation: floatSlow 12s ease-in-out infinite alternate; }
.float-card:nth-child(2) { animation: floatMedium 10s ease-in-out infinite alternate; animation-delay: -1s; }
.float-card:nth-child(3) { animation: floatSlow 14s ease-in-out infinite alternate; animation-delay: -2s; }
.float-card:nth-child(4) { animation: floatMedium 9s ease-in-out infinite alternate; animation-delay: -3s; }
.float-card:nth-child(5) { animation: floatSlow 11s ease-in-out infinite alternate; animation-delay: -4s; }
.float-card:nth-child(6) { animation: floatMedium 13s ease-in-out infinite alternate; animation-delay: -5s; }

/* ==========================================================================
   PROJECT GALLERY SECTION
   ========================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-item {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--card-border);
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}

.project-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.project-placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.3) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.project-info {
  transform: translate3d(0, 20px, 0);
  transition: var(--transition-smooth);
  width: 100%;
}

.project-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.project-category {
  font-size: 0.8rem;
  color: var(--luxury-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
}

.project-view-btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-view-btn::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--luxury-gold);
  transition: width 0.3s ease;
}

.project-item:hover .project-view-btn::after {
  width: 35px;
}

.project-item:hover .project-placeholder-svg {
  transform: scale(1.1);
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-item:hover .project-info {
  transform: translate3d(0, 0, 0);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px 30px;
}

.why-card {
  background-color: var(--deep-charcoal);
  border: 1px solid var(--card-border);
  padding: 36px 28px;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.why-icon {
  font-size: 2rem;
  color: var(--luxury-gold);
  margin-bottom: 20px;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--soft-grey);
  opacity: 0.75;
  line-height: 1.6;
}

.why-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: rgba(245, 239, 230, 0.1);
  transform: translateX(-50%);
  z-index: var(--z-base);
}

.timeline-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--scroll-percent, 0%);
  background-color: var(--luxury-gold);
  transition: height 0.1s ease-out;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  z-index: var(--z-decor);
}

.timeline-dot {
  grid-column: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--deep-charcoal);
  border: 2px solid rgba(245, 239, 230, 0.2);
  color: var(--warm-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.timeline-item.active .timeline-dot {
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
  box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

.timeline-content {
  background-color: var(--bg-card);
  border: 1px solid var(--card-border);
  padding: 30px;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
}

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--soft-grey);
  opacity: 0.8;
  line-height: 1.6;
}

.timeline-item.active .timeline-content {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.reviews-score-card {
  background-color: var(--bg-card);
  border: 1px solid var(--card-border);
  padding: 24px 36px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.reviews-score-card .score-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.reviews-score-card .score-stars {
  color: var(--luxury-gold);
  font-size: 1.2rem;
  margin: 8px 0;
  letter-spacing: 1.5px;
}

.reviews-score-card .score-count {
  font-size: 0.8rem;
  color: var(--soft-grey);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--card-border);
  padding: 30px;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--wood-brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.review-date {
  font-size: 0.75rem;
  color: var(--soft-grey);
  opacity: 0.6;
}

.google-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #4285f4;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.7rem;
}

.review-stars {
  color: var(--luxury-gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--soft-grey);
  opacity: 0.85;
  line-height: 1.6;
  font-style: italic;
}

.review-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--soft-grey);
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 45px;
}

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

.detail-icon {
  font-size: 1.4rem;
  color: var(--luxury-gold);
  line-height: 1;
}

.detail-text h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.detail-text p {
  font-size: 0.95rem;
  color: var(--soft-grey);
  opacity: 0.8;
}

.detail-text a:hover {
  color: var(--luxury-gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Contact Form Briefing styling */
.form-container {
  background-color: var(--bg-card);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-container h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.form-container p {
  font-size: 0.9rem;
  color: var(--soft-grey);
  opacity: 0.7;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--luxury-gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(245, 239, 230, 0.15);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--luxury-gold);
  box-shadow: 0 0 8px rgba(212,175,55,0.15);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: #080808;
  border-top: 1px solid rgba(245, 239, 230, 0.05);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.brand-col .footer-desc {
  font-size: 0.9rem;
  color: var(--soft-grey);
  opacity: 0.7;
  margin-top: 20px;
  line-height: 1.7;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-col h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--soft-grey);
  opacity: 0.75;
}

.footer-col ul a:hover {
  color: var(--luxury-gold);
  opacity: 1;
  padding-left: 5px;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--soft-grey);
  opacity: 0.75;
  line-height: 1.7;
}

.footer-col .phone,
.footer-col .hours {
  margin-top: 12px;
}

.footer-col strong {
  color: var(--white);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, 0.05);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--soft-grey);
  opacity: 0.6;
}

/* ==========================================================================
   STICKY CONTROLS
   ========================================================================== */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: var(--z-fixed);
  transition: var(--transition-smooth);
  animation: rippleGlow 2s infinite;
}

.whatsapp-sticky svg {
  width: 30px;
  height: 30px;
}

.whatsapp-sticky:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: var(--bg-card);
  border: 1px solid var(--card-border);
  color: var(--luxury-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: var(--z-fixed);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 15px, 0);
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.back-to-top:hover {
  background-color: var(--luxury-gold);
  color: var(--deep-charcoal);
  border-color: var(--luxury-gold);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (Triggered via JS)
   ========================================================================== */
.reveal-fade,
.reveal-slide-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-slide-up {
  transform: translate3d(0, 40px, 0);
}

.reveal-left {
  transform: translate3d(-50px, 0, 0);
}

.reveal-right {
  transform: translate3d(50px, 0, 0);
}

/* Active State for Scroll Reveal */
.revealed {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes floatSlow {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, -25px, 0) rotate(3deg);
  }
}

@keyframes floatMedium {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, -18px, 0) rotate(-4deg);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate3d(0, 15px, 0);
    opacity: 1;
  }
}

@keyframes rippleGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Layouts (< 1024px) */
@media (max-width: 1024px) {
  .section-padding {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .about-graphic-container {
    order: -1;
  }

  .showcase-interactive-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    min-height: auto;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }

  .timeline-progress-bar {
    left: 20px;
    transform: none;
  }

  .timeline-dot {
    grid-column: 1;
    margin: 0;
  }

  .timeline-content {
    grid-column: 2 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile Layouts (< 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 18px 0;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hamburger Active Animation */
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Full-Screen Navigation */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px 40px 24px;
    border-left: 1px solid rgba(212, 175, 55, 0.15);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 10px 0;
    display: block;
  }

  .nav-cta-item {
    margin-top: 15px;
    width: 100%;
    max-width: 250px;
  }

  .btn-nav {
    width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .floating-elements-container {
    opacity: 0.35; /* Subtler floating elements on mobile */
  }

  .showcase-interactive-area {
    grid-template-columns: 1fr;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .reviews-score-card {
    width: 100%;
  }

  .form-container {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Screen adjustments for small mobiles (< 480px) */
@media (max-width: 480px) {
  .logo-main {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .floating-elements-container {
    display: none; /* Hide heavy float animations on tiny mobile for performance */
  }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }

  .float-item,
  .float-card {
    animation: none !important;
    transform: none !important;
  }

  .reveal-fade,
  .reveal-slide-up,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
