:root {
  --primary: #0a0a1a;
  --secondary: #d4a853;
  --secondary-light: #f0d078;
  --secondary-dark: #b8922e;
  --bg-dark: #050510;
  --bg-light: #0f0f2a;
  --bg-card: rgba(18, 18, 42, 0.8);
  --text-light: #ffffff;
  --text-muted: #8888aa;
  --gradient-gold: linear-gradient(135deg, #d4a853, #f0d078, #d4a853);
  --gradient-gold-vertical: linear-gradient(180deg, #d4a853, #b8922e);
  --gradient-dark: linear-gradient(180deg, #0a0a1a, #050510);
  --shadow-gold: 0 0 40px rgba(212, 168, 83, 0.3);
  --shadow-gold-strong: 0 0 80px rgba(212, 168, 83, 0.4);
  --shadow-card: 0 15px 50px rgba(0, 0, 0, 0.6);
  --shadow-card-hover: 0 25px 80px rgba(0, 0, 0, 0.8);
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.8;
}

::selection { background: var(--secondary); color: var(--primary); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--secondary), var(--secondary-dark)); border-radius: 5px; border: 2px solid var(--primary); }
::-webkit-scrollbar-thumb:hover { background: var(--secondary-light); }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 99999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.5);
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.8s, visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }
.loader-bar-container {
  width: 280px; height: 3px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 10px;
  animation: loaderBar 2s ease forwards;
}
@keyframes loaderBar { 0% { width: 0%; } 50% { width: 70%; } 100% { width: 100%; } }
.loader-sub {
  color: var(--secondary);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  font-style: italic;
  font-weight: 300;
  margin-top: 20px;
  font-family: var(--font-heading);
  opacity: 0.8;
}
.loader-desc {
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 300;
}

/* ===== GLASSMORPHISM ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 34px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  z-index: 9999;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 5, 16, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 14px 60px;
  box-shadow: 0 2px 50px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(212, 168, 83, 0.05);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: -8px;
}
.nav-logo img { margin-left: 0; }
.logo-img {
  height: 62px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  -webkit-text-fill-color: initial;
  border-radius: 8px;
}
.footer-brand .logo-img { height: 52px; }
@keyframes sparkle { 0%, 100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }

.nav-links { display: flex; list-style: none; gap: 26px; align-items: center; flex-wrap: nowrap; }
.nav-logo span, .nav-links li { white-space: nowrap; }
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition-fast);
  padding: 5px 0;
}
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--secondary); }
.nav-links a:hover::before { width: 100%; }
.nav-links a.active { color: var(--secondary); }
.nav-links a.active::before { width: 100%; }

.nav-cta {
  background: var(--gradient-gold);
  color: var(--primary) !important;
  padding: 13px 34px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.25);
}
.nav-cta i { font-size: 0.9rem; }
.nav-cta::before { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 99999;
  width: 44px;
  height: 42px;
  margin-left: auto;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 28px; height: 2px;
  background: var(--text-light);
  transition: var(--transition-fast);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--secondary); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); background: var(--secondary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 13vh;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,168,83,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,83,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(100,80,200,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #050510 0%, #0a0a2a 30%, #0f0a20 60%, #050510 100%);
  animation: heroBgShift 15s ease-in-out infinite alternate;
}
@keyframes heroBgShift {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 950px;
}
.hero-logo {
  height: 170px;
  width: auto;
  max-width: 390px;
  object-fit: contain;
  margin-bottom: 28px;
  border-radius: 22px;
  filter: drop-shadow(0 10px 30px rgba(212,168,83,0.35));
  opacity: 0;
  animation: fadeInDown 1s ease 0.15s forwards;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInDown 1s ease 0.3s forwards;
}
.hero-badge .pulse-dot {
  width: 6px; height: 6px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

.hero-title {
  font-family: var(--font-heading);
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}
.hero-title .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: goldShift 4s ease-in-out infinite;
}
@keyframes goldShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-title .block { display: block; font-size: 0.5em; color: var(--text-light); font-weight: 400; letter-spacing: 6px; text-transform: uppercase; margin-top: 5px; }
.hero-title .typed-cursor { font-size: 3rem; color: var(--secondary); animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto 22px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.75s forwards;
  max-width: 400px;
}
.hero-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.hero-divider i {
  color: var(--secondary);
  font-size: 1rem;
  animation: gemPulse 3s ease-in-out infinite;
}
@keyframes gemPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.2) rotate(15deg); opacity: 1; }
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 16px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}
.hero-note {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 36px;
  padding: 18px 26px;
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 16px;
  background: rgba(212, 168, 83, 0.04);
  backdrop-filter: blur(6px);
}
.hero-note strong { color: var(--secondary); font-weight: 600; }
.hero-note { opacity: 0; animation: fadeInUp 1s ease 1.05s forwards; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeInUp 1s ease 1.2s forwards; }

.btn {
  padding: 16px 44px;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary);
  position: relative;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%) rotate(20deg);
  transition: var(--transition);
}
.btn-primary:hover::before { transform: translateX(100%) rotate(20deg); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold-strong); }

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
}
.btn-outline:hover { background: var(--secondary); color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.btn-glow {
  position: relative;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 64px;
  background: var(--gradient-gold);
  z-index: -1;
  opacity: 0;
  filter: blur(20px);
  transition: var(--transition);
}
.btn-glow:hover::after { opacity: 0.6; }

.hero-scroll {
  position: absolute;
  bottom: 72px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroScrollIn 1s ease 2s forwards;
}
@keyframes heroScrollIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-text { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 30px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  width: 4px; height: 10px;
  background: var(--secondary);
  border-radius: 4px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; } }

/* ===== SECTIONS ===== */
.section {
  padding: 140px 60px;
  position: relative;
}
.section-dark { background: var(--bg-dark); }
.section-light { background: var(--bg-light); }

