﻿:root {
  --primary: #0a0a1a;
  --secondary: #c9a96e;
  --secondary-light: #e8cf9c;
  --secondary-dark: #a88a4e;
  --accent: #7c6cf0;
  --accent-dark: #5a4bd6;
  --bg-dark: #060611;
  --bg-light: #0c0c24;
  --bg-card: rgba(16, 16, 38, 0.85);
  --text-light: #ffffff;
  --text-muted: #8a8aae;
  --gradient-gold: linear-gradient(135deg, #c9a96e, #e8cf9c, #c9a96e);
  --gradient-brand: linear-gradient(135deg, #c9a96e 0%, #a88a4e 50%, #7c6cf0 100%);
  --gradient-gold-vertical: linear-gradient(180deg, #c9a96e, #a88a4e);
  --gradient-dark: linear-gradient(180deg, #0a0a1a, #060611);
  --shadow-gold: 0 0 40px rgba(201, 169, 110, 0.3);
  --shadow-gold-strong: 0 0 80px rgba(201, 169, 110, 0.4);
  --shadow-violet: 0 0 40px rgba(124, 108, 240, 0.3);
  --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;
  cursor: default;
}
a, button, .service-tile, .gallery-item, .faq-question, .nav-toggle { cursor: pointer; }
::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-brand);
  z-index: 99999; width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.5);
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed; inset: 0; background: var(--bg-dark);
  z-index: 999999; pointer-events: none; opacity: 0;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, #0d0d22 0%, var(--bg-dark) 55%, #060611 100%);
  display: flex; align-items: center; justify-content: center;
  z-index: 999999; overflow: hidden;
  transition: opacity 0.8s, visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-glow {
  position: absolute; top: 45%; left: 50%;
  width: 560px; height: 560px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0.04) 40%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  animation: loaderGlowPulse 3s ease-in-out infinite;
}
@keyframes loaderGlowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.loader-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.loader-particles .particle {
  position: absolute; border-radius: 50%;
  background: var(--secondary); opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}
.loader-rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 400px; height: 400px; pointer-events: none; }
.loader-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.08);
  animation: ringPulse 4s ease-in-out infinite;
}
.loader-ring:nth-child(2) { animation-delay: 1.3s; }
.loader-ring:nth-child(3) { animation-delay: 2.6s; }
@keyframes ringPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.loader-content { position: relative; text-align: center; max-width: 640px; padding: 20px; }
.loader-logo-mark {
  width: 140px; height: 140px;
  margin: 0 auto 22px;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow-gold);
  animation: loaderMarkReveal 1.2s cubic-bezier(0.22,1,0.36,1) forwards, loaderMarkFloat 3s ease-in-out 1.2s infinite;
}
.loader-logo-img {
  width: 104px; height: 104px;
  object-fit: contain; border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(201,169,110,0.35));
}
@keyframes loaderMarkReveal {
  0% { opacity: 0; transform: scale(0.5) rotate(-20deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes loaderMarkFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.03); }
}
/* Bigger company name in splash */
.loader-brand {
  font-family: var(--font-heading);
  font-size: 2.7rem; font-weight: 800;
  letter-spacing: 2px; color: var(--text-light);
  line-height: 1.15;
  opacity: 0;
  animation: loaderFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
}
.loader-brand span, .loader-brand em {
  display: block;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 0.62em; font-weight: 600; letter-spacing: 1px;
}
.loader-est {
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-top: 8px;
  opacity: 0;
  animation: loaderFadeUp 0.9s ease 0.25s forwards;
}
.loader-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 16px auto 14px; width: 220px;
  opacity: 0;
  animation: loaderFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
