:root {
  /* Primary Colors - Pastel High-Contrast */
  --primary-denim: #6f92aa;
  --primary-denim-light: #c7e6f6;
  --primary-denim-dark: #3d5579;
  
  --primary-sage: #a9aea8;
  --primary-sage-light: #c9cdc8;
  --primary-sage-dark: #82a07a;
  
  --primary-cream: #fceedb;
  --primary-cream-light: #FFF8F0;
  --primary-cream-dark: #fce2bd;
  
  --primary-rust: #d2aa6d;
  --primary-rust-light: #dfb291;
  --primary-rust-dark: #99754a;
  
  --primary-charcoal: #635c5d;
  --primary-charcoal-light: #867e7e;
  --primary-charcoal-dark: #515151;
  
  /* Typography */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  
  /* Spacing */
  --section-padding: 80px 0;
  --content-max-width: 1200px;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-charcoal);
  line-height: 1.6;
  font-weight: var(--font-weight-normal);
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-cream-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--primary-denim-light);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 175px;
}

/* Headings - Conservative Sizes */
h1 {
  font-size: 2.64rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-charcoal-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary-charcoal-dark);
  margin-bottom: 0.98rem;
}

h3 {
  font-size: 1.54rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary-charcoal);
  margin-bottom: 0.73rem;
}

h4 {
  font-size: 1.24rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary-charcoal);
  margin-bottom: 0.63rem;
}

/* Navbar - Conservative Brand Size */
.navbar-brand {
  font-size: 1.53rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-denim-dark);
}

.navbar-nav .nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--primary-charcoal);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-denim);
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 13px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services-section {
  background: var(--primary-cream-light);
}

.service-card {
  background: white;
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.service-card h4 {
  color: var(--primary-denim-dark);
  margin-bottom: 1rem;
}

.service-card .price {
  font-size: 1.52rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-rust);
  margin-top: 1rem;
}

/* About Section */
.about-section {
  background: white;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 2.61rem;
  color: var(--primary-denim);
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  background: var(--primary-sage-light);
}

/* Price Plan Section */
.priceplan-section {
  background: white;
}

.price-card {
  background: white;
  text-align: center;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.price-card .price {
  font-size: 2.61rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-rust);
  margin: 1rem 0;
}

.price-card .features {
  text-align: left;
  margin: 1.5rem 0;
}

.price-card .features li {
  margin-bottom: 0.59rem;
  color: var(--primary-charcoal);
}

/* Team Section */
.team-section {
  background: var(--primary-cream-light);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-denim-light);
}

.team-member h4 {
  color: var(--primary-charcoal-dark);
  margin-bottom: 0.68rem;
}

.team-member .role {
  color: var(--primary-denim);
  font-weight: var(--font-weight-medium);
}

/* Reviews Section */
.reviews-section {
  background: white;
}

.review-card {
  background: var(--primary-cream-light);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-denim);
}

.review-card .author {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-charcoal-dark);
  margin-top: 1rem;
}

/* Case Study Section */
.casestudy-section {
  background: var(--primary-sage-light);
}

.casestudy-card {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Process Section */
.process-section {
  background: white;
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-denim);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-semibold);
}

.process-container {
  counter-reset: step-counter;
}

/* Timeline Section */
.timeline-section {
  background: var(--primary-cream-light);
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--primary-denim);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--primary-denim-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career Section */
.career-section {
  background: white;
}

.career-card {
  background: var(--primary-cream-light);
  padding: 2rem;
  margin-bottom: 2rem;
}

.career-card .role {
  color: var(--primary-denim);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.58rem;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--primary-sage-light);
}

.coreinfo-card {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.coreinfo-card i {
  font-size: 2rem;
  color: var(--primary-denim);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background: white;
}

.contact-form {
  background: var(--primary-cream-light);
  padding: 2rem;
  border-radius: 12px;
}

.contact-info {
  background: var(--primary-denim-light);
  padding: 2rem;
  border-radius: 12px;
  color: var(--primary-charcoal-dark);
}

.contact-info h4 {
  color: var(--primary-charcoal-dark);
  margin-bottom: 1.72rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--primary-denim-dark);
  margin-right: 0.5rem;
}

/* Blog Section */
.blog-section {
  background: var(--primary-cream-light);
}

.blog-card {
  background: white;
  margin-bottom: 2rem;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-card h5 {
  color: var(--primary-charcoal-dark);
  margin-bottom: 1rem;
}

.blog-card .read-more {
  color: var(--primary-denim);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
}

.blog-card .read-more:hover {
  color: var(--primary-denim-dark);
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-card {
  background: var(--primary-cream-light);
  padding: 2rem;
  margin-bottom: 1.65rem;
}

.faq-card h5 {
  color: var(--primary-charcoal-dark);
  margin-bottom: 1rem;
}

.faq-card p {
  color: var(--primary-charcoal);
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
  background: var(--primary-sage-light);
}

.gallery-item {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 12px;
}

.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: var(--primary-charcoal-dark);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--primary-cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-denim-light);
}

.footer .copyright {
  border-top: 1px solid var(--primary-charcoal);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Buttons */
.btn-primary {
  background: var(--primary-denim);
  border: none;
  border-radius: 8px;
  padding: 0.8rem 2rem;
  font-weight: var(--font-weight-medium);
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-denim-dark);
}

.btn-secondary {
  background: var(--primary-rust);
  border: none;
  border-radius: 8px;
  padding: 0.8rem 2rem;
  font-weight: var(--font-weight-medium);
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-rust-dark);
}

/* Form Styles */
.form-control {
  border: 2px solid var(--primary-denim-light);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-denim);
  box-shadow: 0 0 0 0.2rem rgba(123, 159, 183, 0.25);
}

/* Animations - Respecting prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .sal-animate {
    transition: all 0.3s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sal-animate {
    transition: none;
  }
}

/* Utilities */
.text-primary-denim {
  color: var(--primary-denim);
}

.text-primary-rust {
  color: var(--primary-rust);
}

.bg-primary-cream {
  background-color: var(--primary-cream);
}

.bg-primary-sage {
  background-color: var(--primary-sage);
}

/* Space Page */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-cream-light);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  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;
}

.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;
    }
}
