:root {
  --navy: #0a1f3d;
  --navy-light: #143266;
  --gold: #c9a961;
  --gold-light: #e6c98a;
  --cream: #faf7f2;
  --slate: #1e293b;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

.font-display { font-family: 'Playfair Display', serif; }

.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.bg-navy { background-color: var(--navy); }
.bg-navy-light { background-color: var(--navy-light); }
.bg-gold { background-color: var(--gold); }
.bg-cream { background-color: var(--cream); }
.border-gold { border-color: var(--gold); }

/* Hero gradient & pattern */
.hero-bg {
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(20, 50, 102, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, #0a1f3d 0%, #143266 50%, #0a1f3d 100%);
}

.hero-pattern {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Gold gradient text */
.gold-gradient {
  background: linear-gradient(135deg, #e6c98a 0%, #c9a961 50%, #a8893f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Service cards */
.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(10, 31, 61, 0.25);
}

/* Check list items */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  transition: transform 0.2s ease;
}

.check-item:hover { transform: translateX(4px); }

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  margin-top: 2px;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Section divider */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* Navigation */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

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

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

/* Stats counter */
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

/* Fade in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Form styles */
.form-input {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 15px;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
}

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

/* Mobile menu */
.mobile-menu { transition: max-height 0.3s ease, opacity 0.3s ease; max-height: 0; opacity: 0; overflow: hidden; }
.mobile-menu.open { max-height: 500px; opacity: 1; }

/* Floating WhatsApp */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-contact:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Avatar/Initials circle */
.avatar-circle {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 4px solid white;
}

/* Decorative quote */
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
}

@media (max-width: 768px) {
  .avatar-circle { width: 110px; height: 110px; font-size: 42px; }
  .quote-mark { font-size: 80px; }
}
