:root {
  /* Primary Color Palette - 5 colors plus light/dark shades */
  --primary-green: #1c712d;
  --primary-green-light: #4db574;
  --primary-green-dark: #175e21;
  
  --secondary-orange: #ef611f;
  --secondary-orange-light: #fbac28;
  --secondary-orange-dark: #bb3e00;
  
  --accent-teal: #20b282;
  --accent-teal-light: #56c7b8;
  --accent-teal-dark: #085a42;
  
  --neutral-charcoal: #395074;
  --neutral-charcoal-light: #537182;
  --neutral-charcoal-dark: #2c3a44;
  
  --rust-brown: #783718;
  --rust-brown-light: #d1904e;
  --rust-brown-dark: #6b4a26;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-orange) 0%, var(--rust-brown) 100%);
  --gradient-tertiary: linear-gradient(135deg, var(--neutral-charcoal) 0%, var(--primary-green-dark) 100%);
  
  /* Typography */
  --font-size-base: 14px;
  --font-size-small: 16px;
  --font-size-large: 16px;
  --font-size-h1: 29px;
  --font-size-h2: 24px;
  --font-size-h3: 20px;
  --font-size-h4: 19px;
  --font-size-h5: 16px;
  --font-size-h6: 14px;
  --brand-font-size: 25.00px;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-charcoal);
  margin: 0;
  padding: 0;
}

/* Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1.17rem;
  color: var(--neutral-charcoal-dark);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 1.00rem;
  color: var(--neutral-charcoal-dark);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.64rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.59rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.37rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1.17rem;
  line-height: 1.6;
}

/* Header & Navigation */
.navbar-brand {
  font-size: var(--brand-font-size) !important;
  font-weight: 700;
  color: var(--primary-green) !important;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  color: var(--neutral-charcoal) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../VIB_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: white;
  font-size: var(--font-size-h1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-large);
}

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  border-radius: 50% 40% 30% 70%;
  background: var(--gradient-secondary);
  opacity: 0.1;
  animation: blob 20s infinite;
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e5e8 100%);
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2.20rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.17rem;
}

.service-price {
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background: white;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2.20rem;
}

.feature-item i {
  font-size: 3.09rem;
  color: var(--primary-green);
  margin-bottom: 1.17rem;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
  background: var(--gradient-tertiary);
  color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 2.20rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.17rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
  background: white;
}

.review-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2.20rem;
  border-left: 4px solid var(--primary-green);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: var(--gradient-primary);
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1.17rem;
}

.btn-primary {
  background: var(--secondary-orange);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary-orange-dark);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.accordion-item {
  border: none;
  margin-bottom: 1.17rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  background: white;
  border: none;
  font-weight: 600;
  color: var(--neutral-charcoal-dark);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-green);
  color: white;
}

/* Gallery */
.gallery-section {
  padding: 4rem 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Blog Section */
.blog-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.20rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: var(--neutral-charcoal-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h6 {
  color: var(--primary-green-light);
  margin-bottom: 1.17rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-green-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.18rem;
  margin-top: 2.19rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 1rem 0;
  background: #f8f9fa;
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
}

/* Utility Classes */
.section-padding {
  padding: 4rem 0;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Swiper Overrides */
.swiper-pagination-bullet-active {
  background: var(--primary-green) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-green) !important;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.09rem;
  color: white;
  text-align: center;
} 


/* 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;
    }
}
