:root {
  /* Primary Color Palette - High Contrast Pastels */
  --color-primary-sage: #93b997;
  --color-primary-sage-light: #ccf2c8;
  --color-primary-sage-dark: #5a835a;
  
  --color-primary-cream: #f9f4d5;
  --color-primary-cream-light: #FEFEF8;
  --color-primary-cream-dark: #dcdbcb;
  
  --color-primary-terracotta: #dc8046;
  --color-primary-terracotta-light: #fe9360;
  --color-primary-terracotta-dark: #895d12;
  
  --color-primary-forest: #277b5a;
  --color-primary-forest-light: #449c64;
  --color-primary-forest-dark: #194d2f;
  
  --color-primary-paprika: #df6600;
  --color-primary-paprika-light: #d7633b;
  --color-primary-paprika-dark: #9c5300;
  
  /* Text Colors */
  --text-dark: #303e59;
  --text-light: #FFFFFF;
  --text-muted: #738091;
  
  /* Background Gradients */
  --gradient-hero: linear-gradient(135deg, var(--color-primary-sage) 0%, var(--color-primary-forest) 100%);
  --gradient-section: linear-gradient(45deg, var(--color-primary-cream) 0%, var(--color-primary-cream-light) 100%);
  --gradient-card: linear-gradient(to bottom, var(--color-primary-cream-light) 0%, var(--color-primary-cream) 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--color-primary-cream-light);
}

/* Typography */
.navbar-brand {
  font-size: 1.32rem !important;
  font-weight: 600;
  color: var(--color-primary-forest) !important;
}

h1 {
  font-size: 2.58rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.05rem;
}

h3 {
  font-size: 1.63rem;
  font-weight: 600;
  margin-bottom: 0.86rem;
}

h4 {
  font-size: 1.28rem;
  font-weight: 500;
  margin-bottom: 0.82rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar {
  background: var(--gradient-section) !important;
  box-shadow: 0 6px 9px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary-forest) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../HON_images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.hero-text h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-text p {
  font-size: 1.22rem;
  opacity: 0.95;
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--color-primary-forest);
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-primary-terracotta);
}

/* Cards */
.card {
  background: var(--gradient-card);
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 25px rgba(0,0,0,0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--color-primary-forest);
  font-weight: 600;
  margin-bottom: 0.93rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.99rem;
}

/* Service Items */
.service-item {
  text-align: center;
  padding: 2rem 1rem;
}

.service-price {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--color-primary-terracotta);
  margin: 1rem 0;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--color-primary-sage);
  margin-bottom: 1rem;
}

.team-member h4 {
  color: var(--color-primary-forest);
}

.team-member p {
  color: var(--text-muted);
  font-style: italic;
}

/* Reviews/Testimonials */
.review-card {
  background: var(--color-primary-cream-light);
  border-left: 4px solid var(--color-primary-terracotta);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.review-author {
  color: var(--color-primary-forest);
  font-weight: 600;
  margin-top: 1rem;
}

/* FAQ Section */
.faq-item {
  background: var(--color-primary-cream-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--color-primary-sage-light);
  padding: 1rem 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--color-primary-sage);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-muted);
  display: none;
}

.faq-answer.show {
  display: block;
}

/* Contact Form */
.contact-form {
  background: var(--gradient-card);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--color-primary-sage-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary-forest);
  box-shadow: 0 0 0 0.2rem rgba(47, 130, 92, 0.25);
}

.btn-primary {
  background: var(--color-primary-forest);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-primary-forest-dark);
  transform: translateY(-2px);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--color-primary-forest);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--color-primary-sage-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-primary-sage-light);
}

.footer-bottom {
  border-top: 1px solid var(--color-primary-forest-light);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Timeline Styling */
.timeline-item {
  position: relative;
  padding: 1.5rem;
  background: var(--color-primary-cream-light);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary-terracotta);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-item h4 {
  color: var(--color-primary-forest);
  margin-bottom: 0.58rem;
}

.timeline-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-card h4 {
  color: var(--color-primary-forest);
  margin: 1rem 0;
}

.contact-info-card p {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0;
}

/* Border Classes */
.border-forest {
  border: 3px solid var(--color-primary-forest) !important;
}

.border-sage {
  border: 2px solid var(--color-primary-sage) !important;
}

.border-terracotta {
  border: 2px solid var(--color-primary-terracotta) !important;
}

/* Form Validation Styles */
.form-control.is-invalid {
  border-color: #db2a3f;
  background-image: none;
}

.form-control.is-invalid:focus {
  border-color: #c72828;
  box-shadow: 0 0 0 0.2rem rgba(227, 64, 59, 0.25);
}

/* Reviews Container Fix */
.reviews-section .row {
  transition: opacity 0.5s ease;
}

/* Utility Classes */
.text-sage { color: var(--color-primary-sage); }
.text-forest { color: var(--color-primary-forest); }
.text-terracotta { color: var(--color-primary-terracotta); }
.text-paprika { color: var(--color-primary-paprika); }
.bg-sage { background-color: var(--color-primary-sage); }
.bg-cream { background-color: var(--color-primary-cream); }

/* Process/Timeline */
.process-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.process-step::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--color-primary-terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.process-container {
  counter-reset: process-counter;
}

/* Loading Animation */
.loading-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #cec3c1 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 80vh;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.84rem;
  }
  
  h2 {
    font-size: 1.56rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
