/* ==========================================================================
   Smart Recycling-Bin Manufacturing - Main Styles
   Bootstrap 5 Compliant - NO OVERRIDES OR CUSTOM GRID SYSTEMS
   ========================================================================== */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --primary-green: #59ba5e;
  --primary-blue: #339fee;
  --primary-teal: #008c84;
  --primary-orange: #ff7d09;
  --primary-purple: #a015a9;
  
  /* Light Shades */
  --light-green: #d6e1d4;
  --light-blue: #e1e4e7;
  --light-teal: #bbe1dd;
  --light-orange: #fbf4ed;
  --light-purple: #e4d2e4;
  
  /* Dark Shades */
  --dark-green: #3d8933;
  --dark-blue: #2993d1;
  --dark-teal: #067c7d;
  --dark-orange: #ef8600;
  --dark-purple: #801499;
  
  /* Additional System Colors */
  --white: #FFFFFF;
  --black: #000000;
  --gray-light: #F5F5F5;
  --gray-medium: #a7a6a6;
  --gray-dark: #433e3d;
  --text-primary: #111214;
  --text-secondary: #7e8184;
  --border-color: #dfeefd;
  
  /* Conservative Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --card-padding: 2rem;
  --btn-padding: 0.75rem 1.5rem;
  
  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  /* Border Radius */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
}

/* ==========================================================================
   Global Styles - Conservative Typography
   ========================================================================== */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  font-size: var(--font-size-base);
}

/* Conservative Heading Sizes */
h1, .h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1.07rem;
}

h3, .h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.88rem;
}

h4, .h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 0.86rem;
}

h5, .h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 0.71rem;
}

h6, .h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 0.70rem;
}

p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Layout Styles - Using Bootstrap 5 Grid System Only
   ========================================================================== */

.section-padding {
  padding: var(--section-padding);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

.bg-primary-blue {
  background-color: var(--primary-blue);
}

.bg-primary-teal {
  background-color: var(--primary-teal);
}

.bg-light-green {
  background-color: var(--light-green);
}

.bg-light-blue {
  background-color: var(--light-blue);
}

.bg-light-teal {
  background-color: var(--light-teal);
}

.bg-gray-light {
  background-color: var(--gray-light);
}

/* ==========================================================================
   Hero Section Styles
   ========================================================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--light-teal) 0%, transparent 70%);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, var(--light-orange) 0%, transparent 60%);
  opacity: 0.2;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Services Section Styles
   ========================================================================== */

.services-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  padding: var(--card-padding);
  height: 100%;
  border: 1px solid var(--border-color);
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.services-card img {
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
}

.services-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* ==========================================================================
   Features Section Styles
   ========================================================================== */

.features-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--card-padding);
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.features-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.features-item i {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Team Section Styles
   ========================================================================== */

.team-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-base);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card-body {
  padding: var(--card-padding);
  text-align: center;
}

.team-member-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.70rem;
}

.team-member-role {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

/* ==========================================================================
   Reviews Section Styles - Static Bootstrap Cards Only
   ========================================================================== */

.reviews-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--card-padding);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
}

.reviews-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-blue);
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 20px;
}

.reviews-card {
  position: relative;
  margin-top: 20px;
}

.reviews-author {
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1rem;
}

.reviews-text {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ Section Styles - Static Cards Only
   ========================================================================== */

.faq-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--card-padding);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.faq-question {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.faq-answer {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Contact Form Styles
   ========================================================================== */

.contact-form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--card-padding);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-form .form-control {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(88, 174, 76, 0.25);
}

.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: var(--btn-padding);
  font-size: var(--font-size-base);
  font-weight: 500;
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}

.contact-form .btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.footer {
  background-color: var(--gray-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: var(--gray-medium);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-medium);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-primary-green {
  color: var(--primary-green);
}

.text-primary-blue {
  color: var(--primary-blue);
}

.text-primary-teal {
  color: var(--primary-teal);
}

.border-primary-green {
  border-color: var(--primary-green);
}

.border-primary-blue {
  border-color: var(--primary-blue);
}

.border-primary-teal {
  border-color: var(--primary-teal);
}

.shadow-custom {
  box-shadow: var(--shadow-md);
}

.rounded-custom {
  border-radius: var(--border-radius-lg);
}

/* ==========================================================================
   Animation Support - Respect prefers-reduced-motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-section::before,
  .hero-section::after {
    animation: none;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .shadow-sm,
  .shadow-md,
  .shadow-lg {
    box-shadow: none !important;
  }
} 

.hero-section h1 {
    padding-top: 250px;
}


/* 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;
    }
}
