:root {
  --navy: #1d2c5a;
  --gold: #d4a574;
  --blue: #1187be;
  --linen: #edf8fe;
  --charcoal: #2b2b2b;
  --sage: #1187be;
  --light-bg: #f0f6fb;
  --border-color: #d0e8f2;
}

body {
  background-color: var(--linen);
  color: var(--charcoal);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: 0.5px;
}

p {
  color: var(--charcoal);
  line-height: 1.7;
  opacity: 0.9;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-brand img {
  height: 72px;
  width: auto;
}

/* Custom Buttons */
.btn-taupe {
  background-color: var(--navy);
  border-color: var(--navy);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-taupe:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 135, 190, 0.3);
}

.btn-outline-taupe {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-taupe:hover {
  background-color: var(--navy);
  color: white;
  transform: translateY(-2px);
}

/* Hero */
.hero-accent {
  color: var(--gold);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--charcoal);
}

.trust-item::before {
  content: "✓";
  color: var(--sage);
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.hero-image-wrapper {
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section backgrounds */
.bg-cream {
  background-color: var(--linen) !important;
}
.bg-light-section {
  background-color: var(--light-bg) !important;
}
.text-light-text {
  color: var(--charcoal);
  opacity: 0.85;
}

/* Cards */
.card-subtle {
  background-color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.card-subtle:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card-border-taupe {
  border-top: 4px solid var(--gold) !important;
}

.card-border-gold {
  border-top: 4px solid var(--sage) !important;
}

.pillar-card {
  text-align: center;
  border-top: 4px solid var(--gold);
}

.pillar-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-badge {
  background-color: var(--light-bg);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
}

.concierge-callout {
  background-color: var(--sage);
  color: white;
  border-radius: 6px;
  font-style: italic;
  font-weight: 300;
}

/* Guarantee Section */
.guarantee-section {
  background: linear-gradient(135deg, #f0f6fb 0%, #edf8fe 100%);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  text-align: center;
}

/* Team Cards */
.team-card {
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.team-image {
  height: 250px;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  color: var(--sage);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Steps */
.step-card {
  position: relative;
  text-align: center;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 2rem 1.5rem 1.5rem !important;
  counter-increment: steps;
}

.step-number {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background-color: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Services Grid */
.service-item {
  background-color: white;
  border-left: 4px solid var(--sage);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

/* Reviews */
.review-card {
  background-color: white;
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-quote {
  font-style: italic;
  line-height: 1.8;
}

.review-location {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--navy);
  color: white;
  border-top: 1px solid var(--border-color);
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

.login-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: white;
}
