@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Color Palette Variables */
:root {
  --primary-green: #38651b;
  --secondary-green: #499412;
  --accent-sage: #82aa71;
  --warm-terracotta: #a64a3c;
  --soft-cream: #fff8e5;
  
  /* Light shades */
  --light-green: #709043;
  --light-sage: #a7b69c;
  --light-terracotta: #cb7c6d;
  --light-cream: #faf8f1;
  
  /* Dark shades */
  --dark-green: #224007;
  --dark-sage: #607b51;
  --dark-terracotta: #812b33;
  --dark-cream: #cfc5b6;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  --gradient-accent: linear-gradient(135deg, var(--accent-sage), var(--light-sage));
  --gradient-warm: linear-gradient(135deg, var(--warm-terracotta), var(--light-terracotta));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20.00px;
  line-height: 1.6;
  color: var(--dark-green);
  background-color: var(--soft-cream);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1 {
  font-size: 2.31rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.07rem;
}

h2 {
  font-size: 1.92rem;
  font-weight: 600;
  color: var(--secondary-green);
  margin-bottom: 0.86rem;
}

h3 {
  font-size: 1.53rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.71rem;
}

h4 {
  font-size: 1.34rem;
  font-weight: 500;
  color: var(--secondary-green);
  margin-bottom: 0.74rem;
}

p {
  font-size: 1.11rem;
  margin-bottom: 1.07rem;
  color: var(--dark-green);
}

/* Header & Navigation */
.navbar {
  background: var(--gradient-primary) !important;
  padding: 1rem 0;
  box-shadow: 0 18px 13px rgba(55, 105, 35, 0.10);
}

.navbar-brand {
  font-size: 1.53rem !important;
  font-weight: 700;
  color: var(--soft-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--soft-cream) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-sage) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--soft-cream);
}

.hero-title {
  font-size: 2.53rem;
  font-weight: 700;
  margin-bottom: 1.07rem;
}

.hero-subtitle {
  font-size: 1.34rem;
  margin-bottom: 1.63rem;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.09rem;
}

.section-subtitle {
  font-size: 1.21rem;
  color: var(--accent-sage);
  text-align: center;
  margin-bottom: 0.74rem;
}

/* Services */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 7px 20px rgba(39, 81, 25, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 10px 30px rgba(35, 88, 18, 0.15);
  border-color: var(--accent-sage);
}

.service-price {
  font-size: 1.92rem;
  font-weight: 700;
  color: var(--warm-terracotta);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.3rem 0;
  color: var(--dark-green);
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary-green);
  margin-right: 0.5rem;
}

/* Team */
.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--accent-sage);
  display: block;
}

/* Reviews Slider */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 17px;
  box-shadow: 0 6px 20px rgba(36, 59, 22, 0.10);
  text-align: center;
  margin: 1rem;
}

.review-stars {
  color: var(--warm-terracotta);
  font-size: 1.34rem;
  margin-bottom: 1.07rem;
}

/* Process Steps */
.process-step {
  background: white;
  padding: 2rem;
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 7px 20px rgba(22, 55, 11, 0.10);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.07rem;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(42, 66, 18, 0.10);
}

.faq-question {
  background: var(--gradient-accent);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: var(--dark-green);
}

.faq-question.active + .faq-answer {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

/* Gallery */
.gallery-item {
  margin-bottom: 1.07rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(56, 83, 22, 0.10);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(49, 69, 22, 0.10);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 1.11rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-green);
  box-shadow: 0 0 0 0.2rem rgba(93, 136, 28, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* Footer */
footer {
  background: var(--gradient-primary);
  color: var(--soft-cream);
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--soft-cream);
  margin-bottom: 1.07rem;
  font-size: 1.21rem;
}

.footer-section a {
  color: var(--light-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--soft-cream);
}

/* Blog */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(36, 71, 22, 0.10);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Breadcrumbs */
.breadcrumb-image {
  padding: 2rem 0;
  text-align: center;
}

.breadcrumb-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--accent-sage);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(67, 105, 34, 0.15);
}

.price-card.featured {
  border-color: var(--warm-terracotta);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.53rem;
  font-weight: 700;
  color: var(--warm-terracotta);
  margin: 1rem 0;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.21rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--warm-terracotta);
}

/* Career */
.career-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--accent-sage);
  box-shadow: 0 5px 15px rgba(38, 78, 24, 0.10);
  margin-bottom: 1.63rem;
}

/* Core Info */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(59, 84, 30, 0.10);
}

/* Utilities */
.text-primary-green { color: var(--primary-green) !important; }
.text-secondary-green { color: var(--secondary-green) !important; }
.text-accent-sage { color: var(--accent-sage) !important; }
.text-warm-terracotta { color: var(--warm-terracotta) !important; }

.bg-primary-green { background-color: var(--primary-green) !important; }
.bg-secondary-green { background-color: var(--secondary-green) !important; }
.bg-soft-cream { background-color: var(--soft-cream) !important; }

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--soft-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.34rem;
  color: var(--primary-green);
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