/* SVG Section Dividers */
.section-divider-top, .section-divider-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 120px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.section-divider-top { top: -1px; }
.section-divider-bottom { bottom: -1px; transform: rotate(180deg); }
.section-divider-top svg, .section-divider-bottom svg {
  width: 100%; height: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  position: relative;
}
.section-tag .line {
  display: inline-block;
  width: 50px; height: 1px;
  background: var(--secondary);
}
.section-tag .line:last-child { width: 30px; }
.section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-title .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-image {
  position: relative;
  width: 100%;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.about-logo {
  width: 118%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 15px 40px rgba(212,168,83,0.25));
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,83,0.08), transparent);
  border-radius: 16px;
  pointer-events: none;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content h3 .gold { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-content p { color: var(--text-muted); margin-bottom: 25px; line-height: 2; font-size: 0.95rem; }

/* ===== PROJECTS (Filterable) ===== */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.filter-btn {
  padding: 8px 24px;
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  font-weight: 500;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.08);
  transition: var(--transition);
  height: 420px;
  perspective: 1000px;
}
.project-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(212, 168, 83, 0.3);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
  background: var(--bg-dark);
}
.project-card:hover img { transform: none; }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,16,0.95) 0%, rgba(5,5,16,0.6) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: var(--transition);
}
.project-card:hover .project-overlay { background: linear-gradient(to top, rgba(5,5,16,0.98) 0%, rgba(5,5,16,0.3) 100%); }
.project-tag {
  display: inline-block;
  padding: 5px 18px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 15px;
  width: fit-content;
}
.project-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 10px;
  transform: translateY(0);
  transition: var(--transition);
}
.project-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  transform: translateY(30px);
  opacity: 0;
  transition: var(--transition);
  line-height: 1.7;
}
.project-card:hover .project-desc { transform: translateY(0); opacity: 1; }

/* ===== ONGOING PROJECT ===== */
.featured-project {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.featured-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.featured-gallery .main-img {
  grid-column: 1 / -1;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.featured-gallery .main-img img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); background: transparent; }
.featured-gallery .main-img:hover img { transform: none; }
.featured-gallery .main-img .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: rgba(212, 168, 83, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}
.featured-gallery .main-img .play-btn:hover { transform: translate(-50%, -50%) scale(1.1); box-shadow: var(--shadow-gold); }

.featured-gallery .sub-img {
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
.featured-gallery .sub-img img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); background: transparent; }
.featured-gallery .sub-img:hover img { transform: none; }

