:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-color: #2D5A27;     /* Forest Green */
  --secondary-color: #8FBC8F;   /* Light Sea Green */
  --accent-color: #F0E68C;      /* Khaki */
  --neutral-color: #F5F5DC;     /* Beige */
  --text-color: #2F4F4F;        /* Dark Slate Gray */
  
  /* Light/Dark Shades */
  --primary-light: #4A7C59;
  --primary-dark: #1A3F1A;
  --secondary-light: #B8D8B8;
  --secondary-dark: #6B8E6B;
  --accent-light: #F5F2A3;
  --accent-dark: #D4C570;
  --neutral-light: #FAFAFA;
  --neutral-dark: #E8E8E8;
  
  /* Bootstrap Override Variables */
  --bs-primary: var(--primary-color);
  --bs-secondary: var(--secondary-color);
  --bs-success: var(--accent-color);
  --bs-info: var(--neutral-color);
  --bs-warning: var(--accent-dark);
  --bs-danger: #CD853F;
  --bs-light: var(--neutral-light);
  --bs-dark: var(--text-color);
  
  /* 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: 4rem 0;
  --element-margin: 1.5rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--neutral-light);
    overflow-x: hidden;
}

/* Typography - Conservative Sizes */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--element-margin);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--primary-dark);
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--primary-dark);
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
}

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

.lead {
  font-size: var(--font-size-lg);
  color: var(--secondary-dark);
}

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

.navbar {
  background-color: var(--neutral-light);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-light) 0%, var(--secondary-light) 100%);
  display: flex;
  align-items: center;
  padding: var(--section-padding);
}

.hero-decorative {
  position: relative;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--secondary-dark);
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-color);
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--neutral-light);
}

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

.card-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-color);
  line-height: 1.6;
}

/* Services */
.service-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

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

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-dark);
}

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

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  margin-bottom: 1rem;
}

.team-name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--secondary-dark);
  font-style: italic;
}

/* Features */
.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

/* Reviews/Testimonials */
.review-card {
  background: var(--neutral-light);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* FAQ */
.faq-card {
  margin-bottom: 1.5rem;
  border: 1px solid var(--neutral-dark);
}

.faq-question {
  background-color: var(--secondary-light);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--primary-dark);
}

.faq-answer {
  padding: 1.5rem;
  margin: 0;
  background-color: var(--neutral-light);
  color: var(--text-color);
}

/* Forms */
.form-control {
  border: 2px solid var(--neutral-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

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

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

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

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

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

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer p, .footer a {
  color: var(--neutral-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid var(--primary-light);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Gallery */
.gallery-item {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

/* Price Plans */
.price-card {
  border: 2px solid var(--neutral-dark);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  background: var(--neutral-light);
}

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

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

/* Blog */
.blog-card {
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

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

.blog-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-color);
  line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Contact Info */
.contact-info {
  background-color: var(--secondary-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.bg-secondary-custom {
  background-color: var(--secondary-color);
}

.bg-accent-custom {
  background-color: var(--accent-color);
}

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

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


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