/* Digital Decluttering Coaching - Main CSS */
/* Bootstrap 5 Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Color Palette - 5 primary colors with light/dark shades */
:root {
  /* Primary Colors */
  --primary-sage: #9CAF88;
  --primary-coral: #F4A6A2;
  --primary-cream: #F5F1E8;
  --primary-slate: #5C6B73;
  --primary-lavender: #C8B6DB;
  
  /* Light Shades */
  --light-sage: #B8C7A5;
  --light-coral: #F7C3C0;
  --light-cream: #F9F6F1;
  --light-slate: #7A8890;
  --light-lavender: #D9CBE7;
  
  /* Dark Shades */
  --dark-sage: #7A8F6B;
  --dark-coral: #E8827E;
  --dark-cream: #E6DDCF;
  --dark-slate: #4A5259;
  --dark-lavender: #B199C8;
  
  /* Semantic Colors */
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-light: #8a8a8a;
  --bg-light: #fafafa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  
  /* Conservative Font Sizes */
  --fs-base: 1rem;
  --fs-sm: 0.875rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  scroll-behavior: smooth;
}

/* Image Sizing - Ensures proper display regardless of actual file size */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Image */
.hero .img-fluid {
  width: 100%;
  max-width: 500px;
  height: auto;
  min-height: 300px;
  object-fit: cover;
}

/* Service Images */
.service-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* Team Images */
.team-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/* Blog Images */
.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Gallery Images */
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Breadcrumb Images */
.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  body {
    scroll-behavior: auto;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: var(--fs-3xl);
}

h2 {
  font-size: var(--fs-2xl);
}

h3 {
  font-size: var(--fs-xl);
}

h4 {
  font-size: var(--fs-lg);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Header & Navigation */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--primary-sage);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-cream) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../assets/images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  background: var(--primary-lavender);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 5%;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-slate);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-secondary);
  font-size: var(--fs-lg);
}

/* About Section */
.about {
  background: var(--bg-light);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

/* Services Section */
.services {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-sage), var(--primary-coral));
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-sage);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-price {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--primary-slate);
  margin-bottom: 1rem;
}

/* Team Section */
.team {
  background: var(--bg-light);
}

.team-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-lavender);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reviews Section */
.reviews {
  background: var(--primary-cream);
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-coral);
  font-weight: 700;
}

.review-author {
  font-weight: 600;
  color: var(--primary-slate);
  margin-top: 1rem;
}

/* Process Section */
.process {
  background: var(--white);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 10px;
  border-left: 4px solid var(--primary-sage);
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

/* FAQ Section */
.faq {
  background: var(--bg-light);
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
}

.faq-question {
  padding: 1.5rem;
  background: var(--primary-sage);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-sage);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--bg-light);
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Contact Section */
.contact {
  background: var(--primary-cream);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  font-size: var(--fs-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-sage);
}

/* Form validation styles */
.form-control.is-valid {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.form-control.is-invalid {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(244, 166, 162, 0.25);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--primary-coral);
}

.valid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--primary-sage);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage), var(--dark-sage));
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  color: var(--white);
  font-weight: 600;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Footer */
.footer {
  background: var(--primary-slate);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--light-slate);
  opacity: 0.8;
}

.footer a {
  color: var(--light-slate);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-light);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}



/* Blog Section */
.blog {
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-slate);
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Pricing Section */
.pricing {
  background: var(--bg-light);
}

.pricing-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 3px solid var(--primary-sage);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-price {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--primary-slate);
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Case Studies Section */
.case-studies {
  background: var(--primary-cream);
}

.case-study-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

/* Timeline Section */
.timeline {
  background: var(--white);
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-sage);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 15px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--light-sage);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career Section */
.career {
  background: var(--bg-light);
}

.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-role {
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Core Info Section */
.core-info {
  background: var(--primary-cream);
}

.core-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.core-info-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
}

.core-info-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.core-info-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

/* Features Section */
.features {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.features-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.features-item:hover {
  transform: translateY(-5px);
}

.features-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.features-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

/* Additional Page Sections */
.additional-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--bg-light);
}

.additional-section:last-child {
  border-bottom: none;
}

.additional-section:nth-child(even) {
  background: var(--bg-light);
}

.additional-section:nth-child(odd) {
  background: var(--white);
}

.additional-elements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.additional-element {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform 0.3s ease;
}

.additional-section:nth-child(even) .additional-element {
  background: var(--primary-cream);
}

.additional-element:hover {
  transform: translateY(-3px);
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#space::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../assets/images/space-bg.webp') center/cover;
  opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: var(--fs-2xl);
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .navbar-brand {
    font-size: var(--fs-base);
  }
  
  .service-card,
  .team-card,
  .review-card {
    padding: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: var(--fs-xl);
  }
  
  .section-title h2 {
    font-size: var(--fs-xl);
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .additional-elements {
    grid-template-columns: 1fr;
  }
  
  .core-info-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
