/* ================================================
   HOME ORGANIZATION CONSULTING TEMPLATE
   Main CSS - Bootstrap 5 Compatible
   ================================================ */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors - Pastel High-Contrast */
  --primary-sage: #bcc6b6;
  --primary-lavender: #b79fc2;
  --primary-peach: #eec4a4;
  --primary-mint: #b0edde;
  --primary-blush: #ffc1d7;
  
  /* Light Shades */
  --light-sage: #c9d7c1;
  --light-lavender: #ffffff;
  --light-peach: #FDF4EC;
  --light-mint: #cae4d8;
  --light-blush: #fff4f6;
  
  /* Dark Shades */
  --dark-sage: #9db38a;
  --dark-lavender: #a999b0;
  --dark-peach: #ee986b;
  --dark-mint: #75bf9c;
  --dark-blush: #e07a8f;
  
  /* Neutral Colors */
  --neutral-dark: #233044;
  --neutral-medium: #707d81;
  --neutral-light: #ecf0f1;
  --white: #ffffff;
  --black: #000000;
}

/* Base Typography - Conservative Font Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--white);
}

/* Conservative Heading Sizes */
h1 {
  font-size: 2.52rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1.02rem;
}

h3 {
  font-size: 1.54rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.90rem;
}

h4 {
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--neutral-dark);
  margin-bottom: 0.69rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-medium);
  margin-bottom: 1rem;
}

/* Conservative Navbar Brand Size */
.navbar-brand {
  font-size: 1.64rem;
  font-weight: 700;
  color: var(--primary-sage);
}

/* Hero Section - Fullscreen Height */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-sage), var(--light-mint));
  display: flex;
  align-items: center;
  position: relative;
}

/* Decorative Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--primary-lavender);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--primary-peach);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

/* Section Styling */
.section {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.section-alt {
  background-color: var(--light-sage);
}

/* Service Items */
.service-item {
  background: var(--white);
  border-radius: 17px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-price {
  color: var(--primary-sage);
  font-size: 1.54rem;
  font-weight: 700;
}

/* Team Members */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 7px solid var(--primary-mint);
}

/* Reviews/Testimonials - Bootstrap Cards Only */
.review-card {
  background: var(--white);
  border: 1px solid var(--light-sage);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.72rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-author {
  font-weight: 600;
  color: var(--primary-sage);
  margin-top: 1rem;
}

/* FAQ - Static Cards Only */
.faq-card {
  background: var(--white);
  border: 1px solid var(--light-lavender);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.69rem;
}

.faq-answer {
  color: var(--neutral-medium);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: var(--light-mint);
  border-radius: 12px;
  padding: 2rem;
}

.contact-form .form-control {
  border: 1px solid var(--primary-mint);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(209, 221, 200, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-sage);
  border-color: var(--dark-sage);
}

.btn-secondary {
  background-color: var(--primary-lavender);
  border-color: var(--primary-lavender);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--dark-lavender);
  border-color: var(--dark-lavender);
}

/* Footer */
footer {
  background: var(--dark-blush);
  color: var(--white);
  padding: 3rem 0 1rem;
}

footer a {
  color: var(--primary-mint);
  text-decoration: none;
}

footer a:hover {
  color: var(--light-mint);
}

/* Gallery */
.gallery-item {
  margin-bottom: 1.65rem;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-peach);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.process-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary-peach);
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  padding: 1.5rem;
  background: var(--light-blush);
  border-radius: 8px;
  margin-bottom: 1.72rem;
  border-left: 4px solid var(--primary-blush);
}

/* Pricing Plans */
.pricing-plan {
  background: var(--white);
  border: 2px solid var(--primary-lavender);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-plan.featured {
  border-color: var(--primary-sage);
  transform: scale(1.05);
}

.pricing-amount {
  font-size: 2.60rem;
  font-weight: 700;
  color: var(--primary-sage);
}

/* Case Studies */
.case-study {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Blog Items */
.blog-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Core Info Items */
.core-info-item {
  background: var(--light-mint);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.56rem;
  text-align: center;
}

/* Career Items */
.career-item {
  background: var(--light-lavender);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.57rem;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-primary-sage { color: var(--primary-sage); }
.text-primary-lavender { color: var(--primary-lavender); }
.text-primary-peach { color: var(--primary-peach); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-blush { color: var(--primary-blush); }

.bg-primary-sage { background-color: var(--primary-sage); }
.bg-primary-lavender { background-color: var(--primary-lavender); }
.bg-primary-peach { background-color: var(--primary-peach); }
.bg-primary-mint { background-color: var(--primary-mint); }
.bg-primary-blush { background-color: var(--primary-blush); }

.bg-light-sage { background-color: var(--light-sage); }
.bg-light-lavender { background-color: var(--light-lavender); }
.bg-light-peach { background-color: var(--light-peach); }
.bg-light-mint { background-color: var(--light-mint); }
.bg-light-blush { background-color: var(--light-blush); } 

.hero-section h1 {
    padding-top: 125px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