/* Single portrait-photo showcase */
.featured-gallery.showcase-single { grid-template-columns: 1fr; }
.featured-gallery.showcase-single .main-img {
  height: auto;
  border-radius: 0;
  background: transparent;
}
.featured-gallery.showcase-single .main-img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 780px;
  margin: 0 auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.featured-info .featured-status {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.status-badge {
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-completed { background: rgba(76, 175, 80, 0.12); color: #4caf50; border: 1px solid rgba(76, 175, 80, 0.25); }
.status-ongoing { background: rgba(255, 193, 7, 0.12); color: #ffc107; border: 1px solid rgba(255, 193, 7, 0.25); }
.status-upcoming { background: rgba(33, 150, 243, 0.12); color: #42a5f5; border: 1px solid rgba(33, 150, 243, 0.25); }

.featured-info h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 15px;
  line-height: 1.2;
}
.featured-info h3 .gold { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.featured-info > p { color: var(--text-muted); margin-bottom: 30px; line-height: 2; font-size: 0.95rem; }

.featured-details { margin-bottom: 30px; }
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.detail-row:last-child { border-bottom: none; }
.detail-row .label { color: var(--text-muted); font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.detail-row .label i { color: var(--secondary); width: 16px; }
.detail-row .value { font-weight: 500; font-size: 0.9rem; }

.progress-section { margin-top: 35px; }
.progress-item { margin-bottom: 25px; }
.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.progress-header .label { color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.progress-header .percent { color: var(--secondary); font-weight: 600; font-family: var(--font-heading); }
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 10px;
  width: 0;
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== PROJECT SHOWCASE EXTRAS ===== */
.showcase-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.project-index {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212, 168, 83, 0.55);
}
.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.featured-project.flip .featured-gallery { order: 2; }
.featured-project.flip .featured-info { order: 1; }
.showcase-block { margin-bottom: 100px; }
.showcase-block:last-of-type { margin-bottom: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  min-width: 100%;
  padding: 20px;
}
.testimonial-inner {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  position: relative;
}
.testimonial-inner::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--secondary);
  opacity: 0.1;
  position: absolute;
  top: 20px;
  left: 40px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 2;
  max-width: 700px;
  margin: 0 auto 30px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.testimonial-author img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}
.testimonial-author h5 { font-size: 1rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.testimonial-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.3);
  background: transparent;
  color: var(--secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-btn:hover { background: var(--secondary); color: var(--primary); }
.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimonial-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.testimonial-dot.active { background: var(--secondary); width: 30px; border-radius: 5px; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card-hover); border-color: rgba(212,168,83,0.3); }
.team-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: var(--transition);
  background: var(--bg-dark);
}
.team-card:hover .team-image img { transform: none; }
.team-social {
  position: absolute;
  bottom: -40px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  opacity: 0;
}
.team-card:hover .team-social { bottom: 20px; opacity: 1; }
.team-social a {
  width: 40px; height: 40px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.team-social a:hover { transform: scale(1.1); }
.team-info { padding: 25px 20px; }
.team-info h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 5px; }
.team-info span { font-size: 0.8rem; color: var(--secondary); letter-spacing: 1px; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); border-color: rgba(212,168,83,0.2); }
.blog-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-image img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); background: var(--bg-dark); }
.blog-card:hover .blog-image img { transform: none; }
.blog-date {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--secondary);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
}
.blog-body { padding: 25px; }
.blog-body .blog-category {
  font-size: 0.7rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}
.blog-body h4 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; margin-bottom: 15px; }
.blog-body a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.blog-body a:hover { gap: 12px; }

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(212,168,83,0.2); }
.faq-question {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}
.faq-question h4 { font-size: 1rem; font-weight: 500; }
.faq-question .faq-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(212,168,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: var(--transition);
  font-size: 0.8rem;
}
.faq-item.active .faq-icon { background: var(--secondary); color: var(--primary); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 30px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 22px;
}
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.9; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 250px;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); background: var(--bg-dark); }
.gallery-item:hover img { transform: none; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,16,0.7), rgba(5,5,16,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(2px);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  font-size: 2rem;
  color: var(--secondary);
  transform: scale(0.5) rotate(-45deg);
  transition: var(--transition);
  text-shadow: 0 0 30px rgba(212,168,83,0.4);
}
.gallery-item:hover .gallery-overlay i { transform: scale(1) rotate(0deg); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  transform: scale(0.8);
  transition: var(--transition);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
}
.lightbox-close:hover { color: var(--secondary); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--secondary); }

