:root {
  /* Primary Color Palette - Pastel High-Contrast Colors */
  --primary-clay: #D4A574;
  --primary-earth: #8B6F47;
  --primary-sage: #9CAF88;
  --primary-cream: #F5F1E8;
  --primary-charcoal: #4A4A4A;
  
  /* Light Shades */
  --clay-light: #E8C49A;
  --earth-light: #A08760;
  --sage-light: #B2C29F;
  --cream-light: #FAFAF8;
  --charcoal-light: #6A6A6A;
  
  /* Dark Shades */
  --clay-dark: #B8925F;
  --earth-dark: #6D5436;
  --sage-dark: #7A8F6F;
  --cream-dark: #E8E0D5;
  --charcoal-dark: #2A2A2A;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-charcoal);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-earth);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-earth);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-earth);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

p {
  font-size: 1rem;
  color: var(--primary-charcoal);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--clay-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-sage);
  border-radius: 50% 40% 60% 30%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decoration:nth-child(1) {
  top: 10%;
  right: -150px;
}

.hero-decoration:nth-child(2) {
  bottom: 20%;
  left: -100px;
  background: var(--primary-clay);
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 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);
}

/* Service Cards */
.service-card {
  background: var(--primary-cream);
  border-left: 4px solid var(--primary-clay);
}

.service-price {
  color: var(--primary-earth);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--primary-sage) 100%);
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Price Plan Cards */
.price-card {
  position: relative;
  background: white;
  border: 2px solid var(--clay-light);
}

.price-card.featured {
  border-color: var(--primary-clay);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-earth);
}

/* Team Cards */
.team-card {
  background: var(--primary-cream);
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-clay);
  margin: 0 auto 1rem;
}

/* Review Cards */
.review-card {
  background: var(--cream-light);
  border-left: 4px solid var(--primary-sage);
  font-style: italic;
}

/* Case Study Cards */
.casestudy-card {
  background: linear-gradient(135deg, var(--primary-earth) 0%, var(--earth-dark) 100%);
  color: white;
}

/* Process Cards */
.process-card {
  background: white;
  border: 2px solid var(--sage-light);
  text-align: center;
  position: relative;
}

.process-number {
  background: var(--primary-sage);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Timeline Cards */
.timeline-card {
  background: var(--primary-cream);
  border-left: 4px solid var(--primary-earth);
  position: relative;
}

/* Career Cards */
.career-card {
  background: white;
  border: 1px solid var(--clay-light);
}

/* Core Info Cards */
.coreinfo-card {
  background: linear-gradient(135deg, var(--clay-light) 0%, var(--primary-clay) 100%);
  color: var(--charcoal-dark);
}

/* Contact Form */
.contact-form {
  background: var(--primary-cream);
  border-radius: 12px;
  padding: 2rem;
}

.form-control {
  border: 2px solid var(--clay-light);
  border-radius: 8px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-clay);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.btn-primary {
  background: var(--primary-clay);
  border-color: var(--primary-clay);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

/* Blog Cards */
.blog-card {
  background: white;
  border: 1px solid var(--sage-light);
}

.blog-meta {
  color: var(--primary-sage);
  font-size: 0.9rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--cream-light);
  border: 1px solid var(--clay-light);
  margin-bottom: 1rem;
}

.faq-question {
  color: var(--primary-earth);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--primary-sage);
  color: var(--cream-light);
}

.footer a {
  color: var(--clay-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-clay);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Sections Spacing */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--cream-light);
}

/* Breadcrumb */
.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin: 2rem 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Lazy Loading Fade-in Effect */
.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.lozad {
  opacity: 0;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-visible {
  animation: fadeInUp 0.6s ease-out;
}

/* Selected Price Card */
.price-card.selected {
  border-color: var(--primary-clay);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

/* Interactive Button States */
.btn-outline-primary {
  border-color: var(--primary-clay);
  color: var(--primary-clay);
}

.btn-outline-primary:hover {
  background: var(--primary-clay);
  border-color: var(--primary-clay);
  color: white;
}

/* Enhanced Card Interactions */
.gallery-item.loaded {
  opacity: 1;
}

.gallery-item {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.form-control:focus,
.btn:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-clay);
  outline-offset: 2px;
}

/* Enhanced Hover Effects */
.nav-link:hover {
  color: var(--primary-clay);
}

.card-img-top {
  transition: transform 0.3s ease;
}

.service-card:hover .card-img-top {
  transform: scale(1.05);
}

/* Blog Link Hover */
.blog-card .btn:hover {
  transform: translateY(-2px);
}

/* Team Photo Hover Effect */
.team-photo:hover {
  transform: scale(1.1);
  border-color: var(--clay-dark);
} 

.hero-section h1 {
    padding-top: 225px;
}


/* 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;
    }
}
