:root {
  --primary-sage: #7e9b62;
  --primary-cream: #f7f5f3;
  --primary-terracotta: #d9ac7b;
  --primary-forest: #394515;
  --primary-blush: #dbcacb;
  --light-sage: #c0deb3;
  --light-cream: #faf9f8;
  --light-terracotta: #dfb085;
  --light-forest: #5d6734;
  --light-blush: #dbd8d8;
  --dark-sage: #5e6e43;
  --dark-cream: #dfdfdf;
  --dark-terracotta: #c19861;
  --dark-forest: #343e1d;
  --dark-blush: #edced2;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-forest);
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-blush) 100%);
  display: flex;
  align-items: center;
}

.hero-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decoration.top-right {
  top: 10%;
  right: -150px;
}

.hero-decoration.bottom-left {
  bottom: 10%;
  left: -150px;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

/* Services Cards */
.service-card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--primary-cream);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-price {
  background: var(--primary-sage);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: var(--primary-cream);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--light-sage);
}

/* Feature Icons */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Contact Form */
.contact-form {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 2rem;
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(146, 184, 114, 0.25);
}

/* Buttons */
.btn-primary-custom {
  background: var(--primary-sage);
  border: 2px solid var(--primary-sage);
  color: white;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* Navbar */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-forest);
}

.navbar-nav .nav-link {
  color: var(--primary-forest);
  font-weight: 500;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

/* Footer */
.footer-section {
  background: var(--primary-forest);
  color: var(--primary-cream);
}

.footer-section a {
  color: var(--light-cream);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--primary-sage);
}

/* Gallery */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* FAQ Cards */
.faq-card {
  border: 2px solid var(--light-sage);
  border-radius: 15px;
  margin-bottom: 1rem;
  background: var(--primary-cream);
}

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

.faq-answer {
  color: var(--dark-forest);
}

/* Reviews */
.review-card {
  border: none;
  border-radius: 15px;
  background: var(--primary-cream);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-sage);
  border-radius: 50%;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  background: var(--primary-cream);
  margin-bottom: 1rem;
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-cream);
}

.breadcrumb-image {
  width: 100%;
  max-width: 120px;
  height: auto;
} 

.hero-section h1 {
    padding-top: 200px;
}


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

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}