/* ===== CONTACT ===== */
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
.contact-info h3 .gold { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contact-info > p { color: var(--text-muted); margin-bottom: 40px; line-height: 2; }

.contact-details { display: flex; flex-direction: column; gap: 25px; margin-bottom: 40px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-item .icon {
  width: 55px; height: 55px;
  min-width: 55px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
  transition: var(--transition);
}
.contact-item:hover .icon { background: var(--secondary); color: var(--primary); border-color: var(--secondary); }
.contact-item h5 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 50px;
  backdrop-filter: blur(10px);
}
.contact-form h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-form > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 35px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; position: relative; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.form-group label i { color: var(--secondary); margin-right: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.08);
  background: rgba(255,255,255,0.07);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.15); }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23d4a853' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
.form-group select option { background: var(--bg-dark); color: var(--text-light); }
.form-group textarea { height: 130px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 14px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%) rotate(20deg);
  transition: var(--transition);
}
.form-submit:hover::before { transform: translateX(100%) rotate(20deg); }
.form-submit:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold-strong); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ===== GOOGLE MAPS ===== */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) invert(0.9);
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.whatsapp-btn {
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.7); } }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-tooltip {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateY(0); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(212, 168, 83, 0.06);
  padding: 100px 60px 30px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0.3;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand .nav-logo { font-size: 1.8rem; display: inline-flex; margin-bottom: 10px; }
.footer-brand h4 { margin-top: 8px; }
.footer-quicklinks { margin-bottom: 22px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 340px; line-height: 1.9; }
.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--text-light);
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--secondary);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer ul a::before { content: '›'; color: var(--secondary); font-size: 1.2rem; }
.footer ul a:hover { color: var(--secondary); padding-left: 5px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.5px; }
.footer-bottom a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--secondary-light); }

/* ===== GO TO TOP ===== */
.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px; height: 50px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.go-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold-strong); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 100px;
  right: 30px;
  padding: 18px 30px;
  border-radius: 14px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 99999;
  transform: translateX(120%);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.toast.show { transform: translateX(0); }
