:root {
    --primary-color: #8B5A2B; /* Rich wood brown */
    --secondary-color: #D2B48C; /* Tan */
    --dark-color: #5C4033; /* Dark brown */
    --light-color: #F5DEB3; /* Wheat */
    --accent-color: #A0522D; /* Sienna */
}

/* Base Styles */
body {
    font-family: 'open sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'open sans', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-light:hover {
    color: var(--primary-color);
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: white;
    font-size: 14px;
}

.top-bar i {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    background-color: var(--primary-color) !important;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: white !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
}

.nav-link.active, .nav-link:hover {
    color: white !important;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../images/wood-texture.jpg');
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card .card-body {
    padding: 25px;
}

.service-card .card-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Feature Icons */
.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* Testimonials */
.testimonial-item {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-item img {
    border: 3px solid var(--light-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(139, 90, 43, 0.8), rgba(139, 90, 43, 0.8)), url('../images/wood-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 42px;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--light-color);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

/* Service Box */
.service-box {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-box ul {
    padding-left: 20px;
}

.service-box ul li {
    margin-bottom: 8px;
}

/* Process Steps */
.process-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--light-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 20%;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Portfolio */
.portfolio-filter {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.portfolio-filter li {
    padding: 8px 20px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-filter li.active, .portfolio-filter li:hover {
    background-color: var(--primary-color);
    color: white;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 90, 43, 0.9);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    padding: 20px;
    color: white;
}

.portfolio-info h5 {
    color: white;
    margin-bottom: 10px;
}

.portfolio-zoom {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    line-height: 50px;
    margin-top: 15px;
}

/* About Section */
.about-image {
    position: relative;
    padding-right: 30px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 0;
    bottom: 0;
    border: 5px solid var(--light-color);
    z-index: -1;
}

.signature {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Team */
.team-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--light-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Form */
.contact-form .form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 0;
    margin-bottom: 20px;
}

.contact-form textarea.form-control {
    height: auto;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-info {
    background-color: var(--light-color);
    padding: 30px;
    height: 100%;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Map */
.map-container {
    height: 400px;
    border: 5px solid var(--light-color);
}

/* Footer */
.footer {
    background-color: black;
    color: white;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 36px;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .step {
        width: 50%;
        margin-bottom: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section .col-lg-6:last-child {
        margin-top: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
    
    .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .step {
        width: 100%;
    }
    
    .portfolio-filter {
        flex-wrap: wrap;
    }
    
    .portfolio-filter li {
        margin-bottom: 10px;
    }
}