.loader-divider::before, .loader-divider::after {
  content: ''; height: 1px; width: 70px;
  background: linear-gradient(90deg, transparent, var(--secondary));
}
.loader-divider::after { background: linear-gradient(90deg, var(--secondary), transparent); }
.loader-divider span {
  width: 7px; height: 7px; transform: rotate(45deg);
  background: var(--gradient-gold); box-shadow: 0 0 12px rgba(201,169,110,0.8);
}
/* Slightly smaller title + smaller sub-text lines below */
.loader-title {
  font-family: var(--font-heading);
  font-size: 1.9rem; font-weight: 800;
  line-height: 1.2; letter-spacing: 1px; margin-bottom: 8px;
  opacity: 0;
  animation: loaderFadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.6s forwards;
}
.loader-line { display: block; text-transform: uppercase; color: var(--text-light); }
.loader-line-gold {
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 1.5rem; letter-spacing: 6px;
}
.loader-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 18px;
  opacity: 0;
  animation: loaderFadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.8s forwards;
}
.loader-tagline::before, .loader-tagline::after {
  content: ''; display: inline-block;
  width: 5px; height: 5px; margin: 0 10px;
  border-radius: 50%; background: var(--secondary);
  vertical-align: middle;
  animation: loaderDotFlicker 1.6s ease-in-out infinite;
}
.loader-tagline::after { animation-delay: 0.4s; }
@keyframes loaderDotFlicker { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.loader-bar-container {
  width: 260px; height: 3px;
  background: rgba(201,169,110,0.1);
  border-radius: 10px; overflow: hidden; margin: 0 auto;
  opacity: 0;
  animation: loaderFadeUp 0.8s ease 0.95s forwards;
}
.loader-bar {
  width: 0%; height: 100%;
  background: var(--gradient-brand);
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(201,169,110,0.6);
  animation: loaderBar 2.2s ease forwards;
}
@keyframes loaderBar { 0% { width: 0%; } 45% { width: 45%; } 70% { width: 80%; } 100% { width: 100%; } }
.loader-sub {
  color: var(--secondary);
  font-size: 0.72rem; letter-spacing: 1.5px;
  font-style: italic; font-weight: 300;
  margin-top: 14px; font-family: var(--font-heading);
  opacity: 0;
  animation: loaderFadeUp 0.9s ease 1.15s forwards;
}
@keyframes loaderFadeUp {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== 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(6,6,17,0.92);
  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(201,169,110,0.05);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 700;
  text-decoration: none;
  color: var(--text-light);
  position: relative; display: inline-flex; align-items: center;
  gap: 12px; margin-left: -8px;
  flex: 0 0 auto; flex-wrap: nowrap; max-width: 100%;
  min-width: 0;
}
.nav-logo em {
  font-style: normal;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-logo img { margin-left: 0; }
.logo-img {
  height: 56px; width: 56px; flex: 0 0 auto; flex-shrink: 0;
  object-fit: contain; object-position: center;
  border-radius: 10px;
}
.logo-img[src$=".jpeg"], .logo-img[src*=".JPEG"] { object-fit: contain; }
.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-brand);
  transition: var(--transition);
}
.nav-links a:hover::before { width: 100%; }
.nav-links a:hover { color: var(--secondary-light); }
.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-brand) !important;
  color: var(--primary) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.nav-cta:hover { box-shadow: 0 8px 40px rgba(201,169,110,0.5); transform: translateY(-2px); }
.nav-cta::before { display: none !important; }
.nav-toggle {
  display: none; flex-direction: column;
  gap: 6px; cursor: pointer;
  padding: 10px; z-index: 10001;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--secondary); border-radius: 2px; transition: var(--transition-fast); }
