/* ========================================
   CANDLE REFILL KIOSKS - MAIN STYLES
   ======================================== */

/* CSS Variables - 5 Primary Colors + Shades */
:root {
  /* Primary Colors */
  --primary-green: #3d8b3d;
  --primary-amber: #f7931e;
  --primary-cream: #f5f5dc;
  --primary-sage: #87a96b;
  --primary-brown: #8b4513;
  
  /* Light Shades */
  --light-green: #7fb069;
  --light-amber: #fbb040;
  --light-cream: #fffef7;
  --light-sage: #a4c285;
  --light-brown: #d2b48c;
  
  /* Dark Shades */
  --dark-green: #2d5a2d;
  --dark-amber: #e67c00;
  --dark-cream: #f0f0d0;
  --dark-sage: #6b8e54;
  --dark-brown: #654321;
  
  /* Additional Colors */
  --white: #ffffff;
  --black: #333333;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --gray-dark: #495057;
  
  /* Typography */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

/* Gradients */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-sage) 100%);
}

.gradient-secondary {
  background: linear-gradient(135deg, var(--primary-amber) 0%, var(--light-amber) 100%);
}

.gradient-tertiary {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-cream) 100%);
}

/* Header */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--black);
  padding: 0.5rem 1rem;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2861, 139, 61, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-sage) 50%, var(--primary-amber) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
    padding-top: 150px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-large);
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-large);
  color: var(--primary-amber);
  margin-bottom: 1.5rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--gray-dark);
}

/* About Section */
.about-section {
  background: var(--light-cream);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition-smooth);
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-tertiary);
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--gray-medium);
}

.service-features li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-amber);
}

/* Features Section */
.features-section {
  background: var(--white);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-sage);
}

.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  margin-bottom: 2rem;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card.featured {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.05);
}

.price-card.featured .price-name,
.price-card.featured .price-price {
  color: var(--white);
}

.price-name {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.price-desc {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--gray-medium);
}

.price-features li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

.price-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-amber);
}

/* Team Section */
.team-section {
  background: var(--light-cream);
}

.team-card {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green);
}

.team-name {
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-amber);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background: var(--white);
}

.review-card {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
}

/* Case Study Section */
.casestudy-section {
  background: var(--gradient-tertiary);
}

.case-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Process Section */
.process-section {
  background: var(--light-sage);
}

.process-step {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

.process-step::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-container {
  counter-reset: process-counter;
}

/* Timeline Section */
.timeline-section {
  background: var(--white);
}

.timeline-item {
  padding: 1.5rem;
  border-left: 3px solid var(--primary-green);
  margin-left: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  background: var(--primary-amber);
  border-radius: 50%;
}

/* Career Section */
.career-section {
  background: var(--light-cream);
}

.career-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.career-role {
  color: var(--primary-amber);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 2rem;
}

.coreinfo-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-amber);
}

/* Blog Section */
.blog-section {
  background: var(--white);
}

.blog-card {
  background: var(--light-cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-amber);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-amber);
}

/* FAQ Section */
.faq-section {
  background: var(--light-sage);
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--primary-green);
  color: var(--white);
  padding: 1rem 1.5rem;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: var(--dark-green);
}

.faq-answer {
  padding: 1.5rem;
  margin: 0;
  color: var(--gray-dark);
  background: var(--white);
  display: none;
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Contact Section */
.contact-section {
  background: var(--gradient-tertiary);
}

.contact-form {
  background: var(--dark-amber);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--light-cream);
  border-radius: 8px;
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(61, 139, 61, 0.1);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(61, 139, 61, 0.3);
}

.contact-info {
  background: var(--primary-green);
  color: var(--white);
  padding: 2rem;
  border-radius: 16px;
}

.contact-info h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--light-cream);
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--primary-amber);
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--light-cream);
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer a:hover {
  color: var(--primary-amber);
}

.footer-bottom {
  border-top: 1px solid var(--primary-green);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: var(--light-cream);
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 100%;
  max-width: 300px;
  height: 50px;
  object-fit: contain;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-amber);
  outline-offset: 2px;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
