:root {
  /* Sustainable Sportswear Brand Color Palette */
  --primary-green: #4CAF50;
  --primary-green-light: #81C784;
  --primary-green-dark: #388E3C;
  
  --accent-blue: #2196F3;
  --accent-blue-light: #64B5F6;
  --accent-blue-dark: #1976D2;
  
  --earth-brown: #8D6E63;
  --earth-brown-light: #A1887F;
  --earth-brown-dark: #5D4037;
  
  --natural-beige: #F5F5DC;
  --natural-beige-light: #FAFAFA;
  --natural-beige-dark: #E0E0E0;
  
  --energy-orange: #FF9800;
  --energy-orange-light: #FFB74D;
  --energy-orange-dark: #F57C00;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
    overflow-x: hidden;
}

/* Conservative font sizes for navbar brand */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
  color: var(--primary-green-dark);
}

/* Conservative heading sizes */
h1 {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--primary-green-dark);
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--earth-brown-dark);
}

h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--natural-beige-light) 0%, var(--natural-beige) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-green-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--accent-blue-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

/* About Section */
#about {
  background-color: var(--natural-beige-light);
  padding: 80px 0;
}

.about-feature {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

/* Services Section */
#services {
  background-color: white;
  padding: 80px 0;
}

.service-card {
  background: var(--natural-beige-light);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-green);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-top: 20px;
}

/* Features Section */
#features {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--accent-blue-light) 100%);
  padding: 80px 0;
  color: white;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

/* Price Plan Section */
#priceplan {
  background-color: var(--natural-beige-light);
  padding: 80px 0;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--primary-green);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--natural-beige);
}

/* Team Section */
#team {
  background-color: white;
  padding: 80px 0;
}

.team-member {
  text-align: center;
  padding: 20px;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-green-light);
}

/* Reviews Section */
#reviews {
  background-color: var(--natural-beige-light);
  padding: 80px 0;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.review-author {
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-top: 20px;
}

/* Case Study Section */
#casestudy {
  background-color: white;
  padding: 80px 0;
}

.case-study-item {
  background: var(--natural-beige-light);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
}

/* Process Section */
#process {
  background: linear-gradient(135deg, var(--earth-brown-light) 0%, var(--earth-brown) 100%);
  padding: 80px 0;
  color: white;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-number {
  background: var(--energy-orange);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* Timeline Section */
#timeline {
  background-color: var(--natural-beige-light);
  padding: 80px 0;
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-green);
}

/* Career Section */
#career {
  background-color: white;
  padding: 80px 0;
}

.career-item {
  background: var(--natural-beige-light);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
#coreinfo {
  background: linear-gradient(135deg, var(--accent-blue-light) 0%, var(--primary-green-light) 100%);
  padding: 80px 0;
  color: white;
}

.coreinfo-item {
  text-align: center;
  padding: 30px 20px;
}

.coreinfo-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Contact Section */
#contacts {
  background-color: var(--natural-beige-light);
  padding: 80px 0;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--primary-green-dark);
  color: white;
  border-radius: 15px;
  padding: 40px;
}

.contact-info i {
  color: var(--energy-orange);
  margin-right: 15px;
}

/* Blog Section */
#blog {
  background-color: white;
  padding: 80px 0;
}

.blog-card {
  background: var(--natural-beige-light);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-content {
  padding: 30px;
}

/* FAQ Section */
#faq {
  background-color: var(--natural-beige-light);
  padding: 80px 0;
}

.faq-item {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-bottom: 15px;
}

/* Gallery Section */
#gallery {
  background-color: white;
  padding: 80px 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: var(--earth-brown-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-section h5 {
  color: var(--energy-orange);
  margin-bottom: 20px;
}

.footer-section a {
  color: var(--natural-beige);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--energy-orange);
}

.footer-bottom {
  border-top: 1px solid var(--earth-brown);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

/* Utility Classes */
.text-primary-green {
  color: var(--primary-green-dark);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

.text-earth-brown {
  color: var(--earth-brown-dark);
}

/* 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;
    scroll-behavior: auto !important;
  }
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