.nav-links a.active { color: var(--secondary); }
.nav-links a.active::before { width: 100%; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.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); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 130px; padding-bottom: 13vh; overflow: hidden;
  background: var(--bg-dark);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-bg-gradient {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(124,108,240,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(100,80,200,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #060611 0%, #0a0a2a 30%, #0f0a20 60%, #060611 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: 205px; width: auto; max-width: 480px;
  object-fit: contain; margin-bottom: 26px;
  border-radius: 22px;
  filter: drop-shadow(0 10px 30px rgba(201,169,110,0.35));
  opacity: 0;
  animation: fadeInDown 1s ease 0.15s forwards;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 26px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  font-size: 0.78rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--secondary-light);
  margin-bottom: 30px;
  opacity: 0; animation: fadeInDown 1s ease 0.3s forwards;
  box-shadow: 0 0 25px rgba(201,169,110,0.1);
}
.hero-badge strong { color: var(--secondary); font-weight: 600; }
.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: 5.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-brand);
  -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.58em;
  color: var(--text-light); font-weight: 400;
  letter-spacing: 6px; text-transform: uppercase; margin-top: 5px;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 28px auto; width: 300px;
  opacity: 0; animation: fadeInUp 1s ease 0.75s forwards;
}
.hero-divider span { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--secondary)); }
.hero-divider i { color: var(--secondary); font-size: 0.8rem; }
.hero-divider span:last-child { background: linear-gradient(90deg, var(--secondary), transparent); }
.hero-subtitle {
  color: var(--text-muted); font-size: 1.05rem;
  line-height: 1.9; max-width: 650px;
  margin: 0 auto 20px; font-weight: 300;
  opacity: 0; animation: fadeInUp 1s ease 0.9s forwards;
}
.hero-subtitle strong { color: var(--text-light); font-weight: 600; }
.hero-note {
  color: var(--text-muted); font-size: 0.88rem;
  line-height: 1.8; max-width: 620px;
  margin: 0 auto 30px; font-weight: 300;
  opacity: 0; animation: fadeInUp 1s ease 1.1s forwards;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 1s ease 1.2s forwards;
}
.hero-scroll {
  position: absolute; bottom: 62px; 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: 2px;
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: scrollMouse 1.8s ease-in-out infinite;
}
@keyframes scrollMouse { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.8px;
  text-transform: uppercase; border: none;
  cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--gradient-brand);
  color: var(--primary);
  box-shadow: 0 4px 25px rgba(201,169,110,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 45px rgba(201,169,110,0.55), var(--shadow-violet); transform: translateY(-3px) scale(1.02); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--secondary);
}
.btn-outline:hover { border-color: var(--secondary); background: rgba(201,169,110,0.08); transform: translateY(-3px) scale(1.02); }

