/* =============================================
   MENSERVICE — PREMIUM STYLESHEET
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --black: #050505;
  --dark: #0C0C0E;
  --dark-2: #111115;
  --dark-3: #18181E;
  --dark-4: #222228;
  --charcoal: #2A2A34;
  --text: #E8E0D0;
  --text-muted: #8A8490;
  --text-faint: #4A4455;
  --white: #FAFAFA;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover .cursor-ring { border-color: rgba(201,168,76,0.8); }

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

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

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 8px;
  margin-bottom: 2rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.preloader-bar {
  width: 200px; height: 2px;
  background: var(--dark-4);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  animation: fillBar 2s ease-in-out forwards;
}

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

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(8, 8, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

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

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-link.nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(201,168,76,0.05);
  transition: all var(--transition);
}

.nav-link.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.nav-link.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201,168,76,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- SECTION COMMON ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,5,5,0.92) 0%,
    rgba(5,5,5,0.6) 50%,
    rgba(5,5,5,0.75) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: 8%;
  animation: fadeInUp 1.2s ease 0.5s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1rem;
  color: rgba(232,224,208,0.75);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeInUp 1.5s ease 1.5s both;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding: 8rem 0;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
  box-shadow: var(--shadow);
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.15);
  z-index: 2;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.5) 0%, transparent 60%);
}

.about-accent-card {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: rgba(12,12,14,0.95);
  border: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 200px;
  text-align: center;
  box-shadow: var(--shadow);
}

.accent-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.about-accent-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-text {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-features { margin-top: 2.5rem; }

.feature-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.15);
  transform: translateX(4px);
}

.feature-icon { font-size: 1.5rem; flex-shrink: 0; }

.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- SERVICES SECTION ---------- */
.services {
  padding: 8rem 0;
  background: var(--dark-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  background: var(--dark-4);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), var(--dark-3));
  border-color: rgba(201,168,76,0.2);
}

.service-card.featured::before { opacity: 1; }

.service-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: rgba(201,168,76,0.15);
  transform: scale(1.1);
}

.service-icon { font-size: 1.6rem; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.service-tag.premium {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
}

/* ---------- PRIVACY SECTION ---------- */
.privacy-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.privacy-bg {
  position: absolute;
  inset: 0;
}

.privacy-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.privacy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,5,5,0.95) 0%,
    rgba(8,8,15,0.88) 100%
  );
}

.privacy-content {
  position: relative;
  z-index: 1;
}

.privacy-content .section-title { text-align: center; margin-bottom: 4rem; }

.privacy-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  text-align: center;
}

.pillar:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.pillar p {
  font-size: 0.82rem;
  color: rgba(232,224,208,0.6);
  line-height: 1.8;
}

/* ---------- EXPERIENCE SECTION ---------- */
.experience {
  padding: 8rem 0;
  background: var(--dark);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.exp-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.exp-steps { display: flex; flex-direction: column; gap: 1.2rem; }

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255,255,255,0.02);
  transform: translateX(4px);
}

.step-num {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.step-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.step-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.exp-image-wrap {
  position: relative;
}

.exp-img {
  border-radius: var(--radius-xl);
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.exp-quote {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: rgba(12,12,14,0.95);
  border: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  max-width: 260px;
  box-shadow: var(--shadow);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: -0.5rem;
}

.exp-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* ---------- ENQUIRY SECTION ---------- */
.enquiry {
  position: relative;
  padding: 8rem 0;
  background: var(--dark-2);
  overflow: hidden;
}

.enquiry-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.enquiry-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.enquiry-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.03);
}

.info-icon { font-size: 1.5rem; flex-shrink: 0; }

.info-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.info-card a {
  font-size: 0.85rem;
  color: var(--text);
  transition: color 0.3s;
}

.info-card a:hover { color: var(--gold); }

.info-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.privacy-note {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.privacy-note strong { color: var(--gold); }

/* FORM STYLES */
.enquiry-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.03);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.05);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--dark-3);
  color: var(--text);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* CHECKBOX */
.checkbox-group { margin-bottom: 2rem; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-custom {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  position: relative;
  transition: all 0.3s;
  margin-top: 1px;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: var(--black);
  font-weight: 700;
}

.checkbox-label a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3); }

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 1rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  display: flex;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 250px;
}

.footer-links-col h5,
.footer-contact-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links-col ul li {
  margin-bottom: 0.7rem;
}

.footer-links-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--gold);
  word-break: break-all;
  display: block;
  margin-bottom: 0.7rem;
}

.footer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.footer-badges {
  display: flex;
  gap: 1.5rem;
}

.footer-badges span {
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 1px;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

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

.modal {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal { transform: scale(1); }

.modal-icon {
  width: 70px; height: 70px;
  background: rgba(201,168,76,0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.modal h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.modal p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.modal-note {
  font-size: 0.78rem !important;
  color: var(--text-faint) !important;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid,
  .experience-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; }
  .about-img-frame { height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-pillars { grid-template-columns: repeat(2, 1fr); }
  .enquiry-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    background: var(--dark-3);
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201,168,76,0.1);
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .hero-content { margin-left: 5%; margin-right: 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .privacy-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .enquiry-form { padding: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-accent-card { display: none; }
  .exp-quote { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1rem; }
  .stat-number { font-size: 1.2rem; }
}
