/* Bamboo Household Products - Main Stylesheet */

/* CDN Imports */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Bamboo Color Palette */
:root {
  /* Primary Colors */
  --bamboo-green: #7ba05b;
  --bamboo-cream: #f4f1e8;
  --bamboo-earth: #8b7355;
  --bamboo-sage: #9caf88;
  --bamboo-natural: #e8e0d0;
  
  /* Light/Dark Shades */
  --bamboo-green-light: #a4c47a;
  --bamboo-green-dark: #5c7a44;
  --bamboo-cream-light: #faf8f3;
  --bamboo-cream-dark: #e6ddd1;
  --bamboo-earth-light: #a68d6f;
  --bamboo-earth-dark: #6b5942;
  --bamboo-sage-light: #b8cc9f;
  --bamboo-sage-dark: #7a9068;
  --bamboo-natural-light: #f0e8d8;
  --bamboo-natural-dark: #d4c4b0;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--bamboo-green) 0%, var(--bamboo-sage) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--bamboo-cream) 0%, var(--bamboo-natural) 100%);
  --gradient-accent: linear-gradient(135deg, var(--bamboo-earth) 0%, var(--bamboo-green-dark) 100%);
  
  /* Text Colors */
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #ffffff;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-max-width: 1200px;
  
  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bamboo-cream-light);
  font-size: 16px;
  overflow-x: hidden;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Links */
a {
  color: var(--bamboo-green);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--bamboo-green-dark);
}

/* Buttons */
.btn {
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(123, 160, 91, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 160, 91, 0.4);
  color: var(--text-light);
}

.btn-secondary {
  background: var(--bamboo-cream);
  color: var(--text-primary);
  border: 2px solid var(--bamboo-green);
}

.btn-secondary:hover {
  background: var(--bamboo-green);
  color: var(--text-light);
}

/* Header */
header {
  background: var(--bamboo-cream-light);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bamboo-green) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover {
  color: var(--bamboo-green) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--bamboo-cream-light);
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--text-light);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  margin-bottom: 2rem;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--bamboo-green);
  margin-bottom: 1rem;
}

.about-feature h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.about-feature p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Services Section */
.services {
  background: var(--gradient-secondary);
}

.service-item {
  background: var(--text-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  height: 100%;
  margin-bottom: 2rem;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-item h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bamboo-green);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--bamboo-natural);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  background: var(--bamboo-cream-light);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Price Plan Section */
.priceplan {
  background: var(--gradient-secondary);
}

.price-item {
  background: var(--text-light);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  height: 100%;
  margin-bottom: 2rem;
  position: relative;
}

.price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.price-item.featured {
  border: 3px solid var(--bamboo-green);
}

.price-item.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bamboo-green);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bamboo-green);
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.8rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--bamboo-natural);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background: var(--bamboo-cream-light);
}

.team-member {
  text-align: center;
  background: var(--text-light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  margin-bottom: 2rem;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--bamboo-green);
}

.team-member h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--bamboo-green);
  font-weight: 500;
  margin-bottom: 0;
}

/* Reviews Section */
.reviews {
  background: var(--gradient-secondary);
  position: relative;
}

.review-item {
  background: var(--text-light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  position: relative;
}

.review-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--bamboo-green);
  opacity: 0.3;
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.review-author {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0;
}

/* Case Study Section */
.casestudy {
  background: var(--bamboo-cream-light);
}

.casestudy-item {
  background: var(--text-light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  margin-bottom: 2rem;
}

.casestudy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.casestudy-item h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.casestudy-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Process Section */
.process {
  background: var(--gradient-secondary);
}

.process-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}

.process-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -25px;
  width: 50px;
  height: 2px;
  background: var(--bamboo-green);
  transform: translateY(-50%);
}

.process-item:last-child::after {
  display: none;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--bamboo-green);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-item h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.process-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Timeline Section */
.timeline {
  background: var(--bamboo-cream-light);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--text-light);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
}

