/* =======================
   Sustainable Laptop Sleeves - Main Stylesheet
   Bootstrap 5 + Custom Variables
   ======================= */

/* CSS Variables for Color Palette */
:root {
  --primary-green: #6B8E5A;
  --secondary-sage: #9CAD88;
  --accent-cream: #F5F1EB;
  --dark-forest: #3C5233;
  --soft-beige: #E8DDD4;
  
  /* Light variations */
  --primary-green-light: #8FA67E;
  --secondary-sage-light: #B5C5A5;
  --accent-cream-light: #FEFCF9;
  
  /* Dark variations */
  --primary-green-dark: #4A6340;
  --secondary-sage-dark: #7A8C6B;
  --dark-forest-deep: #2B3C24;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  
  /* Spacing */
  --section-padding: 80px 0;
  --element-margin: 1.5rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-forest);
  background-color: #ffffff;
  scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  color: var(--dark-forest);
  margin-bottom: var(--element-margin);
}

h1 { font-size: 2.25rem; line-height: 1.2; }
h2 { font-size: 1.875rem; line-height: 1.3; }
h3 { font-size: 1.5rem; line-height: 1.4; }
h4 { font-size: 1.25rem; line-height: 1.4; }
h5 { font-size: 1.125rem; line-height: 1.5; }
h6 { font-size: 1rem; line-height: 1.5; }

p {
  font-size: var(--font-size-base);
  margin-bottom: var(--element-margin);
  color: var(--dark-forest);
}

.lead {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-light);
  color: var(--primary-green-dark);
}

/* Header Styles */
#header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(60, 82, 51, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--dark-forest);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--accent-cream) 0%, var(--soft-beige) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 400px;
  height: 400px;
  background: var(--secondary-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--dark-forest);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--dark-forest);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-large);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
#about {
  background-color: #ffffff;
}

.feature-card {
  background: var(--accent-cream-light);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--soft-beige);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(60, 82, 51, 0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

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

.feature-card p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
}

/* Services Section */
#services {
  background: linear-gradient(135deg, var(--soft-beige) 0%, var(--accent-cream) 100%);
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(60, 82, 51, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(60, 82, 51, 0.2);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h4 {
  color: var(--dark-forest);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.service-content p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

.service-features {
  margin: 1rem 0;
  font-size: var(--font-size-small);
  color: var(--secondary-sage-dark);
}

.service-price {
  color: var(--primary-green);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

/* Features Section */
#features {
  background-color: #ffffff;
}

/* Price Plan Section */
#priceplan {
  background: var(--accent-cream);
}

.price-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(60, 82, 51, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(60, 82, 51, 0.2);
}

.price-card h4 {
  color: var(--dark-forest);
  margin-bottom: 1rem;
}

.price-card .price {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-card ul li {
  padding: 0.5rem 0;
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
}

/* Team Section */
#team {
  background-color: #ffffff;
}

.team-member {
  text-align: center;
  background: var(--accent-cream-light);
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(60, 82, 51, 0.15);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-green);
}

.team-member h5 {
  color: var(--dark-forest);
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: var(--primary-green);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-small);
}

/* Reviews Section */
#reviews {
  background: var(--soft-beige);
}

.review-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(60, 82, 51, 0.1);
}

.review-card .quote {
  font-size: var(--font-size-base);
  color: var(--primary-green-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.review-card .author {
  color: var(--dark-forest);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-small);
}

/* Case Study Section */
#casestudy {
  background-color: #ffffff;
}

.case-item {
  background: var(--accent-cream-light);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  border-left: 4px solid var(--primary-green);
}

.case-item h4 {
  color: var(--dark-forest);
  margin-bottom: 1rem;
}

.case-item p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
}

/* Process Section */
#process {
  background: var(--accent-cream);
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(60, 82, 51, 0.1);
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-small);
}

.process-container {
  counter-reset: step-counter;
}

.process-step h4 {
  color: var(--dark-forest);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.process-step p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
}

/* Timeline Section */
#timeline {
  background-color: #ffffff;
}

.timeline-item {
  background: var(--accent-cream-light);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-sage);
}

.timeline-item h4 {
  color: var(--dark-forest);
  margin-bottom: 1rem;
}

.timeline-item p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
}

/* Career Section */
#career {
  background: var(--soft-beige);
}

.career-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(60, 82, 51, 0.1);
  transition: all 0.3s ease;
}

.career-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(60, 82, 51, 0.15);
}

.career-item h4 {
  color: var(--dark-forest);
  margin-bottom: 0.5rem;
}

.career-item .role {
  color: var(--primary-green);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

.career-item p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
}

/* Core Info Section */
#coreinfo {
  background-color: #ffffff;
}

.info-item {
  background: var(--accent-cream-light);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(60, 82, 51, 0.1);
}

.info-item i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.info-item h5 {
  color: var(--dark-forest);
  margin-bottom: 1rem;
}

.info-item p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
}

/* Contact Section */
#contacts {
  background: var(--accent-cream);
}

.contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(60, 82, 51, 0.1);
}

.contact-info {
  background: var(--primary-green);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
}

.contact-info h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--accent-cream);
  margin-right: 0.75rem;
}

/* Form Styles */
.form-control {
  border: 2px solid var(--soft-beige);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(107, 142, 90, 0.25);
  background-color: #ffffff;
}

.form-label {
  color: var(--dark-forest);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
  font-weight: var(--font-weight-medium);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 142, 90, 0.3);
}

/* Blog Section */
#blog {
  background-color: #ffffff;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(60, 82, 51, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(60, 82, 51, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h4 {
  color: var(--dark-forest);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.blog-content p {
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

.blog-content a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-small);
}

.blog-content a:hover {
  color: var(--primary-green-dark);
}

/* FAQ Section */
#faq {
  background: var(--soft-beige);
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(60, 82, 51, 0.1);
}

.faq-question {
  color: var(--dark-forest);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.75rem;
  font-size: var(--font-size-base);
}

.faq-answer {
  color: var(--primary-green-dark);
  font-size: var(--font-size-small);
  line-height: 1.6;
  margin: 0;
}

/* Gallery Section */
#gallery {
  background-color: #ffffff;
  padding: var(--section-padding);
}

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

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(60, 82, 51, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(60, 82, 51, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
#footer {
  background-color: var(--dark-forest);
  color: #ffffff;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

#footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-small);
}

#footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--secondary-sage-light);
}

.footer-brand {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-small);
  margin: 0;
}

/* Utilities */
.text-primary-green { color: var(--primary-green); }
.bg-primary-green { background-color: var(--primary-green); }
.text-secondary-sage { color: var(--secondary-sage); }
.bg-secondary-sage { background-color: var(--secondary-sage); }

/* Responsive Adjustments */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
}



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

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
    }
}
