/* ==========================================================================
   Abhay & Associates - Luxury Interior Design & Furniture Contracting
   Design System & Stylesheet with Architectural Staggered Portfolio & 3D Depth
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #080808;
  --bg-secondary: #101010;
  --bg-tertiary: #181818;
  --accent-gold: #c5a880;
  --accent-gold-hover: #dfc299;
  --accent-gold-gradient: linear-gradient(135deg, #c5a880 0%, #ecd8b8 50%, #b8976b 100%);
  --accent-gold-glow: rgba(197, 168, 128, 0.35);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-tertiary: #757575;
  --whatsapp-green: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Top Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 10000;
  pointer-events: none;
}

.scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-gold-gradient);
  box-shadow: 0 0 12px var(--accent-gold);
  transition: width 0.1s linear;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #252525;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Glassmorphic 3D Card Foundation */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transform-style: preserve-3d;
}

/* Section Common Styles */
section {
  padding: 110px 8% 90px;
  position: relative;
  perspective: 1200px;
}

.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.section-header .tag, .about-text .tag, .contact-info .tag {
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 60%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Buttons & Interactive Elements */
.btn-gold {
  background: var(--accent-gold-gradient);
  color: #050505;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 18px var(--accent-gold-glow);
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px var(--accent-gold-glow);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1eb857 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20ba59 0%, #169e47 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: var(--transition-smooth);
  background: rgba(197, 168, 128, 0.03);
}

.btn-outline:hover {
  background: var(--accent-gold-gradient);
  color: #050505;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px var(--accent-gold-glow);
}

/* Floating WhatsApp Button */
.whatsapp-float-container {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1000;
}

.whatsapp-float-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(30, 184, 87, 0.95));
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 211, 102, 0.4);
  color: #fff;
  cursor: pointer;
  transition: var(--transition-smooth);
  animation: float3D 4s ease-in-out infinite, pulseGlow 2.5s infinite;
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(15, 15, 15, 0.95);
  border-right: 1px solid var(--accent-gold);
  border-top: 1px solid var(--accent-gold);
}

.whatsapp-float-container:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* 3D Animations & Keyframes */
@keyframes float3D {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), 0 8px 30px rgba(0, 0, 0, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 30px rgba(0, 0, 0, 0.5); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 30px rgba(0, 0, 0, 0.5); }
}

/* Page Loader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.preloader-sub {
  font-family: 'Outfit', sans-serif;
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: var(--accent-gold-gradient);
  position: absolute;
  top: 0;
  left: 0;
  animation: loadProgress 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Navbar (Glassmorphic with Dynamic Capsule Indicators) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 900;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 14px 8%;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

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

.logo-main {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 10px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 18px;
  border-radius: 30px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #000;
  background: var(--accent-gold-gradient);
  font-weight: 700;
  box-shadow: 0 2px 14px var(--accent-gold-glow);
  transform: scale(1.04);
}

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

.nav-cta .btn-nav-whatsapp {
  padding: 10px 20px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--border-radius-sm);
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.nav-cta .btn-nav-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: #25d366;
}

.nav-cta .btn-nav-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.nav-cta .btn-nav-whatsapp:hover svg {
  fill: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* Hero Section (Clean Spacious Layout, Zero Overlapping) */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 8% 70px;
  overflow: hidden;
  background-color: #000;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 0.45;
  animation: kenBurns 8s ease-out forwards;
}

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

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.82) 75%, #080808 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 920px;
  margin: auto;
}

.hero-content .tagline {
  font-family: 'Outfit', sans-serif;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 40%, #dedede 70%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

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

.hero-scroll {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--accent-gold);
  animation: float3D 2.5s ease-in-out infinite;
  transition: var(--transition-smooth);
}

.hero-scroll svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
}

.hero-scroll:hover {
  background: var(--accent-gold);
  transform: translateX(-50%) scale(1.15);
}

.hero-scroll:hover svg {
  fill: #000;
}

/* About Us Section */
.about {
  background-color: var(--bg-primary);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-img-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  perspective: 1000px;
}

.about-img-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.about-img-item:nth-child(even) {
  transform: translateY(28px);
}

.about-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-item:hover {
  transform: scale(1.04) translateY(0) rotateY(4deg);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 18px 45px rgba(0,0,0,0.7), 0 0 20px rgba(197, 168, 128, 0.2);
}

.about-img-item:hover img {
  transform: scale(1.08);
}

