:root {
  /* Primary color palette - 5 colors + shades */
  --primary-green: #326657;
  --primary-light-green: #3a8665;
  --primary-mint: #63b082;
  --primary-cream: #F5F7F5;
  --primary-charcoal: #3c5047;
  
  /* Light/dark shades */
  --light-mint: #91c3af;
  --dark-green: #203b35;
  --soft-cream: #FAFBFA;
  --medium-charcoal: #303f39;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.5rem;
  --font-size-h2: 1.75rem;
  --font-size-h1: 2rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
}

/* Global styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-charcoal);
  background-color: var(--soft-cream);
  line-height: 1.6;
}

/* Typography - Conservative sizes */
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

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

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-green);
}

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-mint);
  opacity: 0.1;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-decorative {
    animation: none;
  }
}

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

.section-padding-sm {
  padding: var(--section-padding-sm);
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(38, 75, 57, 0.10);
}

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

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

/* Cards */
.card {
  border: none;
  box-shadow: 0 4px 15px rgba(33, 68, 53, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

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

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 500;
  padding: 0.75rem 2rem;
}

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

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

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

/* Services */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  text-align: center;
}

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

/* Team */
.team-member {
  text-align: center;
}

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

/* Contact Form */
.form-control {
  border: 2px solid var(--primary-cream);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

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

/* Footer - High contrast only */
.footer {
  background-color: var(--primary-charcoal);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

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

.footer a:hover {
  color: white;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--primary-cream);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
}

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

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

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

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-green);
}

.faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-green);
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active:after {
  content: '-';
}

.faq-question.active {
  color: var(--primary-green);
}

.faq-answer {
  margin-top: 10px;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  max-height: 0; /* Start hidden by default */
}

/* Price Plan */
.price-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  background: white;
  text-align: center;
}

.price-card.featured {
  background: var(--primary-green);
  color: white;
  transform: scale(1.05);
}

/* Case Studies */
.case-study-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-green);
}

/* Career */
.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--primary-mint);
}

/* Core Info */
.core-info-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
    --section-padding-sm: 2rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .navbar-brand {
    font-size: var(--font-size-lg);
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.25rem; }
} 

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


/* 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;
    }
}
