/* Bootstrap 5 CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
/* FontAwesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
/* Lightbox2 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');
/* Sal.js Animation Library */
@import url('https://unpkg.com/sal.js@0.8.5/dist/sal.css');

/* Color Palette - Eco-friendly Theme */
:root {
  --primary-green: #1ec16b;
  --primary-green-light: #74e2a2;
  --primary-green-dark: #107f36;
  --secondary-blue: #057bdf;
  --secondary-blue-light: #66d6f0;
  --secondary-blue-dark: #02628d;
  --accent-orange: #f84e11;
  --accent-orange-light: #ffb487;
  --accent-orange-dark: #c94216;
  --neutral-gray: #696d76;
  --neutral-gray-light: #fbfbfb;
  --neutral-gray-dark: #2e3645;
  --pure-white: #ffffff;
  --off-white: #f9fafb;
  --charcoal: #1a2535;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--pure-white);
}

/* Typography - Conservative Sizing */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
}

p {
  font-size: 1rem;
  color: var(--neutral-gray-dark);
  margin-bottom: 1rem;
}

/* Header */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.navbar-nav .nav-link {
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--neutral-gray-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
    padding-top: 250px;
}

.hero-image {
  z-index: 1;
}

/* Decorative Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-green-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--secondary-blue-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

/* Service Cards */
.service-card {
  background: var(--pure-white);
  border-left: 4px solid var(--primary-green);
}

.service-price {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Feature Cards */
.feature-card {
  background: var(--off-white);
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--pure-white);
  text-align: center;
  position: relative;
}

.price-card.featured {
  border: 3px solid var(--primary-green);
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: var(--pure-white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Team Cards */
.team-card {
  text-align: center;
  background: var(--pure-white);
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green-light);
}

/* Review Cards */
.review-card {
  background: var(--off-white);
  border-left: 4px solid var(--secondary-blue);
}

.review-stars {
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--pure-white);
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-orange);
}

/* Contact Form */
.contact-form {
  background: var(--off-white);
  padding: 3rem;
  border-radius: 12px;
}

.form-control {
  border: 2px solid var(--neutral-gray-light);
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(41, 218, 114, 0.25);
}

/* Footer */
.footer {
  background-color: var(--charcoal);
  color: var(--pure-white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-green-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-green-light);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--off-white);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Utility Classes */
.text-primary-green {
  color: var(--primary-green);
}

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

.text-secondary-blue {
  color: var(--secondary-blue);
}

.bg-secondary-blue {
  background-color: var(--secondary-blue);
}

.text-accent-orange {
  color: var(--accent-orange);
}

.bg-accent-orange {
  background-color: var(--accent-orange);
}

/* Animation Respect for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
