/* Biodegradable Phone Accessories - Main Styles */
:root {
  /* Primary Color Palette - Eco-friendly theme */
  --eco-green: #8fbc8f;
  --eco-green-light: #b8d4b8;
  --eco-green-dark: #6b9b6b;
  
  --earth-brown: #d2b48c;
  --earth-brown-light: #e5d0a6;
  --earth-brown-dark: #b8956f;
  
  --leaf-sage: #9caf88;
  --leaf-sage-light: #b5c4a3;
  --leaf-sage-dark: #7d8c6e;
  
  --natural-beige: #f5f5dc;
  --natural-beige-light: #fafaf0;
  --natural-beige-dark: #e8e8c8;
  
  --forest-teal: #708090;
  --forest-teal-light: #8fa3a3;
  --forest-teal-dark: #556b6b;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--natural-beige);
    overflow-x: hidden;
}

/* Conservative Typography */
h1 { font-size: 2.5rem; font-weight: 600; }
h2 { font-size: 2rem; font-weight: 500; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
p { font-size: 1rem; margin-bottom: 1rem; }

.navbar-brand { font-size: 1.5rem !important; }

/* Header Styles */
#header {
  background: linear-gradient(135deg, var(--eco-green), var(--leaf-sage));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: white;
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--natural-beige);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--natural-beige), var(--eco-green-light));
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--leaf-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 20%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 30%;
  left: 5%;
  width: 150px;
  height: 150px;
}

/* About Section */
#about {
  background-color: white;
  padding: 80px 0;
}

.feature-card {
  background: var(--natural-beige);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--eco-green-light);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  color: var(--eco-green);
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Services Section */
#services {
  background: linear-gradient(135deg, var(--natural-beige-light), var(--leaf-sage-light));
  padding: 80px 0;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-price {
  color: var(--eco-green-dark);
  font-size: 2rem;
  font-weight: 600;
  margin: 20px 0;
}

/* Features Section */
#features {
  background-color: white;
  padding: 80px 0;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-item i {
  color: var(--forest-teal);
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Price Plan Section */
#priceplan {
  background: var(--earth-brown-light);
  padding: 80px 0;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-value {
  color: var(--eco-green-dark);
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--natural-beige);
}

/* Team Section */
#team {
  background-color: white;
  padding: 80px 0;
}

.team-member {
  text-align: center;
  padding: 20px;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--leaf-sage-light);
  margin: 0 auto 20px;
  border: 5px solid var(--eco-green-light);
}

/* Reviews Section */
#reviews {
  background: var(--natural-beige-light);
  padding: 80px 0;
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.review-author {
  color: var(--eco-green-dark);
  font-weight: 600;
  margin-top: 20px;
}

/* Case Study Section */
#casestudy {
  background-color: white;
  padding: 80px 0;
}

.case-card {
  background: var(--natural-beige);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  border-left: 5px solid var(--eco-green);
}

/* Process Section */
#process {
  background: var(--leaf-sage-light);
  padding: 80px 0;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  margin: 20px 0;
  position: relative;
}

.process-number {
  background: var(--eco-green);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 20px;
}

/* Timeline Section */
#timeline {
  background-color: white;
  padding: 80px 0;
}

.timeline-item {
  background: var(--natural-beige);
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0;
  border-left: 5px solid var(--forest-teal);
}

/* Career Section */
#career {
  background: var(--earth-brown-light);
  padding: 80px 0;
}

.career-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.career-role {
  color: var(--eco-green-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Core Info Section */
#coreinfo {
  background-color: white;
  padding: 80px 0;
}

.info-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--natural-beige);
  border-radius: 10px;
  height: 100%;
}

.info-card i {
  color: var(--forest-teal);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Contact Section */
#contacts {
  background: var(--leaf-sage-light);
  padding: 80px 0;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--natural-beige);
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--eco-green);
  box-shadow: 0 0 0 0.2rem rgba(143, 188, 143, 0.25);
}

.btn-primary {
  background: var(--eco-green);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: var(--eco-green-dark);
}

/* Blog Section */
#blog {
  background-color: white;
  padding: 80px 0;
}

.blog-card {
  background: var(--natural-beige);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* FAQ Section */
#faq {
  background: var(--natural-beige-light);
  padding: 80px 0;
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  color: var(--eco-green-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Gallery Section */
#gallery {
  background-color: white;
  padding: 80px 0;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background: var(--forest-teal-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-section h5 {
  color: var(--natural-beige);
  margin-bottom: 20px;
}

.footer-section a {
  color: var(--natural-beige-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

/* Breadcrumb */
.breadcrumb-container {
  background: var(--natural-beige);
  padding: 20px 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  background: var(--eco-green);
  border-radius: 50%;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

.text-eco-green { color: var(--eco-green-dark); }
.text-earth-brown { color: var(--earth-brown-dark); }
.text-forest-teal { color: var(--forest-teal-dark); }

/* Utility Classes */
.bg-eco-light { background-color: var(--natural-beige-light); }
.bg-sage-light { background-color: var(--leaf-sage-light); }
.bg-earth-light { background-color: var(--earth-brown-light); } 


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