/* ================================================
   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: #97b08c;
  --primary-lavender: #d1b4e8;
  --primary-peach: #dfb894;
  --primary-mint: #cae7dc;
  --primary-blush: #f8bfc7;
  
  /* Light Shades */
  --light-sage: #e7e7e7;
  --light-lavender: #fafafa;
  --light-peach: #FDF4EC;
  --light-mint: #d3f8ee;
  --light-blush: #e8c5d1;
  
  /* Dark Shades */
  --dark-sage: #92ac7a;
  --dark-lavender: #9b8a9e;
  --dark-peach: #e5a58a;
  --dark-mint: #7bc4a4;
  --dark-blush: #e59ebc;
  
  /* Neutral Colors */
  --neutral-dark: #2a3644;
  --neutral-medium: #959a9b;
  --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.62rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.94rem;
}

h3 {
  font-size: 1.62rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.88rem;
}

h4 {
  font-size: 1.40rem;
  font-weight: 500;
  color: var(--neutral-dark);
  margin-bottom: 0.63rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-medium);
  margin-bottom: 1rem;
}

/* Conservative Navbar Brand Size */
.navbar-brand {
  font-size: 1.61rem;
  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 8px 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.60rem;
  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: 6px 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.55rem;
  box-shadow: 0 2px 9px 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.55rem;
}

.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(178, 191, 174, 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(--neutral-dark);
  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.63rem;
  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.62rem;
  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.58rem;
  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.68rem;
  text-align: center;
}

/* Career Items */
.career-item {
  background: var(--light-lavender);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.56rem;
}

/* 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: 275px;
}


/* 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;
    }
}
