/* ========================================
   ECO-CONSCIOUS INTERIOR DESIGN TEMPLATE
   Main CSS - Bootstrap 5 Integration
======================================== */

:root {
  /* Primary Color Palette - Eco-conscious theme */
  --primary-green: #7FB069;
  --primary-sage: #A8DADC;
  --primary-cream: #F1FAEE;
  --primary-earth: #E76F51;
  --primary-charcoal: #457B9D;
  
  /* Light/Dark Shades */
  --light-green: #B8E6A3;
  --dark-green: #5A8A4A;
  --light-sage: #C4E7E9;
  --dark-sage: #7BC4C7;
  --light-cream: #FFFFFF;
  --dark-cream: #E8F3E6;
  --light-earth: #F0A085;
  --dark-earth: #D4553C;
  --light-charcoal: #6B9DC2;
  --dark-charcoal: #2E5A7D;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  color: var(--primary-charcoal);
  line-height: 1.6;
  background-color: var(--primary-cream);
    overflow-x: hidden;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
#header {
  background-color: var(--light-cream);
  box-shadow: 0 2px 10px rgba(69, 123, 157, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal);
  font-weight: 500;
  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(--primary-cream) 0%, var(--light-sage) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 175px;
}

.hero-decorative {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: var(--primary-sage);
  border-radius: 50% 30% 50% 30%;
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -50%;
  width: 200px;
  height: 200px;
  background: var(--primary-green);
  border-radius: 30% 50% 30% 50%;
  opacity: 0.4;
}

/* About Section */
#about {
  background-color: var(--light-cream);
  padding: 5rem 0;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(69, 123, 157, 0.1);
  height: 100%;
  border: 1px solid var(--light-sage);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(69, 123, 157, 0.15);
}

/* Services Section */
#services {
  background-color: var(--primary-cream);
  padding: 5rem 0;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Features Section */
#features {
  background-color: var(--light-sage);
  padding: 5rem 0;
}

/* Price Plan Section */
#priceplan {
  background-color: var(--primary-cream);
  padding: 5rem 0;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(69, 123, 157, 0.1);
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 3px solid var(--primary-green);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Team Section */
#team {
  background-color: var(--light-cream);
  padding: 5rem 0;
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card-body {
  padding: 1.5rem;
  text-align: center;
}

/* Reviews Section */
#reviews {
  background-color: var(--primary-sage);
  padding: 5rem 0;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  height: 100%;
}

/* Case Studies Section */
#casestudy {
  background-color: var(--primary-cream);
  padding: 5rem 0;
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
#process {
  background-color: var(--light-sage);
  padding: 5rem 0;
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  height: 100%;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background-color: var(--primary-cream);
  padding: 5rem 0;
}

.timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

/* Career Section */
#career {
  background-color: var(--light-cream);
  padding: 5rem 0;
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
#coreinfo {
  background-color: var(--primary-sage);
  padding: 5rem 0;
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  height: 100%;
  text-align: center;
}

/* Contact Section */
#contacts {
  background-color: var(--primary-cream);
  padding: 5rem 0;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(69, 123, 157, 0.1);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

/* Blog Section */
#blog {
  background-color: var(--light-cream);
  padding: 5rem 0;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  background-color: var(--primary-sage);
  padding: 5rem 0;
}

.faq-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--dark-charcoal);
}

/* Gallery Section */
#gallery {
  background-color: var(--primary-cream);
  padding: 5rem 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(69, 123, 157, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
#footer {
  background-color: var(--primary-charcoal);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--light-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-green);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--primary-charcoal);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-green);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Utility Classes */
.text-primary-green {
  color: var(--primary-green);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

.text-primary-sage {
  color: var(--primary-sage);
}

.bg-primary-sage {
  background-color: var(--primary-sage);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
} 


/* 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;
    }
}