/* ===== SECTIONS ===== */
.section { padding: 140px 60px; position: relative; }
.section-dark { background: var(--bg-dark); }
.section-light { background: var(--bg-light); }
.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-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.75rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--secondary);
  margin-bottom: 18px; font-weight: 500;
}
.section-tag .line { width: 40px; height: 1px; background: var(--secondary); }
.section-title {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700;
  margin-bottom: 18px; line-height: 1.2;
}
.section-title .gold {
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.9; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 70px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-image { position: relative; }
.about-image-wrapper { position: relative; display: inline-block; }
.about-logo {
  width: 100%; max-width: 420px;
  border-radius: 22px; position: relative; z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(201,169,110,0.25));
}
.about-image-accent {
  position: absolute; top: -15px; left: -15px;
  width: 100%; height: 100%;
  border: 2px solid rgba(201,169,110,0.2);
  border-radius: 22px; z-index: 0;
  animation: aboutAccentPulse 4s ease-in-out infinite;
}
@keyframes aboutAccentPulse { 0%, 100% { opacity: 0.3; transform: translate(0, 0); } 50% { opacity: 0.6; transform: translate(5px, 5px); } }
.about-est-badge {
  position: absolute; bottom: -10px; right: 30px; z-index: 2;
  background: var(--gradient-brand);
  color: var(--primary);
  padding: 14px 24px; border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: estBadgeFloat 3s ease-in-out infinite;
}
@keyframes estBadgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.about-est-badge span { display: block; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.about-est-badge strong { display: block; font-family: var(--font-heading); font-size: 1.4rem; line-height: 1.2; }
.about-content h3 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 20px; line-height: 1.3; }
.about-content p { color: var(--text-muted); line-height: 2; margin-bottom: 15px; font-size: 0.95rem; }
.about-content strong { color: var(--text-light); font-weight: 600; }
.about-content h3 .gold { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-points { margin: 20px 0 25px; display: flex; flex-direction: column; gap: 10px; }
.about-point { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.88rem; }
.about-point i { color: var(--secondary); }
.team-highlight { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 25px; }
.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.team-card-icon { font-size: 1.5rem; color: var(--secondary); margin-bottom: 5px; }
.team-card h5 { font-family: var(--font-heading); font-size: 1rem; }
.team-card span { font-size: 0.75rem; color: var(--text-muted); }
.team-card-phone { margin-top: 10px; font-size: 0.8rem; }
.team-card-phone a { color: var(--secondary); text-decoration: none; font-weight: 500; }

/* ===== SERVICES SHOWCASE (image-based sections) ===== */
.services-showcase {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 40px; align-items: stretch;
  position: relative;
}
.showcase-media {
  position: relative; border-radius: 24px;
  overflow: hidden; min-height: 460px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
}
.showcase-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.1);
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
  animation: showcaseImgZoom 12s ease-in-out infinite alternate;
}
@keyframes showcaseImgZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.18); } }
.showcase-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,17,0.1) 0%, rgba(6,6,17,0.35) 50%, rgba(6,6,17,0.85) 100%);
}
.showcase-tag {
  position: absolute; left: 24px; bottom: 24px; z-index: 3;
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700; color: var(--text-light);
  display: flex; align-items: center; gap: 12px;
}
.showcase-tag em {
  font-style: normal;
  width: 6px; height: 34px; border-radius: 4px;
  background: var(--gradient-brand);
  box-shadow: 0 0 20px rgba(201,169,110,0.6);
}
.showcase-media::before {
  content: 'âœ¦'; position: absolute; top: 20px; right: 24px; z-index: 3;
  color: var(--secondary); font-size: 1.4rem;
  animation: showcaseStar 3s ease-in-out infinite;
}
@keyframes showcaseStar { 0%, 100% { transform: rotate(0) scale(1); opacity: 0.8; } 50% { transform: rotate(180deg) scale(1.2); opacity: 1; } }
.service-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.service-tile {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 16px;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500; text-align: center;
  overflow: hidden;
}
.service-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(124,108,240,0.12) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.service-tile i { font-size: 1.6rem; color: var(--secondary); position: relative; z-index: 1; transition: var(--transition); }
.service-tile span { position: relative; z-index: 1; }
.service-tile:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-4px); color: var(--text-light); box-shadow: 0 12px 35px rgba(0,0,0,0.4); }
.service-tile:hover::before { opacity: 1; }
.service-tile:hover i { transform: scale(1.15); }
.service-tile.active {
  background: var(--bg-card);
  border-color: rgba(201,169,110,0.55);
  color: var(--text-light);
  box-shadow: 0 0 30px rgba(201,169,110,0.25), inset 0 0 30px rgba(201,169,110,0.08);
}
.service-tile.active::before { opacity: 1; }
.service-tile.active i { color: var(--secondary-light); }

/* ===== PROCESS / WORKFLOW ===== */
.section-process { background: var(--bg-light); padding: 140px 60px; }
.process-timeline {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 30px; max-width: 1200px; margin: 0 auto;
  position: relative;
}
.process-line {
  position: absolute; top: 50px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.process-number {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.15; margin-bottom: 10px; line-height: 1;
}
.process-icon {
  width: 70px; height: 70px;
  background: var(--bg-dark);
  border: 2px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem; color: var(--secondary);
  transition: var(--transition); position: relative;
}
.process-step:hover .process-icon {
  background: var(--gradient-brand);
  color: var(--primary);
  border-color: transparent;
  transform: scale(1.15) rotateY(360deg);
  box-shadow: var(--shadow-gold);
}
.process-step h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.7; }

