:root {
  --primary-color: #8B4513;
  --primary-light: #CD853F;
  --primary-dark: #654321;
  --secondary-color: #D2691E;
  --secondary-light: #F4A460;
  --secondary-dark: #A0522D;
  --accent-color: #228B22;
  --accent-light: #90EE90;
  --accent-dark: #006400;
  --neutral-color: #F5F5DC;
  --neutral-light: #FFFAF0;
  --neutral-dark: #DEB887;
  --text-color: #2F4F4F;
  --text-light: #708090;
  --bg-color: #FAFAFA;
}

/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
    overflow-x: hidden;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-color) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 2rem 0;
    padding-top: 225px;
}

.hero-image {
  position: relative;
}

.decorative-blob {
  position: absolute;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.blob-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}

.blob-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  background: var(--secondary-light);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-header {
  background-color: var(--neutral-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Services Section */
#services .card {
  height: 100%;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Team Section */
.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
}

/* Reviews Section */
.review-card {
  background-color: var(--neutral-light);
  border-left: 4px solid var(--accent-color);
}

/* FAQ Section */
.faq-card {
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
#gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Contact Form */
.form-control {
  border: 2px solid var(--neutral-color);
  border-radius: 8px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

/* Footer */
#footer {
  background-color: #2F2F2F;
  color: #FFFFFF;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-weight: 600;
}

#footer p {
  color: #E8E8E8;
}

#footer a {
  color: #E8E8E8;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: #FFFFFF;
}

#footer .btn-outline-light {
  border-color: #E8E8E8;
  color: #E8E8E8;
}

#footer .btn-outline-light:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #2F2F2F;
}

#site-copyright {
  color: #E8E8E8;
  font-size: 0.875rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #555555;
}

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

.section-padding {
  padding: 4rem 0;
}

/* Animations - respecting prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
  }
} 


/* 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);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.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;
    }
}
