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

:root {
  --primary-dark: #0a0a0a;
  --primary-light: #ffffff;
  --accent-gold: #d4af37;
  --accent-gold-light: #e8c862;
  --accent-gold-dark: #b8941f;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-700: #495057;
  --gray-800: #343a40;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--primary-light);
  color: var(--primary-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* ================= */
/* HEADER & NAVIGATION */
/* ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition-smooth);
  transform: translateY(0);
}

header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(212, 175, 55, 0.3) 20%, 
    rgba(212, 175, 55, 0.3) 80%, 
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

header.scrolled::after {
  opacity: 1;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
}

header nav .logo-link {
  display: flex;
  align-items: center;
  z-index: 10;
  position: relative;
}

header nav img {
  height: 55px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

header nav img:hover {
  transform: scale(1.05) translateY(-2px);
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-dark);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  border-radius: 50%;
  z-index: -1;
}

.nav-links a:hover {
  color: var(--accent-gold-dark);
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover::after {
  width: 120%;
  height: 120%;
}

.nav-links a.active::before {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--primary-dark);
  transition: var(--transition-smooth);
  border-radius: 2px;
  transform-origin: center;
}

/* ================= */
/* HERO SECTION */
/* ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: pulseGlow 10s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: gridMove 20s linear infinite;
  opacity: 0.4;
}

.hero .inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
  animation: fadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero button,
.cta-button {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: var(--primary-dark);
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(212, 175, 55, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero button::after,
.cta-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.8s;
}

.hero button:hover,
.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(212, 175, 55, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.hero button:hover::before,
.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.hero button:hover::after,
.cta-button:hover::after {
  transform: translateX(100%) skewX(-15deg);
}

.hero button:active,
.cta-button:active {
  transform: translateY(-2px) scale(0.98);
}

/* ================= */
/* SECTIONS */
/* ================= */
.section {
  padding: clamp(4rem, 10vw, 8rem) 2rem;
  position: relative;
}

.section.alternate {
  background: linear-gradient(180deg, var(--gray-100) 0%, #ffffff 100%);
  position: relative;
}

.section.alternate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gray-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.section p {
  color: var(--gray-700);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ================= */
/* SERVICES GRID */
/* ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  perspective: 1000px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow: 
    0 20px 60px rgba(212, 175, 55, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

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

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  transition: var(--transition-fast);
  position: relative;
  display: inline-block;
}

.service-card:hover h3 {
  color: var(--accent-gold-dark);
  transform: translateX(5px);
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  text-align: left;
  margin: 0;
}

/* ================= */
/* VALUES GRID */
/* ================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 12px;
  transition: var(--transition-smooth);
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--accent-gold);
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
}

.value-card:hover h3 {
  transform: scale(1.05);
  color: var(--accent-gold-dark);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin: 0;
  position: relative;
  z-index: 1;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(212, 175, 55, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-gold);
}

/* ================= */
/* CONTACT SECTION */
/* ================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info h2 {
  text-align: left;
  transform: none;
  left: 0;
  margin-bottom: 1.5rem;
}

.contact-info h2::after {
  left: 0;
  transform: none;
}

.contact-info p {
  text-align: left;
  margin-bottom: 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-details p {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
  border-left: 3px solid var(--accent-gold);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.contact-details p:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
  transform: translateX(5px);
}

.contact-details strong {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details a {
  color: var(--accent-gold-dark);
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-details a:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
  display: inline-block;
}

/* ================= */
/* FORMS */
/* ================= */
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

form h2 {
  text-align: left;
  transform: none;
  left: 0;
  margin-bottom: 1rem;
}

form h2::after {
  left: 0;
  transform: none;
}

input, textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  transition: var(--transition-smooth);
  position: relative;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 
    0 0 0 4px rgba(212, 175, 55, 0.1),
    0 4px 20px rgba(212, 175, 55, 0.15);
  background: #ffffff;
  transform: translateY(-2px);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

button.submit-btn {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gray-800) 100%);
  color: var(--primary-light);
  padding: 1.2rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

button.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

button.submit-btn span {
  position: relative;
  z-index: 1;
}

button.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(212, 175, 55, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.2);
}

button.submit-btn:hover::before {
  transform: translateY(0);
}

button.submit-btn:active {
  transform: translateY(-1px);
}

/* ================= */
/* FOOTER */
/* ================= */
footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #000000 100%);
  color: var(--primary-light);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  box-shadow: 0 0 20px var(--accent-gold);
}

footer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-contact h3 {
  color: var(--accent-gold);
}

.footer-contact p {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-contact p:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(3px);
}

.footer-contact a {
  color: var(--accent-gold-light);
  transition: var(--transition-fast);
  position: relative;
}

.footer-contact a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold-light);
  transition: width 0.3s ease;
}

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

