/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: #8b4513;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #654321;
}

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #8b4513;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8b4513;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f8f8;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #8b4513;
}

/* Commercial Section */
.commercial-content {
    padding: 80px 0;
    background: #fff;
}

.commercial-intro {
    text-align: center;
    margin-bottom: 60px;
}

.commercial-intro h2 {
    color: #8b4513;
    margin-bottom: 20px;
}

.commercial-services h3,
.commercial-portfolio h3,
.commercial-values h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #8b4513;
}

.hero-commercial {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.hero-commercial h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-commercial h2 {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.founder-content {
    padding: 80px 0;
    background: #fff;
}

.founder-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.profile-image {
    border-radius: 8px;
    overflow: hidden;
}

.profile-text h3 {
    color: #8b4513;
    margin-bottom: 20px;
}

.founder-values h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.value-card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-card h4 {
    color: #8b4513;
    margin-bottom: 15px;
}

.hero-founder {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.hero-founder h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .founder-profile {
        grid-template-columns: 1fr;
    }
    
    .hero-founder h2 {
        font-size: 2rem;
    }
}

.about-values h3 {
    color: #8b4513;
    margin-bottom: 20px;
}

.about-values ul {
    list-style: none;
}

.about-values li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.about-values li:before {
    content: "✓";
    color: #8b4513;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    color: #8b4513;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    word-break: break-word;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0 10px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-slide {
    display: none;
    padding: 20px;
    text-align: center;
}

.carousel-slide.active {
    display: block;
    animation: fade 0.5s ease-in-out;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.carousel-nav {
    text-align: center;
    margin: 20px 0;
}

.carousel-btn {
    background-color: #8b4513;
    color: white;
    border: none;
    padding: 12px 20px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: #654321;
}

.carousel-indicators {
    text-align: center;
    margin-top: 20px;
}

.indicator {
    height: 12px;
    width: 12px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active,
.indicator:hover {
    background-color: #8b4513;
}

/* Additional spacing adjustments */
.portfolio-grid,
.commercial-portfolio .portfolio-grid {
    margin-top: 10px;
    margin-bottom: 40px;
}

.commercial-portfolio .portfolio-grid {
    gap: 20px;
}

.commercial-portfolio .portfolio-item {
    height: 250px;
}

/* Additional spacing adjustments */
.portfolio-grid,
.commercial-portfolio .portfolio-grid {
    margin-top: 10px;
    margin-bottom: 40px;
}

.commercial-portfolio .portfolio-grid {
    gap: 20px;
}

.commercial-portfolio .portfolio-item {
    height: 250px;
}