:root {
  /* Primary Color Palette - 5 colors plus light/dark shades */
  --primary-forest: #3b6740;
  --primary-forest-light: #537c55;
  --primary-forest-dark: #1d4028;
  
  --primary-gold: #d9a02a;
  --primary-gold-light: #f3db78;
  --primary-gold-dark: #b58f1d;
  
  --primary-burgundy: #73161c;
  --primary-burgundy-light: #b4435c;
  --primary-burgundy-dark: #5b202a;
  
  --primary-cream: #e2dcbf;
  --primary-cream-light: #faf8f0;
  --primary-cream-dark: #fbf9f5;
  
  --primary-sage: #879e6e;
  --primary-sage-light: #c6ccbb;
  --primary-sage-dark: #748465;
  
  /* Text Colors */
  --text-primary: #181818;
  --text-secondary: #626262;
  --text-light: #ffffff;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  font-size: 20.00px;
}

/* Conservative font sizes */
h1 { font-size: 2.31rem; font-weight: 600; }
h2 { font-size: 1.90rem; font-weight: 600; }
h3 { font-size: 1.52rem; font-weight: 500; }
h4 { font-size: 1.39rem; font-weight: 500; }
h5 { font-size: 1.13rem; font-weight: 500; }
h6 { font-size: 1.13rem; font-weight: 500; }

.navbar-brand {
  font-size: 1.52rem !important;
  font-weight: 600;
  color: var(--primary-forest) !important;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--primary-cream), var(--primary-cream-light));
  box-shadow: 0 7px 10px rgba(32, 71, 40, 0.10);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}

.navbar {
  padding: 0.8rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-forest) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-sage));
  color: var(--text-light);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../YEH_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title-1 {
  font-size: 3.12rem;
  font-weight: 700;
  margin-bottom: 1.58rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle-1 {
  font-size: 1.39rem;
  margin-bottom: 1.21rem;
  opacity: 0.95;
}

.hero-desc-1 {
  font-size: 1.13rem;
  margin-bottom: 2.15rem;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3.23rem;
}

.section-title h2 {
  color: var(--primary-forest);
  margin-bottom: 1.21rem;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.13rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--primary-cream);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 9px 18px rgba(45, 84, 51, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(34, 75, 35, 0.15);
}

.feature-item i {
  font-size: 2.58rem;
  color: var(--primary-gold);
  margin-bottom: 1.58rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, var(--primary-cream-light), white);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 11px 30px rgba(47, 87, 53, 0.10);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(50, 102, 60, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.58rem;
}

.service-price {
  font-size: 1.90rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin-top: 1.11rem;
}

/* Team Section */
.team {
  background: var(--primary-forest);
  color: var(--text-light);
}

.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-gold);
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.05);
}

/* Reviews/Testimonials */
.reviews {
  background: linear-gradient(135deg, var(--primary-sage-light), var(--primary-cream));
}

.review-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  margin: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 1.13rem;
  margin-bottom: 1.58rem;
  color: var(--text-secondary);
}

.review-author {
  font-weight: 600;
  color: var(--primary-forest);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-burgundy-light));
  color: var(--text-light);
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 3rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-form .form-control {
  background: rgba(255,255,255,0.9);
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.21rem;
}

.contact-form .btn {
  background: var(--primary-gold);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: var(--primary-gold-light);
  transform: translateY(-2px);
}

/* Blog Section */
.blog {
  background: var(--primary-cream);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
.faq {
  background: white;
}

.faq-item {
  margin-bottom: 1.21rem;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-cream);
  padding: 1.2rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-forest);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-cream-dark);
}

.faq-answer {
  padding: 1.2rem;
  background: white;
  color: var(--text-secondary);
  border-top: 1px solid #f0e7e9;
}

/* Gallery */
.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--primary-forest);
  color: var(--text-light);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1.58rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.12rem;
  padding-top: 2.06rem;
  text-align: center;
}

/* Utilities */
.text-gold { color: var(--primary-gold); }
.text-forest { color: var(--primary-forest); }
.bg-cream { background: var(--primary-cream); }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Swiper Styles */
.swiper-pagination-bullet-active {
  background: var(--primary-gold) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-gold) !important;
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
