:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-green: #7CB342;
  --primary-orange: #FF8A65;
  --primary-cream: #FFF8E1;
  --primary-brown: #8D6E63;
  --primary-blue: #64B5F6;
  
  /* Light Shades */
  --light-green: #AED581;
  --light-orange: #FFAB91;
  --light-cream: #FFFDE7;
  --light-brown: #A1887F;
  --light-blue: #90CAF9;
  
  /* Dark Shades */
  --dark-green: #558B2F;
  --dark-orange: #FF5722;
  --dark-cream: #F57F17;
  --dark-brown: #5D4037;
  --dark-blue: #1976D2;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-cream);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(45deg);
}

/* Services Section */
#services {
  background-color: var(--light-cream);
  padding: 4rem 0;
}

.service-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  background: var(--primary-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

/* About Section */
#about {
  background-color: white;
  padding: 4rem 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Team Section */
#team {
  background-color: var(--light-cream);
  padding: 4rem 0;
}

.team-card {
  background: white;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Reviews Section */
#reviews {
  background-color: var(--primary-cream);
  padding: 4rem 0;
}

.review-card {
  background: white;
  border: none;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

/* FAQ Section */
#faq {
  background-color: white;
  padding: 4rem 0;
}

.faq-card {
  background: var(--light-cream);
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-brown);
  color: white;
  padding: 1rem;
  margin: 0;
  font-weight: 600;
}

.faq-answer {
  padding: 1rem;
  background: white;
  margin: 0;
}

/* Contact Section */
#contact {
  background-color: var(--light-green);
  padding: 4rem 0;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--primary-green);
  color: white;
  border-radius: 15px;
  padding: 2rem;
}

/* Footer */
#footer {
  background-color: var(--dark-brown);
  color: white;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--light-cream);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

#footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-orange);
}

/* Gallery Section */
#gallery {
  padding: 4rem 0;
  background-color: var(--light-cream);
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Blog Section */
#blog {
  background-color: white;
  padding: 4rem 0;
}

.blog-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-orange);
  border-color: var(--dark-orange);
}

.btn-secondary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  color: white;
}

.btn-secondary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

/* Text Utilities */
.text-primary-green {
  color: var(--primary-green);
}

.text-primary-orange {
  color: var(--primary-orange);
}

.bg-primary-cream {
  background-color: var(--primary-cream);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--light-blue);
  padding: 4rem 0;
}

.price-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}

.price-header {
  background: var(--primary-blue);
  color: white;
  padding: 2rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.price-features {
  padding: 2rem;
}

.price-features ul {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-cream);
}

/* Features Section */
#features {
  background-color: var(--primary-cream);
  padding: 4rem 0;
}

/* Process Section */
#process {
  background-color: white;
  padding: 4rem 0;
}

.process-step {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--light-cream);
  margin-bottom: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Case Study Section */
#casestudy {
  background-color: var(--light-green);
  padding: 4rem 0;
}

.case-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Core Info Section */
#coreinfo {
  background-color: var(--primary-cream);
  padding: 4rem 0;
}

.info-card {
  background: white;
  border: none;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Navbar Scrolled State */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-green);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
  color: white;
}

/* Timeline Section */
.timeline {
  position: relative;
}

/* Form Validation States */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
  border-color: #198754;
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* Fade In Animation for Lazy Loading */
.fade-in {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.lozad {
  opacity: 0;
}

/* Breadcrumb Styling */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  filter: grayscale(50%);
  transition: filter 0.3s ease;
}

.breadcrumb-item img:hover {
  filter: grayscale(0%);
}

/* Additional Utility Classes */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.box-shadow-lg {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Hero Text Styling */
#hero h1, #hero h2, #hero p {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Service Card Image */
.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Blog Card Styling */
.blog-card .card-body {
  padding: 1.5rem;
    overflow-x: hidden;
}

/* Case Study Card Image */
.case-card .card-img-top {
  height: 200px;
  object-fit: cover;
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
