/* Template 51 - Dark Navy Gold / Luxury Corporate */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:wght@400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #1E3A5F 0%, #C9A961 100%);
  --gradient-2: linear-gradient(135deg, #2C4870 0%, #D4AF37 100%);
  --gradient-3: linear-gradient(135deg, #0F2540 0%, #FFD700 100%);
  --gradient-4: linear-gradient(135deg, #1A2F4F 0%, #B8860B 100%);
  --gradient-5: linear-gradient(135deg, #152238 0%, #DAA520 100%);

  --bg-primary: #0A1628;
  --bg-secondary: #12213A;
  --glass-bg: rgba(201, 169, 97, 0.05);
  --glass-border: rgba(201, 169, 97, 0.2);

  --text-primary: #F5F5F5;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

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

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

/* Header with luxury corporate style */
.site-header {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #C9A961;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.site-logo a:hover {
  color: #D4AF37;
  transform: scale(1.03);
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A961, transparent);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: #C9A961;
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.section.head {
  padding: 9rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  color: #D4AF37;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  animation: luxuryFadeIn 1.2s ease;
}

@keyframes luxuryFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 1000px;
  line-height: 1.8;
  font-weight: 300;
}

/* Section Styling */
.section {
  padding: 6rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #C9A961;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}

.section header h2::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 2px;
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 2rem auto 0;
  font-weight: 300;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  backdrop-filter: blur(10px);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 6rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 300;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #C9A961;
  text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 1s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.15s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.45s;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.8rem;
  color: #D4AF37;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
