:root {
  /* Primary Harmonious Pastel Colors */
  --primary-cream: #f7f3e9;
  --primary-sage: #9caf88;
  --primary-dusty-rose: #d4a393;
  --primary-warm-gray: #beb5a7;
  --primary-antique-gold: #d4af37;
  
  /* Light & Dark Shades */
  --light-cream: #fefcf8;
  --dark-cream: #e6ddc6;
  --light-sage: #b5c5a3;
  --dark-sage: #7a916c;
  --light-dusty-rose: #e8c4b5;
  --dark-dusty-rose: #c1897a;
  --light-warm-gray: #d2ccc0;
  --dark-warm-gray: #a59d8e;
  --light-antique-gold: #e5c753;
  --dark-antique-gold: #b8951e;
  
  /* Typography */
  --font-primary: 'Georgia', serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  /* Base font size */
  --base-font-size: 16px;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--dark-warm-gray);
  background-color: var(--primary-cream);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-sage);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--dark-warm-gray);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--light-cream), var(--primary-cream));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-antique-gold) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--dark-sage) !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-antique-gold) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-sage) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../BEN_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--dark-sage);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-dusty-rose);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--dark-warm-gray);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--dark-sage);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--primary-dusty-rose);
}

.section-desc {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--dark-warm-gray);
}

/* About Section */
.about-section {
  background-color: var(--light-cream);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature h4 {
  color: var(--primary-antique-gold);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--primary-cream), var(--light-dusty-rose));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, var(--light-sage), var(--primary-dusty-rose));
  position: relative;
}

.service-content {
  padding: 2rem;
}

.service-name {
  font-size: 1.5rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--dark-warm-gray);
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 1.5rem;
  color: var(--primary-dusty-rose);
  font-style: italic;
}

.service-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-antique-gold);
  text-align: center;
}

/* Features Section */
.features-section {
  background-color: var(--light-sage);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-antique-gold);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--light-cream), var(--primary-cream));
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-card {
  background: white;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.priceplan-card:hover {
  transform: scale(1.05);
}

.priceplan-card.featured {
  border: 3px solid var(--primary-antique-gold);
}

.priceplan-name {
  font-size: 1.8rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.priceplan-price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-antique-gold);
  margin: 2rem 0;
}

.priceplan-features {
  color: var(--dark-warm-gray);
  margin-bottom: 2rem;
}

/* Team Section */
.team-section {
  background-color: var(--light-dusty-rose);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-dusty-rose));
  background-size: cover;
  background-position: center;
}

.team-name {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-antique-gold);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-cream), var(--light-warm-gray));
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  margin: 0 1rem;
}

.review-text {
  font-size: 1.1rem;
  color: var(--dark-warm-gray);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.review-author {
  font-weight: bold;
  color: var(--primary-antique-gold);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-sage);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-title {
  font-size: 1.4rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--light-cream), var(--primary-cream));
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-warm-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-antique-gold);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-antique-gold), var(--dark-antique-gold));
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background-color: var(--light-dusty-rose);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-8px);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-dusty-rose));
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--dark-warm-gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-antique-gold);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-cream);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--light-sage);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-sage);
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-sage);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--dark-warm-gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--light-cream), var(--light-dusty-rose));
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-dusty-rose));
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-sage), var(--dark-warm-gray));
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--light-antique-gold);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--light-cream);
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-antique-gold);
}

.footer-bottom {
  border-top: 1px solid var(--primary-warm-gray);
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  color: var(--light-warm-gray);
  font-size: 0.9rem;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.shape-blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-antique-gold);
  top: 10%;
  left: 10%;
}

.shape-blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-dusty-rose);
  top: 60%;
  right: 15%;
}

.shape-blob-3 {
  width: 100px;
  height: 100px;
  background: var(--primary-sage);
  bottom: 20%;
  left: 20%;
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item {
  color: var(--dark-warm-gray);
}

.breadcrumb-item.active {
  color: var(--primary-antique-gold);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; } 