.timeline-date {
  flex: 0 0 150px;
  background: var(--bamboo-green);
  color: var(--text-light);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.timeline-content h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Career Section */
.career {
  background: var(--gradient-secondary);
}

.career-item {
  background: var(--text-light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  margin-bottom: 2rem;
}

.career-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.career-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--bamboo-green);
  font-weight: 500;
  margin-bottom: 1rem;
}

.career-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Core Info Section */
.coreinfo {
  background: var(--bamboo-cream-light);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--text-light);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  margin-bottom: 2rem;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--bamboo-green);
  margin-bottom: 1rem;
}

.coreinfo-item h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.coreinfo-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  background: var(--gradient-secondary);
}

.contact-form {
  background: var(--text-light);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--bamboo-natural);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition-base);
  background: var(--bamboo-cream-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bamboo-green);
  box-shadow: 0 0 0 3px rgba(123, 160, 91, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info-item {
  background: var(--text-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-item i {
  font-size: 2rem;
  color: var(--bamboo-green);
  margin-bottom: 1rem;
}

.contact-info-item h5 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Blog Section */
.blog {
  background: var(--bamboo-cream-light);
}

.blog-item {
  background: var(--text-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-content h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.blog-content a {
  color: var(--bamboo-green);
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background: var(--gradient-secondary);
}

.faq-item {
  background: var(--text-light);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem 2rem;
  background: var(--bamboo-cream-light);
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--bamboo-natural);
}

.faq-question i {
  transition: var(--transition-base);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--bamboo-cream-light);
}

/* Image Sizing Specifications - ensures correct placement regardless of actual image size */
img[src*="hero-"] {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

img[src*="service-"] {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

img[src*="feature-"] {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

img[src*="quality-"] {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

img[src*="team_"] {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

img[src*="blog-"] {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

img[src*="gallery-"] {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

img[src*="breadcrumb-"] {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Footer */
footer {
  background: var(--gradient-accent);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-base);
}

.footer-section ul li a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--bamboo-cream-light);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumbs img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bamboo-cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--bamboo-natural);
  border-top: 4px solid var(--bamboo-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--bamboo-green);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-base);
  z-index: 1000;
}

.scroll-top:hover {
  background: var(--bamboo-green-dark);
  transform: translateY(-3px);
}

.scroll-top.show {
  display: flex;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: var(--transition-slow);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition-slow);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-slow);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Print Styles */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  header, footer, .breadcrumbs, .scroll-top {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--bamboo-green);
  color: var(--text-light);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: var(--transition-base);
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
  color: var(--text-light);
}

/* Lightbox Modal Fallback */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: var(--bamboo-green);
  color: var(--text-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.lightbox-close:hover {
  background: var(--bamboo-green-dark);
  transform: scale(1.1);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bamboo-green);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-base);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
  background: var(--bamboo-green-dark);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  padding: 0.75rem;
  border-radius: 5px;
  transition: var(--transition-base);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--bamboo-cream);
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  background: var(--bamboo-cream);
  color: var(--text-primary);
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.newsletter-form button:hover {
  background: var(--bamboo-cream-light);
  transform: translateY(-2px);
}

/* Contact Additional Styles */
.contact-additional {
  background: var(--bamboo-cream-light);
  padding: 3rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.contact-additional h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* FAQ Quick Items */
.faq-quick-item {
  background: var(--text-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
}

.faq-quick-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-quick-item h5 {
  color: var(--bamboo-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-quick-item h5 i {
  font-size: 1.2rem;
}

.faq-quick-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contact-faq {
  background: var(--bamboo-natural-light);
  padding: 3rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.contact-faq h3 {
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

/* Keyboard Navigation Support */
.keyboard-navigation *:focus {
  outline: 3px solid var(--bamboo-green);
  outline-offset: 2px;
}

/* Enhanced Form Styles */
.form-control:focus {
  border-color: var(--bamboo-green);
  box-shadow: 0 0 0 0.2rem rgba(123, 160, 91, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid {
  border-color: var(--bamboo-green);
}

.invalid-feedback, .error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Header scroll effects */
header.scrolled {
  background: rgba(244, 241, 232, 0.95);
  backdrop-filter: blur(10px);
} 


/* 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;
}

.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;
    }
}
