@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@200;300;400;500;600;700&display=swap');

:root {
  --primary: #0a1628;
  --primary-light: #122040;
  --secondary: #1a2d4a;
  --accent: #C8A45B;
  --accent-dark: #b08d3e;
  --bg-light: #f7f8fa;
  --text-dark: #0a1628;
  --text-muted: #5a7186;
  --border-color: #e2e6ea;
  --white: #ffffff;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: rgba(200, 164, 91, 0.3);
  color: var(--primary);
}

/* Navbar */
.navbar-custom {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.navbar-custom .navbar-brand { padding: 0; }
.navbar-custom .navbar-logo { height: 48px; width: auto; }
.navbar-custom .nav-link {
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active { color: var(--accent); }
.navbar-custom .btn-consultation {
  border: 1px solid rgba(10, 22, 40, 0.4);
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.75rem;
  text-decoration: none;
  transition: all 0.3s;
}
.navbar-custom .btn-consultation:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.85));
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 2rem 1rem;
}
.hero-section h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero-section h1 { font-size: 4.5rem; }
}
.hero-section p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 7rem 1rem 5rem;
  text-align: center;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.7;
}

/* Buttons */
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
}
.btn-outline-light-custom {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* Sections */
.section-padding { padding: 5rem 0; }
@media (min-width: 768px) { .section-padding { padding: 7rem 0; } }
.bg-light-custom { background: var(--bg-light); }
.bg-primary-custom {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  color: var(--white);
}

/* Accent divider */
.accent-bar {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.accent-bar-center {
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.accent-bar-left { margin: 0 0 1.5rem; }

/* Icon circles */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle-accent { background: rgba(200, 164, 91, 0.1); color: var(--accent); }
.icon-circle-outline { border: 1px solid rgba(200, 164, 91, 0.4); color: var(--accent); }
.icon-circle-lg { width: 64px; height: 64px; }

/* Cards */
.card-custom {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  padding: 2rem;
  transition: all 0.5s;
  box-shadow: 0 4px 20px -4px rgba(10, 22, 40, 0.06);
}
.card-custom:hover {
  box-shadow: 0 20px 50px -12px rgba(10, 22, 40, 0.12), 0 0 0 1px rgba(200, 164, 91, 0.1);
  border-color: rgba(200, 164, 91, 0.3);
  transform: translateY(-4px);
}
.card-custom-accent { border-top: 2px solid var(--accent); }

/* Service row */
.service-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  background: var(--white);
  margin-bottom: 1.5rem;
  transition: all 0.5s;
  box-shadow: 0 4px 20px -4px rgba(10, 22, 40, 0.06);
}
.service-row:hover {
  border-color: rgba(200, 164, 91, 0.3);
  box-shadow: 0 20px 50px -12px rgba(10, 22, 40, 0.12);
  transform: translateY(-2px);
}
@media (max-width: 767px) { .service-row { flex-direction: column; } }

/* Timeline */
.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.timeline-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  margin-bottom: 3rem;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200,164,91,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  border: 4px solid var(--white);
  color: var(--accent);
}

/* Step number */
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(200, 164, 91, 0.3);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  color: var(--white);
}
.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.9));
}
.cta-section .cta-content { position: relative; z-index: 2; }
.cta-section h2 { font-weight: 300; font-size: 2.5rem; }

/* Footer */
.footer-custom {
  background: linear-gradient(180deg, var(--primary), #060d18);
  color: var(--white);
  padding: 5rem 0 0;
}
.footer-custom .footer-top-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 91, 0.4), transparent);
  margin-bottom: 4rem;
}
.footer-custom h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-custom .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.footer-custom .footer-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 1.25rem;
}
.footer-custom p, .footer-custom li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.55;
}
.footer-custom a {
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-custom a:hover { color: var(--accent); }
.footer-custom ul { list-style: none; padding: 0; }
.footer-custom ul li { margin-bottom: 0.6rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4rem;
  padding: 1.5rem 0;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.3;
}

/* Contact form */
.form-control-custom {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,164,91,0.15);
}

/* Alert */
.alert-success-custom {
  background: rgba(200, 164, 91, 0.1);
  border: 1px solid rgba(200, 164, 91, 0.3);
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
}

/* Map placeholder */
.map-placeholder {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Helpers */
.text-accent { color: var(--accent) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.text-muted-custom { color: var(--text-muted); }
.section-padding h2 {
  font-weight: 300;
  font-size: 2.25rem;
  letter-spacing: 0.02em;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: rgba(200, 164, 91, 0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(200, 164, 91, 0.6); }

html { scroll-behavior: smooth; }
