:root {
  --primary-color: #5D4037; /* Dark Brown */
  --secondary-color: #D7CCC8; /* Wood Beige */
  --light-bg: #FFF8E1; /* Cream */
  --white: #FFFFFF;
  --accent-color: #C8A165; /* Accent Gold */
  --text-dark: #3e2723;
  --text-light: #795548;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Utilities */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light { background-color: var(--light-bg) !important; }
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }

/* Buttons */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 8px 22px;
  font-weight: 600;
  border-radius: 4px;
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer .logo-text {
  color: var(--white);
}

.nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(93, 64, 55, 0.7); /* Dark Brown Overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

/* Cards */
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--secondary-color);
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 25px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

/* Portfolio Lightbox */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.portfolio-item img {
  width: 100%;
  transition: all 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(200, 161, 101, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 60px 0 20px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--secondary-color);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-social a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-color);
}

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

#back-to-top.active {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #fff;
  transform: scale(1.1);
}

/* Page Header */
.page-header {
  padding: 100px 0 50px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}

/* Accordion Custom */
.accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--accent-color);
}

.accordion-button:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(200, 161, 101, 0.25);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Team Cards Animation */
.team-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(93, 64, 55, 0.15) !important;
}
.team-card img {
  transition: transform 0.3s ease;
}
.team-card:hover img {
  transform: scale(1.1);
}

/* Portfolio Nav Pills Overrides */
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-radius: 30px;
}
.nav-pills .nav-link {
  color: var(--text-light);
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.nav-pills .nav-link:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
. h o v e r - p r i m a r y : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y - c o l o r )   ! i m p o r t a n t ;   }  
 