/* ========================================
   SUSTAINABLE LAPTOP SLEEVE MANUFACTURING
   Main CSS - Bootstrap 5 Compatible
   ======================================== */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-green: #4a7c59;
  --primary-green-light: #6b9470;
  --primary-green-dark: #2d4a35;
  
  --accent-blue: #5b7fa6;
  --accent-blue-light: #7a9bc4;
  --accent-blue-dark: #3d5470;
  
  --neutral-beige: #d4c4a8;
  --neutral-beige-light: #e6d9c2;
  --neutral-beige-dark: #b8a584;
  
  --warm-orange: #d4904a;
  --warm-orange-light: #e6a764;
  --warm-orange-dark: #b8732d;
  
  --earth-brown: #8b6f47;
  --earth-brown-light: #a5855e;
  --earth-brown-dark: #6b5530;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.4rem;
  --font-size-h4: 1.2rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --section-padding-mobile: 60px 0;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
    overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--primary-green-dark);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--primary-green);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--accent-blue-dark);
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
}

p {
  font-size: var(--font-size-base);
  color: #555;
  margin-bottom: 1rem;
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-green-dark);
}

/* ========================================
   HEADER SECTION
   ======================================== */

#header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

#header .navbar {
  padding: 1rem 0;
}

#header .navbar-nav .nav-link {
  color: var(--primary-green-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

#header .navbar-nav .nav-link:hover {
  color: var(--accent-blue);
}

/* ========================================
   HERO SECTION
   ======================================== */

#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-beige-light) 0%, var(--primary-green-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--accent-blue-light);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(-15deg);
}

#hero .hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

#hero .hero-image {
  position: relative;
  z-index: 2;
}

/* ========================================
   SECTION SPACING
   ======================================== */

.section {
  padding: var(--section-padding);
}

#about,
#services,
#features,
#priceplan,
#team,
#reviews,
#casestudy,
#process,
#timeline,
#career,
#coreinfo,
#blog,
#faq,
#gallery,
#contact {
  padding: var(--section-padding);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

#about {
  background-color: #fafafa;
}

#about .feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

#about .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

#about .feature-card i {
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

#services {
  background-color: #fff;
}

#services .service-card {
  background: #fff;
  border: 2px solid var(--neutral-beige);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

#services .service-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.15);
}

#services .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

#services .service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-top: 1rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

#features {
  background-color: var(--neutral-beige-light);
}

#features .feature-item {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
}

#features .feature-item i {
  color: var(--accent-blue);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* ========================================
   PRICE PLAN SECTION
   ======================================== */

#priceplan {
  background-color: #fff;
}

#priceplan .price-card {
  background: #fff;
  border: 2px solid var(--neutral-beige);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

#priceplan .price-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 15px 40px rgba(74, 124, 89, 0.15);
}

#priceplan .price-card.featured {
  border-color: var(--primary-green);
  transform: scale(1.05);
}

#priceplan .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin: 1rem 0;
}

#priceplan .price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

#priceplan .price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-beige);
}

#priceplan .price-features li:last-child {
  border-bottom: none;
}

/* ========================================
   TEAM SECTION
   ======================================== */

#team {
  background-color: var(--neutral-beige-light);
}

#team .team-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

#team .team-card:hover {
  transform: translateY(-5px);
}

#team .team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-green-light);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

#reviews {
  background-color: #fff;
}

#reviews .review-card {
  background: var(--neutral-beige-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
}

#reviews .review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-green);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: serif;
}

#reviews .review-text {
  margin-top: 2rem;
  font-style: italic;
  color: #555;
}

#reviews .review-author {
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-top: 1rem;
}

/* ========================================
   CASE STUDY SECTION
   ======================================== */

#casestudy {
  background-color: var(--accent-blue-light);
  background-image: linear-gradient(135deg, var(--accent-blue-light) 0%, var(--primary-green-light) 100%);
}

#casestudy .case-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  height: 100%;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

#process {
  background-color: #fff;
}

#process .process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

#process .process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -25px;
  width: 50px;
  height: 2px;
  background: var(--primary-green);
  transform: translateY(-50%);
}

#process .process-step:last-child::after {
  display: none;
}

#process .process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */

#timeline {
  background-color: var(--neutral-beige-light);
}

#timeline .timeline-item {
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ========================================
   CAREER SECTION
   ======================================== */

#career {
  background-color: #fff;
}

#career .career-card {
  background: var(--neutral-beige-light);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

#career .career-card:hover {
  transform: translateY(-3px);
}

/* ========================================
   CORE INFO SECTION
   ======================================== */

#coreinfo {
  background-color: var(--primary-green-light);
  color: #fff;
}

#coreinfo .info-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(10px);
}

#coreinfo .info-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* ========================================
   BLOG SECTION
   ======================================== */

#blog {
  background-color: #fafafa;
}

#blog .blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

#blog .blog-card:hover {
  transform: translateY(-5px);
}

#blog .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#blog .blog-card-body {
  padding: 1.5rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

#faq {
  background-color: #fff;
}

#faq .faq-card {
  background: var(--neutral-beige-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

#faq .faq-question {
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-bottom: 0.5rem;
}

#faq .faq-answer {
  color: #555;
  margin: 0;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

#gallery {
  background-color: var(--neutral-beige-light);
  padding: var(--section-padding);
}

#gallery .gallery-item {
  margin-bottom: 2rem;
}

#gallery .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#gallery .gallery-item img:hover {
  transform: scale(1.05);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

#contact {
  background-color: #fff;
}

#contact .contact-form {
  background: var(--neutral-beige-light);
  border-radius: 12px;
  padding: 2.5rem;
}

#contact .contact-info {
  background: var(--primary-green);
  color: #fff;
  border-radius: 12px;
  padding: 2.5rem;
}

#contact .contact-info i {
  color: var(--neutral-beige-light);
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

/* ========================================
   FOOTER SECTION
   ======================================== */

#footer {
  background-color: var(--primary-green-dark);
  color: #fff;
  padding: 3rem 0 2rem;
}

#footer .footer-section {
  margin-bottom: 2rem;
}

#footer .footer-section h5 {
  color: var(--neutral-beige-light);
  margin-bottom: 1rem;
}

#footer .footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer .footer-section a:hover {
  color: var(--neutral-beige-light);
}

#footer .footer-bottom {
  border-top: 1px solid var(--primary-green);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-primary-green {
  color: var(--primary-green);
}

.text-accent-blue {
  color: var(--accent-blue);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

.bg-accent-blue {
  background-color: var(--accent-blue);
}

.btn-primary-green {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
}

.btn-primary-green:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  color: #fff;
}

.btn-accent-blue {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

.btn-accent-blue:hover {
  background-color: var(--accent-blue-dark);
  border-color: var(--accent-blue-dark);
  color: #fff;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   FORM STYLES
   ======================================== */

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */

.decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--warm-orange);
  top: 10%;
  left: -5%;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-blue);
  bottom: 20%;
  right: -3%;
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