.toast.success { background: linear-gradient(135deg, #1b5e20, #4caf50); }
.toast.error { background: linear-gradient(135deg, #b71c1c, #f44336); }
.toast i { font-size: 1.2rem; }

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.page-transition.active { opacity: 1; }

/* ===== ENQUIRY POPUP ===== */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.enquiry-modal.open { visibility: visible; opacity: 1; }
.enquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 10, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.enquiry-box {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(160deg, #12122e, #0b0b1e);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 24px;
  padding: 42px 44px 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 60px rgba(212, 168, 83, 0.08);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
.enquiry-modal.open .enquiry-box { transform: translateY(0) scale(1); opacity: 1; }
.enquiry-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.enquiry-close:hover {
  background: #f44336;
  border-color: #f44336;
  color: #fff;
  transform: rotate(90deg);
}
.enquiry-head { text-align: center; margin-bottom: 26px; }
.enquiry-head h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.enquiry-head p { color: var(--text-muted); font-size: 0.88rem; }
@media (max-width: 600px) {
  .enquiry-box { padding: 32px 22px 26px; border-radius: 18px; }
  .enquiry-head h3 { font-size: 1.55rem; }
}

/* ===== BEFORE / AFTER COMPARISON ===== */
.comparison-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.comparison-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  --slider-pos: 50%;
}
.comparison-before, .comparison-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.comparison-before {
  clip-path: inset(0 0 0 0);
  clip-path: polygon(0 0, var(--slider-pos) 0, var(--slider-pos) 100%, 0 100%);
}
.comparison-after {
  clip-path: polygon(var(--slider-pos) 0, 100% 0, 100% 100%, var(--slider-pos) 100%);
}
.comparison-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.comparison-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  backdrop-filter: blur(4px);
}
.comparison-before .comparison-label { left: 20px; }
.comparison-after .comparison-label { right: 20px; }

.comparison-handle {
  position: absolute;
  top: 0;
  left: var(--slider-pos);
  width: 4px;
  height: 100%;
  background: var(--secondary);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(212,168,83,0.5);
}
.comparison-handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  box-shadow: 0 0 30px rgba(212,168,83,0.4);
  cursor: col-resize;
}
.comparison-line {
  position: absolute;
  top: 0;
  left: var(--slider-pos);
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: translateX(-50%);
  z-index: 9;
  pointer-events: none;
}

/* ===== COUNTDOWN ===== */
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.countdown-item {
  text-align: center;
  min-width: 120px;
  padding: 25px 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.countdown-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
.countdown-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}
.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-aos] { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */

/* Wide Laptop (1350px and below) */
@media (max-width: 1350px) {
  .navbar { padding: 20px 32px; }
  .nav-logo { font-size: 1.35rem; }
  .logo-img { height: 44px; max-width: 150px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 1px; }
  .nav-cta { padding: 9px 18px; font-size: 0.75rem !important; }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .hero-title { font-size: 6.8rem; }
  .section { padding: 160px 80px; }
  .about-image img { max-height: 700px; }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1200px) {
  .hero-title { font-size: 4.5rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; height: 250px; }
  .navbar { padding: 15px 24px; }
  .section { padding: 120px 40px; }
}

/* Tablet Landscape / Small Desktop (992px - 1199px) */
@media (max-width: 1024px) {
  .section { padding: 100px 35px; }
  .hero { padding-bottom: 30px; }
  .hero-title { font-size: 3.8rem; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-logo { width: 100%; max-width: none; }
  .featured-project { grid-template-columns: 1fr; gap: 40px; }
  .featured-project .featured-info { order: 1; }
  .featured-project .featured-gallery { order: 2; }
  .showcase-block { margin-bottom: 70px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .navbar { padding: 15px 22px; }
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.6px; }
  .hero-subtitle { font-size: 1rem; max-width: 500px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .about-image img { max-height: 450px; }
}

/* Tablet (768px - 991px) */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-logo { gap: 10px; }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 100px 18px 70px;
  }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 100px 35px 40px;
    gap: 18px;
    transition: var(--transition);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(212,168,83,0.05);
  }
  .nav-links.active { right: 0; }
  .nav-toggle { display: flex; }
  .nav-links a { font-size: 0.85rem; letter-spacing: 2px; }

  .hero-title { font-size: 2.8rem; }
  .hero-logo { height: 104px; margin-bottom: 18px; }
  .hero-title .block { font-size: 0.45em; letter-spacing: 4px; }
  .hero-title .typed-cursor { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; max-width: 400px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; padding: 14px 28px; font-size: 0.8rem; }

  .section { padding: 70px 25px; }
  .section-title { font-size: 2rem; }
  .section-tag { font-size: 0.65rem; }
  .section-tag .line { width: 30px; }
  .section-tag .line:last-child { width: 20px; }

  .about-grid { gap: 40px; }
  .about-image img { max-height: 400px; }
  .about-content h3 { font-size: 1.8rem; }
  .about-content p { font-size: 0.88rem; }
  .team-highlight { grid-template-columns: 1fr !important; }

  .projects-grid { grid-template-columns: 1fr; }
  .project-card { height: 320px; }

  .featured-gallery { grid-template-columns: 1fr 1fr; }
  .featured-gallery .main-img { height: 220px; }
  .featured-gallery .sub-img { height: 130px; }
  .featured-info h3 { font-size: 1.6rem; }
  .project-index { font-size: 2.2rem; }

  .contact-form { padding: 30px 25px; }
  .contact-form h4 { font-size: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 60px 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand .nav-logo { flex-wrap: wrap; row-gap: 12px; max-width: 100%; font-size: 1.5rem; }
  .footer-brand .logo-img { height: 50px; max-width: 140px; }
  .footer ul a { overflow-wrap: anywhere; white-space: normal; }
  .footer-brand p { max-width: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { height: 180px; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 220px; }

  .faq-question { padding: 18px 22px; }
  .faq-question h4 { font-size: 0.9rem; }
  .faq-answer { padding: 0 22px; }
  .faq-item.active .faq-answer { padding: 0 22px 18px; }

  .testimonial-inner { padding: 30px 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { right: 15px; bottom: 80px; }
  .whatsapp-btn { width: 48px; height: 48px; font-size: 1.3rem; }
  .whatsapp-tooltip { display: none; }

  .comparison-container { height: 350px; }
  .comparison-handle-icon { width: 36px; height: 36px; font-size: 0.85rem; }

  .countdown-grid { gap: 12px; }
  .countdown-item { min-width: 75px; padding: 15px 10px; }
  .countdown-number { font-size: 2rem; }

  .scroll-progress { height: 2px; }
  .hero-divider { max-width: 280px; gap: 12px; }

  .footer-names .fn-name { font-size: 0.88rem; }
}

/* Mobile (480px - 767px) */
@media (max-width: 480px) {
  .navbar { padding: 12px 18px; }
  .nav-logo { font-size: 1.2rem; gap: 9px; }
  .nav-links { padding: 90px 25px 30px; width: 75%; }

  .hero-title { font-size: 2rem; }
  .hero-logo { height: 84px; margin-bottom: 14px; }
  .hero-title .block { font-size: 0.4em; letter-spacing: 3px; }
  .hero-badge { font-size: 0.55rem; padding: 5px 12px; letter-spacing: 1.5px; }
  .hero-subtitle { font-size: 0.85rem; max-width: 320px; }
  .hero-buttons .btn { padding: 12px 20px; font-size: 0.75rem; }

  .section { padding: 50px 18px; }
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: 0.85rem; }

  .about-image img { max-height: 300px; }
  .about-logo { width: 100%; max-width: 360px; }
  .about-content h3 { font-size: 1.4rem; }

  .project-card { height: 260px; border-radius: 16px; }
  .project-overlay { padding: 25px; }
  .project-title { font-size: 1.1rem; }
  .project-desc { font-size: 0.78rem; }

  .featured-gallery { grid-template-columns: 1fr; gap: 12px; }
  .featured-gallery .main-img { height: 200px; }
  .featured-gallery .sub-img { height: 120px; }
  .featured-info h3 { font-size: 1.3rem; }
  .featured-status .status-badge { font-size: 0.7rem; padding: 5px 12px; }
  .loc-badge { font-size: 0.65rem; padding: 5px 12px; }
  .project-index { font-size: 1.8rem; }
  .showcase-block { margin-bottom: 55px; }
  .more-projects-cta { margin-top: 55px !important; padding: 35px 20px !important; }
  .detail-row { font-size: 0.8rem; }

  .team-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item { height: 140px; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 200px; }

  .contact-form { padding: 25px 18px; border-radius: 18px; }
  .contact-form h4 { font-size: 1.1rem; }
  .form-group input, .form-group select { padding: 12px 16px; font-size: 0.85rem; }
  .form-submit { padding: 14px; font-size: 0.9rem; }
  .contact-item .icon { width: 45px; height: 45px; min-width: 45px; font-size: 1.1rem; }
  .contact-info h3 { font-size: 1.6rem; }

  .footer { padding: 50px 18px 15px; }
  .footer-brand .nav-logo { font-size: 1.25rem; gap: 10px; }
  .footer-brand .logo-img { height: 44px; max-width: 120px; }
  .footer h4 { font-size: 1rem; margin-bottom: 18px; }
  .detail-row { flex-wrap: wrap; gap: 4px 10px; }
  .hero-note { font-size: 0.82rem; padding: 14px 16px; line-height: 1.75; border-radius: 14px; }
  .social a { width: 40px; height: 40px; font-size: 1rem; }

  .go-top { width: 42px; height: 42px; font-size: 1rem; bottom: 20px; right: 20px; }
  .comparison-container { height: 280px; }
  .countdown-item { min-width: 65px; padding: 12px 8px; }
  .countdown-number { font-size: 1.6rem; }
  .countdown-label { font-size: 0.6rem; letter-spacing: 1.5px; }
  .whatsapp-tooltip { display: none; }
}

/* Small Mobile (360px - 479px) */
@media (max-width: 380px) {
  .hero-title { font-size: 1.6rem; }
  .hero-logo { height: 72px; }
  .logo-img { height: 38px; max-width: 110px; }
  .nav-logo { font-size: 1.05rem; gap: 8px; }
  .navbar { padding: 10px 16px; }
  .footer-brand .logo-img { height: 38px; max-width: 100px; }
  .hero-title .block { font-size: 0.35em; letter-spacing: 2px; }
  .hero-badge { font-size: 0.5rem; padding: 4px 10px; }
  .hero-subtitle { font-size: 0.78rem; }
  .btn { padding: 10px 16px; font-size: 0.68rem; }
  .section { padding: 40px 14px; }
  .section-title { font-size: 1.3rem; }
  .gallery-item { height: 110px; }
  .gallery-item:nth-child(1) { height: 160px; }
  .project-card { height: 220px; }
  .project-overlay { padding: 18px; }
  .about-image img { max-height: 240px; }
  .countdown-item { min-width: 55px; padding: 10px 6px; }
  .countdown-number { font-size: 1.3rem; }
}