.footer-contact a:hover::after {
  width: 100%;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 1rem;
}

.footer-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-links a:hover::after {
  width: 80%;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ================= */
/* LEGAL PAGES */
/* ================= */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
  transform: none;
  left: 0;
}

.legal-content h2::after {
  display: none;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-content p {
  text-align: left;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-content a {
  color: var(--accent-gold);
  text-decoration: underline;
  transition: var(--transition-fast);
}

.legal-content a:hover {
  color: var(--accent-gold-light);
}

/* ================= */
/* ANIMATIONS */
/* ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ================= */
/* SCROLL ANIMATIONS */
/* ================= */
@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .value-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
  }
  
  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3) { animation-delay: 0.3s; }
  .service-card:nth-child(4) { animation-delay: 0.4s; }
  .service-card:nth-child(5) { animation-delay: 0.5s; }
  .service-card:nth-child(6) { animation-delay: 0.6s; }
  
  .value-card:nth-child(1) { animation-delay: 0.1s; }
  .value-card:nth-child(2) { animation-delay: 0.2s; }
  .value-card:nth-child(3) { animation-delay: 0.3s; }
  .value-card:nth-child(4) { animation-delay: 0.4s; }
}

/* ================= */
/* CUSTOM SCROLLBAR */
/* ================= */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 6px;
  border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-gold-light), var(--accent-gold));
}

/* ================= */
/* SELECTION */
/* ================= */
::selection {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

::-moz-selection {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

/* ================= */
/* RESPONSIVE */
/* ================= */
@media (max-width: 768px) {
  header nav {
    padding: 0.8rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    align-items: flex-start;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
      radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05), transparent 50%),
      radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.05), transparent 50%);
    pointer-events: none;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    padding: 1rem 0;
  }

  .nav-links a::before {
    left: 0;
    transform: translateX(0);
    width: 3px;
    height: 100%;
  }

  .nav-links a:hover::before,
  .nav-links a.active::before {
    width: 3px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero {
    min-height: 90vh;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p:hover {
    transform: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .service-card,
  .value-card {
    padding: 2rem;
  }

  header nav img {
    height: 45px;
  }

  .hero button,
  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
}

/* ================= */
/* PREMIUM TOUCHES */
/* ================= */
.service-card h3::before,
.value-card h3::before {
  content: '◆';
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--accent-gold);
  font-size: 0.8em;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-smooth);
}

.service-card:hover h3::before,
.value-card:hover h3::before {
  opacity: 1;
  transform: translateX(0);
}

/* Logo animation on hover */
@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  }
  50% {
    filter: drop-shadow(0 2px 16px rgba(212, 175, 55, 0.6));
  }
}

header nav img:hover {
  animation: logoGlow 2s ease-in-out;
}

/* Smooth page transitions */
@media (prefers-reduced-motion: no-preference) {
  body {
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --accent-gold: #d4af37;
    --primary-dark: #000000;
  }
  
  .hero {
    background: #000000;
  }
  
  .service-card,
  .value-card {
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  header {
    position: relative;
    box-shadow: none;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  footer {
    background: #ffffff;
    color: #000000;
    border-top: 2px solid #000000;
  }
}