.about-text h2 {
  font-size: 2.6rem;
  margin-bottom: 22px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-size: 1.02rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.stat-card {
  padding: 26px 20px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 6px;
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* Services Section */
.services {
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  perspective: 1200px;
}

.service-card {
  padding: 38px 32px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-card:hover {
  border-color: rgba(197, 168, 128, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(197, 168, 128, 0.15);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent-gold);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--accent-gold-gradient);
  transform: scale(1.08) rotate(3deg);
}

.service-card:hover .service-icon svg {
  fill: #050505;
}

.service-card h3 {
  font-size: 1.38rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-family: 'Outfit', sans-serif;
  color: var(--accent-gold);
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
  transition: var(--transition-smooth);
}

.service-card:hover .service-link svg {
  transform: translateX(6px);
}

/* Portfolio Gallery Section (Architectural Dynamic Staggered Multi-Column) */
.gallery {
  background-color: var(--bg-primary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
  background: rgba(20, 20, 20, 0.4);
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gold-gradient);
  color: #050505;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 18px var(--accent-gold-glow);
  transform: translateY(-2px);
}

/* Authentic Architectural Masonry Layout */
.gallery-grid {
  column-count: 4;
  column-gap: 22px;
  width: 100%;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}

.gallery-item.reveal-in {
  animation: cardRevealIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gallery-item.reveal-out {
  animation: cardRevealOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardRevealIn {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardRevealOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-15px) scale(0.96);
  }
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.7), 0 0 20px rgba(197, 168, 128, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

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

.gallery-overlay h4 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay p {
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.04s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 4, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 85%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 60px rgba(0,0,0,0.9);
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-img.loaded {
  opacity: 1;
}

.lightbox-caption {
  margin-top: 18px;
  text-align: center;
}

.lightbox-caption h4 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 4px;
}

.lightbox-caption p {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.lightbox-close {
  position: absolute;
  top: 35px;
  right: 35px;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  z-index: 2100;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 2.8rem;
  cursor: pointer;
  z-index: 2100;
  padding: 20px;
  transition: var(--transition-smooth);
  user-select: none;
}

.lightbox-nav:hover {
  color: var(--accent-gold);
  transform: translateY(-50%) scale(1.15);
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

/* Process Section */
.process {
  background-color: var(--bg-secondary);
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.process-timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--glass-border);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.process-step {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.process-step::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: #000;
  border: 3px solid var(--accent-gold);
  top: 32px;
  border-radius: 50%;
  z-index: 5;
  transition: var(--transition-smooth);
}

.process-step:hover::after {
  background-color: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold);
  transform: scale(1.2);
}

.left {
  left: 0;
  text-align: right;
}

.right {
  left: 50%;
}

.right::after {
  left: -8px;
}

.process-card {
  padding: 32px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.process-card:hover {
  border-color: rgba(197, 168, 128, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 168, 128, 0.12);
}

.process-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.process-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.process-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Contact Section */
.contact {
  background-color: var(--bg-primary);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info h2 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  line-height: 1.2;
}

.contact-info p.lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 35px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-sm);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
}

.contact-details-text h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-details-text p, .contact-details-text a {
  font-size: 1.08rem;
  font-weight: 600;
}

.contact-details-text a:hover {
  color: var(--accent-gold);
}

.contact-whatsapp-box {
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition-smooth);
}

.contact-whatsapp-box:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(37, 211, 102, 0.2);
}

.contact-whatsapp-box h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.contact-whatsapp-box h3 svg {
  width: 24px;
  height: 24px;
  fill: var(--whatsapp-green);
}

.contact-whatsapp-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Completely Solid Consultation Form (Zero Movement / Zero Cursor Tilt) */
.contact-form {
  padding: 45px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: none !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 168, 128, 0.1);
  transform: none !important;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #25d366;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 5px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #25d366;
  animation: pulseGlow 1.5s infinite;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.required-star {
  color: #e57373;
}

.form-control {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-border);
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

.form-control option {
  background-color: #151515;
  color: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-status-alert {
  display: none;
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  font-size: 0.92rem;
  line-height: 1.4;
  animation: cardRevealIn 0.4s ease forwards;
}

.form-status-alert.show {
  display: block;
}

.form-status-alert.success {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #e0f2fe;
}

.form-status-alert.success strong {
  color: #25d366;
}

.btn-submit {
  background: var(--accent-gold-gradient);
  color: #050505;
  padding: 16px;
  border-radius: var(--border-radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 18px var(--accent-gold-glow);
}

.btn-submit:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px var(--accent-gold-glow);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.google-form-direct-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.btn-google-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-gold);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.2);
  transition: var(--transition-smooth);
}

.btn-google-form:hover {
  background: var(--accent-gold);
  color: #000;
}

/* Quick WhatsApp Inquiry Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  width: 100%;
  max-width: 480px;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(197, 168, 128, 0.15);
}

.modal-backdrop.active .modal-window {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-secondary);
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

.modal-head {
  text-align: center;
  margin-bottom: 25px;
}

.modal-head-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.modal-head-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--whatsapp-green);
}

.modal-head h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal-head p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
}

.modal-direct-chat {
  text-align: center;
  margin-top: 8px;
}

.modal-direct-chat a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: underline;
}

.modal-direct-chat a:hover {
  color: var(--accent-gold);
}

/* Footer */
footer {
  background-color: #040404;
  border-top: 1px solid var(--glass-border);
  padding: 80px 8% 35px;
}

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
}

.social-link:hover {
  background: var(--accent-gold-gradient);
  border-color: var(--accent-gold);
  transform: translateY(-3px) scale(1.1);
}

.social-link:hover svg {
  fill: #000;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gold-gradient);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-whatsapp-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-whatsapp-cta p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-tertiary);
  font-size: 0.88rem;
}

.creator-credit {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.creator-credit strong {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* Animations for Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
  }
  .about {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  section {
    padding: 80px 5% 60px;
  }
  .navbar {
    padding: 16px 5%;
  }
  .navbar.scrolled {
    padding: 12px 5%;
  }
  .hero-content h1 {
    font-size: 3.2rem;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-img-container {
    order: 2;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 1000;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: #0d0d0d;
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: var(--transition-smooth);
    z-index: 950;
    border-radius: 0;
    padding: 40px 20px;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 120px 5% 60px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
  }
  
  .hero-ctas a {
    width: 100%;
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .gallery-grid {
    column-count: 2;
  }
  
  .process-timeline::after {
    left: 31px;
  }
  
  .process-step {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
    text-align: left !important;
  }
  
  .process-step::after {
    left: 23px;
    right: auto;
  }
  
  .left, .right {
    left: 0;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float-btn {
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float-btn svg {
    width: 26px;
    height: 26px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    column-count: 1;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .modal-window {
    padding: 30px 20px;
  }
}
