/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ===== HEADER ===== */
.header-text { transition: color 0.3s; }
.header-sub { transition: color 0.3s; }
.header-link { transition: color 0.3s; }
.header-border { transition: border-color 0.3s; }

#site-header.scrolled .header-text { color: #071020; }
#site-header.scrolled .header-sub { color: #b08d3a; }
#site-header.scrolled .header-link { color: #0d2137; }
#site-header.scrolled .header-border { border-color: #0d2137/20; }
#site-header.scrolled { background: rgba(250, 246, 238, 0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(10, 31, 63, 0.08); }

/* ===== HERO ===== */
.hero { position: relative; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/18559615/pexels-photo-18559615.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
  z-index: 0;
}
.hero-shapes { position: absolute; inset: 0; z-index: 5; pointer-events: none; overflow: hidden; }
.shape { position: absolute; opacity: 0.12; }
.shape-circle-1 {
  width: 400px; height: 400px;
  border-radius: 50%;
  background: #c8a44e;
  top: -100px; right: -80px;
}
.shape-circle-2 {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: #c8a44e;
  bottom: 15%; left: 5%;
}
.shape-circle-3 {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: #ffffff;
  top: 30%; right: 15%;
}
.shape-square {
  width: 160px; height: 160px;
  background: #c8a44e;
  bottom: 10%; right: 5%;
  transform: rotate(45deg);
}
.shape-triangle {
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid #c8a44e;
  top: 20%; left: 8%;
  opacity: 0.08;
}

/* Hero animations */
.hero-badge { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.3s forwards; }
.hero h1 { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s 0.5s forwards; }
.hero p { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.7s forwards; }
.hero .flex-wrap { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.9s forwards; }
.stat-card { opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s forwards; }
.stat-card:nth-child(1) { animation-delay: 1.1s; }
.stat-card:nth-child(2) { animation-delay: 1.2s; }
.stat-card:nth-child(3) { animation-delay: 1.3s; }
.stat-card:nth-child(4) { animation-delay: 1.4s; }
.scroll-dot { animation: scrollBounce 1.5s infinite; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { top: 0; }
  50% { top: 100%; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #c8a44e;
  color: #071020;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(200, 164, 78, 0.35);
}
.btn-primary:hover {
  background: #e2be6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 164, 78, 0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a44e;
  background: rgba(200, 164, 78, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: #0d2137;
}

/* ===== STATS ===== */
.stat-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #e2be6a;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s ease;
}
.service-card:hover .service-card-bg {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 100%);
  border-color: rgba(200, 164, 78, 0.2);
}
.service-card > div { position: relative; z-index: 1; }

/* ===== AREA CHIPS ===== */
.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 63, 0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #0d2137;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(10, 31, 63, 0.04);
}
.area-chip:hover {
  background: #0d2137;
  color: #e2be6a;
  border-color: #0d2137;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 31, 63, 0.2);
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(10, 31, 63, 0.06);
  box-shadow: 0 4px 24px rgba(10, 31, 63, 0.06);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 31, 63, 0.12);
}
.testimonial-quote-mark {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(200, 164, 78, 0.15);
  pointer-events: none;
}

/* ===== CONTACT INFO ===== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* ===== FORM INPUTS ===== */
.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(10, 31, 63, 0.15);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: #0d2137;
  background: #faf6ee;
  transition: all 0.25s ease;
  outline: none;
}
.input-field:focus {
  border-color: #c8a44e;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(200, 164, 78, 0.12);
}
.input-field::placeholder { color: #9ca3af; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
.mobile-nav-link {
  display: block;
  color: #0d2137;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 31, 63, 0.08);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: #c8a44e; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .stat-card { padding: 16px; }
  .stat-number { font-size: 1.5rem; }
  .shape-circle-1 { width: 200px; height: 200px; }
  .shape-square { width: 80px; height: 80px; }
  .shape-triangle { border-left-width: 40px; border-right-width: 40px; border-bottom-width: 70px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 14px; }
}
