:root {
  /* Indoor Jungle Color Palette - 5 primary colors */
  --jungle-green: #2d5a3d;
  --forest-deep: #1a3d2e;
  --leaf-bright: #6fbc6f;
  --earth-brown: #8b4513;
  --soft-cream: #f5f5dc;
  
  /* Light/Dark shades */
  --jungle-green-light: #4a7c5a;
  --jungle-green-dark: #1e4029;
  --forest-deep-light: #2e5c47;
  --forest-deep-dark: #0f2519;
  --leaf-bright-light: #8bc98b;
  --leaf-bright-dark: #4a9a4a;
  --earth-brown-light: #cd853f;
  --earth-brown-dark: #654321;
  --soft-cream-light: #fefefe;
  --soft-cream-dark: #e6e6cd;
  
  /* Conservative font sizes */
  --font-base: 16px;
  --font-small: 14px;
  --font-large: 18px;
  --font-xl: 24px;
  --font-xxl: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body { overflow-x: hidden;
  font-family: 'Arial', sans-serif;
  font-size: var(--font-base);
  line-height: 1.6;
  color: var(--forest-deep);
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--soft-cream-dark) 100%);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar {
  background: linear-gradient(90deg, var(--jungle-green) 0%, var(--forest-deep) 100%);
  padding: 0.75rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-large) !important;
  font-weight: bold;
  color: var(--soft-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--soft-cream) !important;
  font-size: var(--font-base);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--leaf-bright) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--jungle-green) 0%, var(--forest-deep) 50%, var(--leaf-bright-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../KOL_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--soft-cream);
}

.hero-title {
  font-size: var(--font-xxl);
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--font-xl);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-base);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.section-title {
  font-size: var(--font-xl);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--jungle-green);
}

.section-subtitle {
  font-size: var(--font-large);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--forest-deep);
}

.section-desc {
  font-size: var(--font-base);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--forest-deep-light);
}

/* About Section */
.about-section {
  background: linear-gradient(45deg, var(--soft-cream) 0%, var(--soft-cream-light) 100%);
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-name {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--jungle-green);
}

.feature-desc {
  font-size: var(--font-base);
  color: var(--forest-deep-light);
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--leaf-bright-light) 0%, var(--jungle-green-light) 100%);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-name {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--jungle-green);
}

.service-desc {
  font-size: var(--font-base);
  margin-bottom: 1rem;
  color: var(--forest-deep-light);
}

.service-features {
  font-size: var(--font-small);
  margin-bottom: 1.5rem;
  color: var(--forest-deep);
}

.service-price {
  font-size: var(--font-xl);
  font-weight: bold;
  color: var(--earth-brown);
}

/* Team Section */
.team-section {
  background: var(--soft-cream);
}

.team-card {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--leaf-bright);
}

.team-name {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--jungle-green);
}

.team-role {
  font-size: var(--font-base);
  color: var(--forest-deep-light);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(45deg, var(--jungle-green-light) 0%, var(--forest-deep-light) 100%);
  color: var(--soft-cream);
}

.review-card {
  background: rgba(255,255,255,0.1);
  padding: 2.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.review-text {
  font-size: var(--font-base);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-size: var(--font-base);
  font-weight: bold;
}

/* Contact Section */
.contact-section {
  background: var(--soft-cream-light);
}

.contact-form {
  background: white;
  padding: 3.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--leaf-bright-light);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-base);
}

.form-control:focus {
  border-color: var(--jungle-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 90, 61, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--jungle-green) 0%, var(--leaf-bright) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-size: var(--font-base);
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, var(--jungle-green-dark) 0%, var(--leaf-bright-dark) 100%);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--jungle-green-dark) 100%);
  color: var(--soft-cream);
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-size: var(--font-large);
  margin-bottom: 1rem;
  color: var(--leaf-bright);
}

.footer p, .footer a {
  font-size: var(--font-base);
  color: var(--soft-cream-dark);
}

.footer a:hover {
  color: var(--leaf-bright);
  text-decoration: none;
}

/* Blog Section */
.blog-section {
  background: var(--soft-cream);
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-title {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--jungle-green);
}

.blog-excerpt {
  font-size: var(--font-base);
  color: var(--forest-deep-light);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  background: var(--soft-cream-light);
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--leaf-bright-light);
  padding: 1rem;
  font-size: var(--font-base);
  font-weight: bold;
  color: var(--forest-deep);
  cursor: pointer;
}

.faq-answer {
  padding: 1rem;
  font-size: var(--font-base);
  color: var(--forest-deep-light);
}

/* Gallery Section */
.gallery-section {
  background: var(--jungle-green-light);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.p-4 { padding: 2rem; }

/* Space Page */
#space {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--leaf-bright-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xl);
  color: var(--jungle-green);
}

/* Breadcrumb */
.breadcrumb-img {
  max-height: 40px;
  margin: 1rem 0;
} 


/* 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;
    }
}
