:root {
  /* Color Palette - Pastel High-Contrast Colors for Carbon Offset Theme */
  --primary-green: #6FCF97;
  --secondary-blue: #56CCF2;
  --accent-purple: #BB6BD9;
  --warning-yellow: #F2C94C;
  --success-mint: #27AE60;
  
  /* Light and Dark Shades */
  --light-green: #E8F8F0;
  --dark-green: #2D5016;
  --light-blue: #E6F7FF;
  --dark-blue: #1E3A8A;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  
  /* Typography */
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-max-width: 1200px;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: #ffffff;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

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

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  margin: 0 0.5rem;
  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(--light-green) 0%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--secondary-blue);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(45deg);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-green);
  border-radius: 50%;
  opacity: 0.1;
}

/* Section Spacing */
.section-padding {
  padding: var(--section-padding);
}

/* Card Styles */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

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

.card-header {
  background: var(--light-green);
  border-bottom: 2px solid var(--primary-green);
  border-radius: 12px 12px 0 0;
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: 2rem;
  border: 2px solid var(--light-green);
}

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

/* Feature Cards */
.feature-card {
  background: var(--light-blue);
  border-left: 4px solid var(--secondary-blue);
  padding: 2rem;
}

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

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

/* Review Cards */
.review-card {
  background: var(--light-gray);
  border-left: 4px solid var(--accent-purple);
  padding: 2rem;
  font-style: italic;
}

/* Price Plan Cards */
.price-card {
  border: 2px solid var(--primary-green);
  text-align: center;
}

.price-card.featured {
  border-color: var(--secondary-blue);
  transform: scale(1.05);
}

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

/* FAQ Cards */
.faq-card {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--warning-yellow);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

/* Process Steps */
.process-step {
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
  background: var(--light-green);
  border-radius: 12px;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: var(--primary-green);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

.form-control {
  border: 2px solid var(--light-green);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

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

.btn-primary {
  background: var(--primary-green);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

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

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

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
}

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

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

/* Blog Grid */
.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
  background: white;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-blue);
}

/* Career Items */
.career-item {
  background: var(--light-blue);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* Core Info Items */
.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 2px solid var(--light-green);
  border-radius: 12px;
}

/* Utilities */
.text-primary-green { color: var(--primary-green); }
.text-secondary-blue { color: var(--secondary-blue); }
.text-accent-purple { color: var(--accent-purple); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-blue { background-color: var(--light-blue); }

/* Icon Styles */
.fa-icon {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Breadcrumb */
.breadcrumb-img {
  height: 40px;
  width: auto;
}

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
