/* Digital Decluttering Service - Main Styles */

/* CSS Variables - Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --primary-blue: #5f80af;
  --primary-green: #87c79f;
  --primary-purple: #af8fdd;
  --primary-orange: #e79755;
  --primary-pink: #ffc5c8;
  
  /* Light Shades */
  --light-blue: #bfd3e8;
  --light-green: #F0F9F4;
  --light-purple: #F3F0FC;
  --light-orange: #fffdfa;
  --light-pink: #FDF2F4;
  
  /* Dark Shades */
  --dark-blue: #3b607f;
  --dark-green: #588b77;
  --dark-purple: #a588c9;
  --dark-orange: #d07d4e;
  --dark-pink: #d28792;
  
  /* Neutral Colors */
  --text-primary: #2d3f63;
  --text-secondary: #4c5d76;
  --text-muted: #a3b4b3;
  --bg-light: #FAFBFC;
  --border-light: #d7e2ed;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-light);
}

/* Typography - Conservative Sizes */
.navbar-brand {
  font-size: 1.40rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Reduced header font size */
.navbar-nav .nav-link {
  font-size: 10px !important;
}

h1 {
  font-size: 2.62rem;
  font-weight: 700;
  color: var(--text-primary);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

h3 {
  font-size: 1.57rem;
  font-weight: 600;
  color: var(--text-primary);
}

h4 {
  font-size: 1.31rem;
  font-weight: 500;
  color: var(--text-primary);
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.18rem;
  color: var(--text-secondary);
}

/* Section Spacing */
.section-padding {
  padding: 4rem 0;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: relative;
  overflow: hidden;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: var(--primary-purple);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 150px;
  height: 150px;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

/* Services Section */
.services-section {
  background-color: white;
}

.service-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.68rem;
  color: var(--primary-blue);
  font-size: 1.63rem;
}

.service-price {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-purple);
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
  background-color: white;
}

.feature-card {
  background: var(--light-green);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-pink) 100%);
}

.price-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--light-blue);
  border: 4px solid var(--primary-blue);
}

/* Reviews Section */
.reviews-section {
  background: var(--light-blue);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-blue);
  opacity: 0.3;
}

/* Case Study Section */
.casestudy-section {
  background-color: white;
}

.case-item {
  background: var(--light-purple);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
}

.process-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.64rem;
  font-weight: 700;
}

/* Timeline Section */
.timeline-section {
  background-color: white;
}

.timeline-item {
  padding: 2rem;
  border-left: 4px solid var(--primary-orange);
  margin-bottom: 2rem;
  background: var(--light-orange);
  border-radius: 0 12px 12px 0;
}

/* Career Section */
.career-section {
  background: var(--light-pink);
}

.job-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--primary-pink);
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.info-item {
  text-align: center;
  padding: 2rem 1rem;
}

.info-icon {
  width: 70px;
  height: 70px;
  background: var(--light-purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-purple);
  font-size: 1.90rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
}

.contact-form {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(92, 147, 196, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-image {
  height: 200px;
  background: var(--light-green);
}

/* FAQ Section */
.faq-section {
  background: var(--light-blue);
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.58rem;
  border-left: 4px solid var(--primary-blue);
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-secondary);
}

/* Gallery Section */
.gallery-section {
  background-color: white;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.65rem;
  height: 250px;
  background: var(--light-purple);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-blue);
  margin-bottom: 1.56rem;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-blue);
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-blue) !important;
}

.bg-light-custom {
  background-color: var(--bg-light);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 

.hero-section h1 {
    padding-top: 175px;
}


/* 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;
    }
}