/* ===== FEATURES ===== */
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 20px; padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-brand);
  transform: scaleX(0); transition: transform 0.5s ease;
}
.feature-card:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 65px; height: 65px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.6rem; color: var(--secondary);
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: rgba(201,169,110,0.18); transform: scale(1.1) rotateY(360deg); box-shadow: 0 0 30px rgba(201,169,110,0.15); }
.feature-card h4 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; grid-auto-flow: dense;
  gap: 16px; max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 2;
}
.gallery-item {
  border-radius: 16px; overflow: hidden;
  cursor: pointer; position: relative;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: var(--transition);
  grid-column: span 1; grid-row: span 1;
}
.gallery-item.feat-large { grid-column: span 2; grid-row: span 2; }
.gallery-item.feat-wide { grid-column: span 2; grid-row: span 1; }
.gallery-item.feat-tall { grid-column: span 1; grid-row: span 2; }
.gallery-item:hover { border-color: rgba(201,169,110,0.45); box-shadow: 0 18px 50px rgba(0,0,0,0.6), var(--shadow-gold); transform: translateY(-5px); z-index: 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); background: var(--bg-dark); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(201,169,110,0.0) 0%, transparent 40%);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,17,0.1) 0%, rgba(6,6,17,0.55) 55%, rgba(6,6,17,0.85) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; transition: opacity 0.45s ease; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; transform: translateY(14px); transition: transform 0.45s ease; }
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption i { font-size: 1.3rem; color: var(--secondary); text-shadow: 0 0 30px rgba(201,169,110,0.4); }
.gallery-caption span {
  font-family: var(--font-heading);
  font-size: 0.78rem; letter-spacing: 1.1px;
  text-transform: uppercase; color: var(--text-light);
  background: rgba(6,6,17,0.65);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 6px 14px; border-radius: 50px; white-space: nowrap;
}

/* ===== 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);
  backdrop-filter: blur(20px);
}
.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); transform: translateY(-50%) scale(1.2); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 20px; padding: 35px 28px;
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.testimonial-quote-icon { position: absolute; top: 20px; right: 25px; font-size: 2.5rem; color: rgba(201,169,110,0.08); }
.testimonial-card .stars { color: var(--secondary); font-size: 0.85rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-card blockquote { color: var(--text-muted); font-size: 0.92rem; line-height: 1.9; margin-bottom: 20px; font-style: italic; }
.testimonial-card cite { font-style: normal; color: var(--text-light); font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.testimonial-card cite i { color: var(--secondary); font-size: 1.1rem; }

/* ===== CTA BANNER ===== */
.section-cta { position: relative; padding: 120px 40px; overflow: hidden; text-align: center; background: var(--bg-dark); }
.cta-parallax {
  position: absolute; inset: -50px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(124,108,240,0.14) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a2a 0%, #0f0a20 50%, #0a0a2a 100%);
  z-index: 0;
  animation: ctaParallaxShift 10s ease-in-out infinite alternate;
}
@keyframes ctaParallaxShift { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.1) translate(-20px, -10px); } }
.cta-overlay { position: absolute; inset: 0; background: rgba(6,6,17,0.4); z-index: 1; }
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; margin-bottom: 18px; line-height: 1.2; }
.cta-title .gold { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-desc { color: var(--text-muted); font-size: 1rem; margin-bottom: 35px; line-height: 1.9; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FAQ ===== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 16px; margin-bottom: 16px;
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,169,110,0.3); }
.faq-item.active { border-color: rgba(201,169,110,0.4); box-shadow: var(--shadow-gold); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; cursor: pointer; transition: var(--transition-fast); }
.faq-question h4 { font-size: 0.95rem; font-weight: 500; flex: 1; }
.faq-question .faq-icon {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: rgba(201,169,110,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(--gradient-brand); color: var(--primary); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 28px 22px; }
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.9; }

