/* Home Decluttering Coaching Template - Main CSS */

:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-sage: #8FA68E;
  --primary-sage-light: #B8C8B7;
  --primary-sage-dark: #6B8069;
  
  --primary-warm-beige: #E6D5C3;
  --primary-warm-beige-light: #F2E8DC;
  --primary-warm-beige-dark: #D4C0A8;
  
  --primary-terracotta: #C17767;
  --primary-terracotta-light: #D49B8C;
  --primary-terracotta-dark: #A05B4A;
  
  --primary-cream: #F7F3E9;
  --primary-cream-light: #FDFBF5;
  --primary-cream-dark: #E8E0D0;
  
  --primary-charcoal: #4A4A4A;
  --primary-charcoal-light: #6B6B6B;
  --primary-charcoal-dark: #2E2E2E;
  
  /* Conservative Font Sizes */
  --base-font-size: 16px;
  --navbar-brand-size: 1.25rem;
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --p-size: 1rem;
}

/* Base styles */
html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
}

/* Typography */
.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 600;
  color: var(--primary-charcoal-dark) !important;
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--primary-charcoal-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--h4-size);
  font-weight: 500;
  color: var(--primary-charcoal);
  margin-bottom: 0.625rem;
}

p {
  font-size: var(--p-size);
  margin-bottom: 1rem;
  color: var(--primary-charcoal-light);
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-cream), var(--primary-warm-beige-light));
  box-shadow: 0 2px 10px rgba(74, 74, 74, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage-dark) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-sage-light), var(--primary-warm-beige));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-cream);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Sections */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-sage-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Services Grid */
.service-card {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--primary-warm-beige);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 74, 74, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-terracotta-dark);
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-sage-light);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid var(--primary-terracotta);
}

/* FAQ */
.faq-item {
  background: var(--primary-cream);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--primary-warm-beige);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-charcoal-dark);
  cursor: pointer;
  padding: 1.25rem;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-sage-dark);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--primary-charcoal-light);
  display: none;
}

/* Contact Form */
.contact-form {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(74, 74, 74, 0.1);
}

.form-control {
  border: 2px solid var(--primary-warm-beige);
  border-radius: 10px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(143, 166, 142, 0.25);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-sage-dark));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-sage-dark), var(--primary-charcoal));
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-terracotta), var(--primary-terracotta-dark));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-terracotta-dark), var(--primary-charcoal));
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-charcoal), var(--primary-charcoal-dark));
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-warm-beige);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--primary-cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-sage-light);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog */
.blog-card {
  background: var(--primary-cream);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid var(--primary-warm-beige);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-body {
  padding: 1.5rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-sage-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Utility Classes */
.text-sage { color: var(--primary-sage-dark); }
.text-terracotta { color: var(--primary-terracotta); }
.bg-sage { background-color: var(--primary-sage-light); }
.bg-warm-beige { background-color: var(--primary-warm-beige); }

/* Animation for elements */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Price Plans */
.price-card {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--primary-warm-beige);
  transition: all 0.3s ease;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-sage);
  transform: scale(1.05);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 74, 74, 0.15);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-terracotta-dark);
  margin: 1rem 0;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-warm-beige);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-sage);
  margin-right: 0.5rem;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

/* Testimonials Slider Positioning Fix */
.testimonials-slider {
    position: relative;
    padding: 5rem 0;
}

.swiper-container {
    position: relative;
    padding: 0 50px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-sage-dark);
    background: var(--primary-cream);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 15px rgba(74, 74, 74, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-sage);
    color: white;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    background: var(--primary-sage-light);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-sage-dark);
    transform: scale(1.2);
}
