/* Eco-Friendly Office Décor Service - Main Styles */

/* ===== CSS VARIABLES (Color Palette) ===== */
:root {
  /* Primary eco-friendly colors - pastel high-contrast */
  --eco-primary: #2d5016;      /* Deep forest green */
  --eco-secondary: #6b8e3d;    /* Sage green */
  --eco-accent: #8fbc8f;       /* Light sea green */
  --eco-neutral: #f5f5dc;      /* Beige */
  --eco-highlight: #d2b48c;    /* Tan */
  
  /* Light and dark shades */
  --eco-light: #f8fdf4;        /* Very light green */
  --eco-dark: #1a2e0a;         /* Very dark green */
  --eco-gray-light: #e8e8e8;
  --eco-gray-dark: #4a4a4a;
  
  /* Text colors */
  --text-primary: var(--eco-dark);
  --text-secondary: var(--eco-primary);
  --text-muted: var(--eco-gray-dark);
  
  /* Background colors */
  --bg-primary: #ffffff;
  --bg-secondary: var(--eco-light);
  --bg-accent: var(--eco-neutral);
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Conservative typography */
h1 { font-size: 2.2rem; font-weight: 700; color: var(--text-primary); }
h2 { font-size: 1.8rem; font-weight: 600; color: var(--text-secondary); }
h3 { font-size: 1.4rem; font-weight: 600; color: var(--text-secondary); }
h4 { font-size: 1.2rem; font-weight: 500; color: var(--text-secondary); }
h5 { font-size: 1.1rem; font-weight: 500; color: var(--text-secondary); }
p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ===== HEADER & NAVIGATION ===== */
.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--eco-primary);
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--eco-accent);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--eco-light) 0%, var(--bg-secondary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--eco-neutral);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
}

.section-alternate {
  background-color: var(--bg-secondary);
}

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

.section-subtitle {
  color: var(--eco-secondary);
  text-align: center;
  margin-bottom: 1rem;
}

/* ===== CARDS & COMPONENTS ===== */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--bg-primary);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.15);
}

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

/* ===== SERVICES CARDS ===== */
.service-card {
  text-align: center;
  padding: 2rem 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eco-primary);
  margin-top: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.3rem 0;
  color: var(--text-muted);
}

.service-features li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--eco-accent);
  margin-right: 0.5rem;
}

/* ===== TEAM CARDS ===== */
.team-card {
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--eco-accent);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background-color: var(--bg-accent);
  border-left: 4px solid var(--eco-accent);
  padding: 2rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--eco-primary);
}

/* ===== FAQ CARDS ===== */
.faq-card {
  margin-bottom: 1rem;
  border-left: 3px solid var(--eco-accent);
}

.faq-question {
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn-eco-primary {
  background-color: var(--eco-primary);
  border-color: var(--eco-primary);
  color: white;
  font-weight: 500;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-eco-primary:hover {
  background-color: var(--eco-dark);
  border-color: var(--eco-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-eco-secondary {
  background-color: transparent;
  border: 2px solid var(--eco-accent);
  color: var(--eco-accent);
  font-weight: 500;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-eco-secondary:hover {
  background-color: var(--eco-accent);
  color: white;
}

/* ===== FORMS ===== */
.form-control {
  border: 2px solid var(--eco-gray-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

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

.form-label {
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--eco-dark);
  color: var(--eco-light);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--eco-accent);
  margin-bottom: 1rem;
}

footer p, footer li {
  color: var(--eco-gray-light);
}

footer a {
  color: var(--eco-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--eco-light);
}

.footer-bottom {
  border-top: 1px solid var(--eco-secondary);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* ===== GALLERY ===== */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

/* ===== ANIMATIONS (Sal.js ready) ===== */
.sal-animate {
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

/* ===== UTILITIES ===== */
.bg-eco-light { background-color: var(--eco-light); }
.bg-eco-primary { background-color: var(--eco-primary); }
.bg-eco-accent { background-color: var(--eco-accent); }

.text-eco-primary { color: var(--eco-primary); }
.text-eco-secondary { color: var(--eco-secondary); }
.text-eco-accent { color: var(--eco-accent); }

.border-eco-accent { border-color: var(--eco-accent); }

/* ===== PROCESS/TIMELINE STYLES ===== */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--eco-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.timeline-item {
  border-left: 3px solid var(--eco-accent);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--eco-accent);
}

/* ===== PRICE PLAN STYLES ===== */
.price-card {
  text-align: center;
  padding: 2rem;
  border: 2px solid var(--eco-gray-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--eco-accent);
  transform: translateY(-5px);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eco-primary);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--eco-accent);
  margin-right: 0.5rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}



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