/* ===== CONTACT ===== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; max-width: 1100px; margin: 0 auto; 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-brand); -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: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; transition: var(--transition); }
.contact-item:hover { border-color: rgba(201,169,110,0.35); transform: translateX(5px); }
.contact-item .icon { width: 48px; height: 48px; min-width: 48px; background: rgba(201,169,110,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 1rem; }
.contact-item h5 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 3px; }
.contact-item p { color: var(--text-muted); font-size: 0.85rem; }
.contact-form { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 24px; padding: 45px 40px; }
.contact-form h4 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 8px; }
.contact-form > p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.5px; margin-bottom: 6px; color: var(--text-muted); text-transform: uppercase; }
.form-group label i { color: var(--secondary); margin-right: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; color: var(--text-light);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--transition-fast);
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); outline: none; box-shadow: 0 0 20px rgba(201,169,110,0.15); }
.form-group select option { background: var(--bg-dark); color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--gradient-brand); color: var(--primary);
  border: none; border-radius: 12px;
  font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.5px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { box-shadow: 0 8px 40px rgba(201,169,110,0.4); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-secure { margin-top: 15px; font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.form-secure i { color: var(--secondary); margin-right: 5px; }

/* ===== ENQUIRY POPUP ===== */
.enquiry-modal {
  position: fixed; inset: 0;
  background: rgba(6,6,17,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: 99998; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.enquiry-modal.open { opacity: 1; visibility: visible; }
.enquiry-overlay { position: absolute; inset: 0; background: rgba(3, 3, 10, 0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.enquiry-box {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 45px 40px;
  max-width: 560px; width: 92%;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
}
.enquiry-modal.open .enquiry-box { transform: translateY(0); }
.enquiry-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; padding: 8px; transition: var(--transition-fast); z-index: 5; }
.enquiry-close:hover { color: var(--secondary); }
.enquiry-head-emoji { text-align: center; font-size: 2.4rem; margin-bottom: 6px; animation: emojiFloat 3s ease-in-out infinite; }
@keyframes emojiFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.enquiry-head { text-align: center; margin-bottom: 24px; }
.enquiry-head h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 8px; }
.enquiry-head p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 70px 60px 30px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; bottom: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(124,108,240,0.06) 0%, transparent 70%); pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 50px; max-width: 1200px; margin: 0 auto 40px; position: relative; z-index: 1; }
.footer-brand { display: flex; flex-direction: column; gap: 15px; }
.footer-brand .nav-logo { font-size: 1.3rem; margin-left: 0; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.9; }
.footer-grid h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 20px; color: var(--text-light); }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: var(--transition-fast); display: flex; align-items: center; gap: 8px; }
.footer-grid a:hover { color: var(--secondary); transform: translateX(4px); }
.footer-form-wrap { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 18px; padding: 24px; }
.footer-form-wrap h4 { margin-bottom: 16px; }
.footer-form-wrap .form-group { margin-bottom: 12px; }
.footer-form-wrap input, .footer-form-wrap select {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; color: var(--text-light);
  font-family: var(--font-body); font-size: 0.85rem;
  transition: var(--transition-fast);
}
.footer-form-wrap input:focus, .footer-form-wrap select:focus { border-color: var(--secondary); outline: none; box-shadow: 0 0 15px rgba(201,169,110,0.15); }
.footer-form-wrap select option { background: var(--bg-dark); color: var(--text-light); }
.footer-form-btn {
  width: 100%; padding: 13px;
  background: var(--gradient-brand); color: var(--primary);
  border: none; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.footer-form-btn:hover { box-shadow: 0 8px 30px rgba(201,169,110,0.4); transform: translateY(-2px); }
.footer-form-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.footer-quicklinks { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; text-align: center; color: var(--text-muted); font-size: 0.78rem; position: relative; z-index: 1; }
.footer-social { display: flex; justify-content: center; gap: 14px; margin-bottom: 30px; position: relative; z-index: 1; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); transition: var(--transition); text-decoration: none;
}
.footer-social a:hover { background: var(--gradient-brand); color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25d366; color: #fff;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse { 0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); } 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 40px rgba(37,211,102,0.6); }
.whatsapp-tooltip { position: absolute; bottom: 72px; right: 0; background: #fff; color: #333; padding: 10px 16px; border-radius: 10px; font-size: 0.8rem; white-space: nowrap; box-shadow: 0 4px 15px rgba(0,0,0,0.15); opacity: 0; transform: translateY(8px); transition: var(--transition); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateY(0); }

/* ===== GO TO TOP ===== */
.go-top { position: fixed; bottom: 100px; right: 32px; width: 46px; height: 46px; background: var(--gradient-brand); color: var(--primary); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 9998; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); box-shadow: 0 4px 20px rgba(201,169,110,0.3); }
.go-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(201,169,110,0.5); }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px); padding: 16px 32px; border-radius: 14px; font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; gap: 10px; z-index: 999999; opacity: 0; transition: all 0.4s ease; backdrop-filter: blur(20px); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: rgba(26,58,26,0.9); color: #4caf50; border: 1px solid rgba(76,175,80,0.3); }
.toast.error { background: rgba(58,26,26,0.9); color: #f44336; border: 1px solid rgba(244,67,54,0.3); }

/* ===== 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); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
[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 ===== */
@media (max-width: 1350px) {
  .navbar { padding: 20px 32px; }
  .nav-logo { font-size: 1.25rem; }
  .logo-img { height: 48px; width: 48px; max-width: 48px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 1px; }
  .nav-cta { padding: 9px 18px; font-size: 0.75rem !important; }
  .hero { padding-top: 130px; padding-bottom: 70px; }
  .hero-logo { height: 160px; max-width: 390px; }
  .hero-title { font-size: 4rem; }
}
@media (min-width: 1400px) {
  .hero-title { font-size: 5.8rem; }
  .section { padding: 160px 80px; }
}
@media (max-width: 1200px) {
  .hero-title { font-size: 4rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 120px 40px; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .process-line { display: none; }
  .services-showcase { grid-template-columns: 1fr; }
  .showcase-media { min-height: 340px; }
}
@media (max-width: 1024px) {
  .section { padding: 100px 35px; }
  .hero { padding-bottom: 30px; padding-top: 120px; }
  .hero-title { font-size: 3.6rem; }
  .hero-logo { height: 140px; max-width: 350px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-logo { width: 100%; max-width: none; }
  .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; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
}
@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%; height: 100vh;
    background: rgba(6,6,17,0.97);
    backdrop-filter: blur(30px);
    flex-direction: column; justify-content: center;
    gap: 32px; padding: 60px 40px;
    transition: right 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    z-index: 10000;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 0.9rem; letter-spacing: 2px; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: 2.8rem; }
  .hero-logo { height: 104px; margin-bottom: 18px; }
  .hero-title .block { font-size: 0.45em; letter-spacing: 4px; }
  .section { padding: 70px 25px; }
  .section-title { font-size: 1.8rem; }
  .section-header { margin-bottom: 50px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; grid-auto-rows: 150px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer { padding: 50px 25px 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; border-radius: 18px; }
  .section-process { padding: 70px 25px; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section-cta { padding: 80px 20px; }
  .cta-title { font-size: 2rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .showcase-tag { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .navbar { padding: 10px 16px; }
  .nav-links { width: 90%; padding: 40px 25px; }
  .nav-logo { font-size: 1.05rem; gap: 8px; }
  .hero-title { font-size: 1.6rem; }
  .hero-logo { height: 72px; }
  .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; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { padding: 10px 16px; font-size: 0.68rem; }
  .section { padding: 40px 14px; }
  .section-title { font-size: 1.3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; grid-auto-rows: 130px; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-step { padding: 15px 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .enquiry-box { padding: 30px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .showcase-media { min-height: 240px; }
}
