@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #c49a2a;
  --gold-light: #d4b04a;
  --gold-dark: #9a7a1e;
  --navy: #3d6b66;
  --navy-light: #528f87;
  --navy-dark: #243f3c;
  --bg-light: #f5f7f7;
  --text-dark: #1c3330;
  --text-muted: #6b8a86;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

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

/* Gradients */
.bg-gradient-navy {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.bg-gradient-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-bottom: 1px solid rgba(82, 143, 135, 0.3);
}
.site-header .navbar-brand img { height: 48px; }
.site-header .nav-link {
  color: rgba(255,255,255,0.7) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-header .nav-link:hover { color: var(--gold) !important; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy-dark) !important;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
}
.btn-gold:hover { opacity: 0.9; color: var(--navy-dark) !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.2); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7));
}
.hero-content { position: relative; z-index: 10; }
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 992px) { .hero-title { font-size: 3.75rem; } }
.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s;
}
.btn-hero-primary:hover { opacity: 0.9; color: var(--navy-dark); }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  background: transparent;
}
.btn-hero-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 576px) { .hero-features { grid-template-columns: repeat(3, 1fr); } }
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(61, 107, 102, 0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
}
.hero-feature-icon { color: var(--gold); flex-shrink: 0; }
.hero-feature-title { font-weight: 600; font-size: 0.875rem; color: #fff; margin: 0; }
.hero-feature-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ===== SECTIONS COMMON ===== */
.section-padding { padding: 5rem 1rem; }
@media (min-width: 768px) { .section-padding { padding: 7rem 2rem; } }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.75rem;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }

/* ===== ABOUT ===== */
.about-img-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}
.about-img-wrapper img { width: 100%; height: auto; display: block; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 1.875rem; font-weight: 700; color: var(--navy-dark); }
.about-badge .label { font-size: 0.875rem; color: rgba(36, 63, 60, 0.8); }
.stat-item { border-left: 2px solid var(--gold); padding-left: 1rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); }
.stat-label { font-size: 0.875rem; color: var(--text-muted); }

/* ===== SERVICES ===== */
.service-card {
  background: rgba(61, 107, 102, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: border-color 0.3s;
  height: 100%;
}
.service-card:hover { border-color: rgba(196, 154, 42, 0.3); }
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--navy-dark);
}
.service-card h3 { font-size: 1.25rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.step-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  color: var(--navy-dark);
}
.step-num {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== TEAM ===== */
.bg-muted-section { background: var(--bg-light); }
.team-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e5edec;
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: border-color 0.3s;
  height: 100%;
}
.team-card:hover { border-color: rgba(196, 154, 42, 0.3); }
.team-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.team-avatar-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 1.125rem;
}
.team-avatar-secondary {
  background: #e0edec;
  color: var(--text-dark);
  font-size: 0.875rem;
}
.team-photo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.team-photo-sm {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.team-name { font-weight: 600; font-size: 0.875rem; color: var(--text-dark); margin: 0; }
.team-role { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid #e5edec;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item.active { border-color: rgba(196, 154, 42, 0.3); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .chevron { transition: transform 0.3s; font-size: 1.25rem; }
.faq-item.active .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }

/* ===== CONTACT ===== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(196, 154, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-form-wrapper {
  background: rgba(61, 107, 102, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 2rem;
}
.contact-form-wrapper label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.375rem;
  display: block;
}
.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  background: rgba(61, 107, 102, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: box-shadow 0.2s;
}
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus { box-shadow: 0 0 0 2px rgba(196, 154, 42, 0.5); }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 1rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.9; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  padding: 3rem 1rem;
}
.site-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--gold); }
.footer-logo { height: 40px; width: auto; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-top: 1rem; max-width: 320px; }
.footer-heading { font-weight: 600; font-size: 0.875rem; color: #fff; margin-bottom: 1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.5rem; }
.footer-list li, .footer-contact-info { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
/* Form feedback */
.form-error-msg {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #ff6b7a;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-success-card {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,154,42,0.25);
  border-radius: 16px;
  gap: 1rem;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
}
.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}
.form-success-text {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin: 0;
}

/* Submit button spinner */
.btn-submit:disabled { opacity: 0.75; cursor: not-allowed; }
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
