/* EcoClean Laundry - Main CSS */

/* Color Variables */
:root {
  --primary-color: #4a9eff;
  --primary-light: #7bb3ff;
  --primary-dark: #2d7dd2;
  --secondary-color: #6c757d;
  --secondary-light: #8d9499;
  --secondary-dark: #495057;
  --success-color: #28a745;
  --success-light: #5cb85c;
  --success-dark: #1e7e34;
  --info-color: #17a2b8;
  --info-light: #46b5d1;
  --info-dark: #117a8b;
  --warning-color: #ffc107;
  --warning-light: #ffcd39;
  --warning-dark: #d39e00;
  --danger-color: #dc3545;
  --danger-light: #e15759;
  --danger-dark: #bd2130;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  padding-top: 76px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

.lead {
  font-size: 1.1rem;
  font-weight: 300;
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-color) 0%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.hero-content .lead {
  font-size: 1.3rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem 2rem;
}

.hero-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  background: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
}

/* Feature Cards */
.feature-card {
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  margin-bottom: 1rem;
}

.feature-card h4 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
  border-radius: 15px 15px 0 0;
  height: 200px;
  object-fit: cover;
}

.service-card .card-title {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.service-card .list-unstyled li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

.price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

/* Feature Items */
.feature-item {
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.feature-icon {
  flex-shrink: 0;
}

.feature-content h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

/* Pricing Cards */
.pricing-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.price-display {
  margin: 1.5rem 0;
}

.price-display .h2 {
  margin-bottom: 0;
}

.pricing-card .list-unstyled li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card .list-unstyled li:last-child {
  border-bottom: none;
}

/* Team Cards */
.team-card {
  padding: 2rem 1rem;
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 0 auto;
}

.team-card h4 {
  margin: 1rem 0 0.5rem;
  color: var(--dark-color);
}

/* Review Cards */
.review-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
}

.stars {
  font-size: 0.9rem;
}

/* FAQ Cards */
.faq-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
}

.faq-card .card-title {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 158, 255, 0.25);
}

.contact-info {
  padding: 2rem 0;
}

.contact-item {
  text-align: center;
}

.contact-item i {
  display: block;
}

.contact-item h5 {
  margin: 1rem 0 0.5rem;
  color: var(--dark-color);
}

/* Gallery */
#gallery img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

#gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* Footer */
#footer {
  background-color: var(--dark-color);
}

#footer h3, #footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

#footer p {
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

#footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-color);
}

#footer ul {
  padding-left: 0;
}

#footer ul li {
  margin-bottom: 0.5rem;
}

/* Breadcrumb */
.breadcrumb-section {
  margin-top: 76px;
  padding: 1rem 0;
}

.breadcrumb {
  background: none;
  padding: 0;
}

.breadcrumb img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.breadcrumb img:hover {
  opacity: 1;
}

/* Additional Page Styles */
.story-item, .value-card, .impact-stat, .cert-card, .community-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-item:hover, .value-card:hover, .cert-card:hover, .community-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.impact-stat .stat-number {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.news-item {
  padding: 1.5rem;
  border-left: 3px solid var(--primary-color);
  background: var(--white);
  border-radius: 0 10px 10px 0;
  margin-bottom: 1rem;
}

.news-date {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Blog Styles */
.blog-card, .tip-card, .sustainability-card, .story-card, .resource-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover, .tip-card:hover, .sustainability-card:hover, .story-card:hover, .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.customer-photo img {
  object-fit: cover;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.border-primary {
  border-color: var(--primary-color);
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .hero-content, .feature-card, .service-card, .team-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .hero-content {
    animation-delay: 0.2s;
    padding-top: 100px;
}

  .feature-card:nth-child(1) { animation-delay: 0.1s; }
  .feature-card:nth-child(2) { animation-delay: 0.2s; }
  .feature-card:nth-child(3) { animation-delay: 0.3s; }
  .feature-card:nth-child(4) { animation-delay: 0.4s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* Print Styles */
@media print {
  .hero-shapes,
  .btn,
  #header,
  #footer {
    display: none;
  }
  
  body {
    padding-top: 0;
  }
  
  .hero-section {
    background: none;
  }
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
