:root {
  --primary: #1f3a2a;
  --primary-dark: #14271d;
  --secondary: #c9a86a;
  --accent: #e07a5f;
  --light: #f5f0eb;
  --dark: #202020;
  --white: #fff;
  --text: #3d3d3d;
  --text-light: #6f6f6f;
  --font-heading: 'Georgia', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--light);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
}

a {
  color: var(--primary);
  transition: var(--transition);
}
a:hover {
  color: var(--accent);
  text-decoration: none;
}

.btn {
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 0;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background-color: darken(var(--secondary), 10%);
  border-color: darken(var(--secondary), 10%);
}
.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

.section-padding {
  padding: 100px 0;
}

.overlay-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  background-blend-mode: overlay;
}

.text-gold {
  color: var(--secondary) !important;
}

.text-dark-green {
  color: var(--primary) !important;
}

.bg-light-cream {
  background-color: var(--light);
}

.bg-primary-green {
  background-color: var(--primary);
}

/* Header */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}
.top-bar a {
  color: var(--white);
  margin-right: 15px;
  text-decoration: none;
}
.top-bar a:hover {
  color: var(--secondary);
}
.top-bar .social-links a {
  margin-left: 10px;
}

.main-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.main-header .navbar-nav .nav-link {
  color: var(--text);
  font-weight: 600;
  padding: 15px 20px;
  transition: var(--transition);
}
.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
  color: var(--primary);
}
.navbar-brand img {
  height: 40px;
}
.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('');
  background-size: cover;
  background-position: center;
}
.hero .hero-content {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero .btn {
  margin: 0 10px;
}

/* Section Titles */
.section-title {
  position: relative;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.section-title .subtitle {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
}
.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.card img {
  border-radius: 0;
}
.card-body {
  padding: 30px;
}
.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
}
.card-text {
  color: var(--text-light);
}

/* Portfolio/Team */
.team-member .card-body {
  text-align: center;
}
.team-member .social-icons a {
  display: inline-block;
  margin: 0 5px;
  color: var(--primary);
  transition: var(--transition);
}
.team-member .social-icons a:hover {
  color: var(--accent);
}

/* Testimonials */
.testimonial-item {
  padding: 40px;
  background-color: var(--white);
  border-left: 5px solid var(--secondary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.testimonial-item blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-item .author {
  font-weight: 700;
  color: var(--primary);
}

/* Partnership logos */
.partners-section img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
  cursor: pointer;
}
.partners-section img:hover {
  filter: none;
  opacity: 1;
}

/* Form */
.form-control {
  border-radius: 0;
  background-color: var(--white);
  border: 1px solid #ced4da;
  padding: 12px 15px;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(201,168,106,0.25);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  font-weight: 600;
  color: var(--text);
}

/* Contact Info */
.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
}
.contact-info-item h5 {
  margin-bottom: 0;
}

/* Map */
.google-map iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Footer */
.main-footer {
  background-color: var(--primary-dark);
  color: var(--light);
  padding: 80px 0 0;
}
.main-footer h4 {
  color: var(--white);
  margin-bottom: 25px;
}
.main-footer .footer-links a {
  color: var(--light);
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}
.main-footer .footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}
.main-footer .social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  margin-right: 8px;
  transition: var(--transition);
}
.main-footer .social-icons a:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
}
.footer-bottom {
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.9rem;
  text-align: center;
}

/* Page Header (inner pages) */
.page-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  font-size: 3rem;
}
.page-header .breadcrumb {
  background-color: transparent;
  justify-content: center;
}
.page-header .breadcrumb li,
.page-header .breadcrumb li a {
  color: rgba(255,255,255,0.8);
}
.page-header .breadcrumb li.active {
  color: var(--secondary);
}

/* Pricing */
.pricing-card {
  border: 2px solid var(--secondary);
  border-radius: 0;
  padding: 20px;
  text-align: center;
}
.pricing-card.featured {
  background-color: var(--primary);
  color: var(--white);
}
.pricing-card.featured .price {
  color: var(--secondary);
}
.price {
  font-size: 3rem;
  font-weight: 700;
}
.price small {
  font-size: 1rem;
}

/* FAQ */
.accordion .card {
  border-bottom: 1px solid #e0e0e0;
}
.accordion .card-header {
  background-color: transparent;
  border-bottom: none;
}
.accordion .btn-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: none;
}
.accordion .btn-link:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Blog */
.blog-post img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog-post .post-meta {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Cookie Banner (dynamic) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 15px 0;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}
.cookie-banner .cookie-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cookie-banner p {
  margin: 0;
  padding-right: 15px;
}
.cookie-banner .cookie-buttons .btn {
  margin: 5px;
}

/* Notification (form success) */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 99999;
  display: none;
}
.notification.show {
  display: block;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .main-footer {
    padding: 50px 0 0;
  }
  .footer-bottom {
    text-align: center;
  }
  .top-bar {
    text-align: center;
  }
  .top-bar .social-links {
    float: none;
    margin-top: 5px;
  }
}

/* Utility */
.text-white {
  color: var(--white) !important;
}
.bg-gold {
  background-color: var(--secondary);
}
.bg-accent {
  background-color: var(--accent);
}

/* Custom SVG icon override - use FontAwesome */
.fa {
  font-style: normal;
}