/*
 * Digital Decluttering Service - Main Styles
 * Bootstrap 5 Based Template
 */

/* Color Palette - 5 Primary Colors with Variations */
:root {
  /* Primary Color Palette */
  --primary-blue: #587dc3;
  --primary-green: #7aa06f;
  --primary-coral: #eebcac;
  --primary-lavender: #9a89db;
  --primary-sage: #9dc6a0;
  
  /* Light Shades */
  --light-blue: #c3d7f3;
  --light-green: #f0f9ed;
  --light-coral: #fef4f2;
  --light-lavender: #f5f2ff;
  --light-sage: #f2f8f2;
  
  /* Dark Shades */
  --dark-blue: #566c8b;
  --dark-green: #4a6f3f;
  --dark-coral: #bf837d;
  --dark-lavender: #8666a1;
  --dark-sage: #749071;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #596167;
  --dark-gray: #3a404b;
  --black: #000000;
}

/* Base Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-blue);
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-sage) 100%);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-content {
  z-index: 2;
    padding-top: 200px;
}

.hero-title {
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.hero-desc {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-coral);
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--medium-gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.feature-card {
  background: var(--light-green);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h5 {
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-image {
  width: 100%;
  height: 200px;
  background: var(--light-lavender);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-lavender);
  font-size: 3rem;
}

.service-name {
  color: var(--dark-blue);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--primary-green);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.service-price {
  color: var(--primary-coral);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.features-card {
  background: var(--light-coral);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.features-card i {
  font-size: 2.5rem;
  color: var(--primary-coral);
  margin-bottom: 1.5rem;
}

.features-card h5 {
  color: var(--dark-coral);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-lavender);
}

.priceplan-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.priceplan-card.featured {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05);
}

.priceplan-name {
  color: var(--dark-blue);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.priceplan-price {
  color: var(--primary-coral);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.priceplan-features {
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-card {
  background: var(--light-sage);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-image {
  width: 120px;
  height: 120px;
  background: var(--primary-sage);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.team-name {
  color: var(--dark-sage);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--medium-gray);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-blue);
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.review-text {
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 1rem;
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--white);
}

.casestudy-card {
  background: var(--light-green);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.casestudy-title {
  color: var(--dark-green);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.casestudy-desc {
  color: var(--medium-gray);
}

/* Process Section */
.process-section {
  background-color: var(--light-gray);
}

.process-step {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.process-number {
  background: var(--primary-blue);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.process-title {
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

.faq-card {
  background: var(--light-lavender);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  color: var(--dark-lavender);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-coral);
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 2rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--dark-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-coral);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-coral);
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
}

.contact-form {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 2.5rem;
}

.contact-info {
  background: var(--light-sage);
  border-radius: 15px;
  padding: 2.5rem;
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(107, 147, 188, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  color: var(--primary-sage);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.contact-info-item span {
  color: var(--dark-gray);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--light-gray);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue);
}

.footer-policies {
  margin-bottom: 2rem;
}

.footer-policies a {
  margin-right: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  padding-top: 1.5rem;
  text-align: center;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 2rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-lavender { color: var(--primary-lavender); }
.text-primary-sage { color: var(--primary-sage); }

.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-green { background-color: var(--primary-green); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-lavender { background-color: var(--primary-lavender); }
.bg-primary-sage { background-color: var(--primary-sage); }

.bg-light-blue { background-color: var(--light-blue); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-coral { background-color: var(--light-coral); }
.bg-light-lavender { background-color: var(--light-lavender); }
.bg-light-sage { background-color: var(--light-sage); } 


/* 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);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}
