:root {
  /* Primary Color Palette - 5 main colors with light/dark variations */
  --primary-green: #2d8f47;
  --primary-green-light: #4caf63;
  --primary-green-dark: #1e5e32;
  
  --secondary-blue: #1976d2;
  --secondary-blue-light: #42a5f5;
  --secondary-blue-dark: #0d47a1;
  
  --accent-orange: #ff7043;
  --accent-orange-light: #ff8a65;
  --accent-orange-dark: #d84315;
  
  --neutral-gray: #546e7a;
  --neutral-gray-light: #78909c;
  --neutral-gray-dark: #37474f;
  
  --earth-brown: #8d6e63;
  --earth-brown-light: #a1887f;
  --earth-brown-dark: #5d4037;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
  --gradient-accent: linear-gradient(135deg, var(--accent-orange), var(--earth-brown));
  --gradient-overlay: linear-gradient(rgba(45, 143, 71, 0.8), rgba(25, 118, 210, 0.8));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--neutral-gray-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .swiper-slide {
    transition: none !important;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--neutral-gray-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Header & Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--neutral-gray-dark) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  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('../HER_images/hero-bg.webp') center/cover;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-large);
  margin-bottom: 2.5rem;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 15%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.section-subtitle {
  text-align: center;
  color: var(--neutral-gray);
  margin-bottom: 1.5rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--neutral-gray-dark);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--neutral-gray);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-orange);
}

/* About Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(45, 143, 71, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--neutral-gray-dark);
}

.feature-desc {
  color: var(--neutral-gray);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-green-light);
}

.team-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-gray-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--neutral-gray);
  font-size: var(--font-size-small);
}

/* Reviews/Testimonials */
.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 1rem;
}

.review-text {
  font-style: italic;
  font-size: var(--font-size-large);
  color: var(--neutral-gray-dark);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
}

/* Contact Form */
.contact-form {
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: var(--font-size-base);
  background: rgba(255, 255, 255, 0.9);
  transition: background 0.3s ease;
}

.form-control:focus {
  background: white;
  box-shadow: 0 0 0 0.2rem rgba(45, 143, 71, 0.25);
}

.btn-primary {
  background: var(--accent-orange);
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent-orange-dark);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--neutral-gray-dark);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-gray-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--neutral-gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--primary-green-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--neutral-gray-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-green-light);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-green-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: rgba(45, 143, 71, 0.05);
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}

/* Additional Page Sections */
.additional-section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.additional-section:nth-child(even) {
  background: rgba(45, 143, 71, 0.02);
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.element-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.element-title {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.element-desc {
  color: var(--neutral-gray);
  font-size: var(--font-size-small);
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-align: center;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--primary-green);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-green);
}

/* Lightbox Customization */
.lb-data .lb-details {
  color: white;
}

.lb-data .lb-caption {
  font-size: var(--font-size-base);
}

/* Utilities */
.text-primary {
  color: var(--primary-green) !important;
}

.bg-primary {
  background: var(--gradient-primary) !important;
}

.bg-light-green {
  background: rgba(45, 143, 71, 0.05) !important;
}

.rounded-lg {
  border-radius: 15px !important;
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
