* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; }

nav { background: #8B2E2E; padding: 1rem 2rem; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.logo-img { width: 50px; height: 50px; border-radius: 5px; object-fit: contain; }
.logo-text { color: white; font-size: 1.5rem; font-weight: bold; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: white; text-decoration: none; transition: color 0.3s; font-weight: 500; }
.nav-links a:hover { color: #e0e0e0; }

.hero { 
    background: linear-gradient(rgba(139,46,46,0.6), rgba(139,46,46,0.6)), url('/images/hero-background.jpeg'); 
    background-size: cover; 
    background-position: center; 
    color: white; 
    text-align: center; 
    padding: 8rem 2rem; 
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }

.btn { display: inline-block; padding: 1rem 2rem; background: #8B2E2E; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; margin: 0.5rem; transition: transform 0.3s, background 0.3s; border: none; cursor: pointer; font-size: 1rem; }
.btn:hover { transform: translateY(-2px); background: #6B2020; }
.btn-secondary { background: transparent; border: 2px solid white; color: white; }
.btn-secondary:hover { background: white; color: #8B2E2E; }

section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.bg-gray { background: #f5f5f5; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; }
.center { text-align: center; }
.center-btn { text-align: center; margin-top: 2rem; }
.page-section { padding-top: 6rem; }

h2 { font-size: 2.5rem; color: #8B2E2E; margin-bottom: 2rem; text-align: center; }
h3 { font-size: 1.5rem; color: #8B2E2E; margin-bottom: 1rem; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.service-card { background: white; padding: 2rem; border-radius: 10px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.service-img { width: 250px; height: 150px; max-width: 100%; border-radius: 8px; margin: 0 auto 1rem; object-fit: cover; }

.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 2rem; }
.about-image { width: 100%; max-width: 500px; height: 400px; border-radius: 10px; object-fit: cover; }
.about-text { font-size: 1.1rem; line-height: 1.8; }
.mb-1 { margin-bottom: 1rem; }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.portfolio-item { width: 100%; height: 300px; border-radius: 10px; object-fit: cover; }
.portfolio-grid-full { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.portfolio-card { text-align: center; }
.portfolio-card img { width: 100%; height: 300px; object-fit: cover; border-radius: 10px; }
.portfolio-card .img-placeholder { width: 100%; height: 300px; background: #ddd; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: #666; }
.portfolio-card p { margin-top: 0.5rem; font-weight: 500; color: #333; }

.cta-banner { background: #8B2E2E; color: white; text-align: center; padding: 4rem 2rem; margin-top: 4rem; }
.cta-banner h2 { color: white; }
.cta-text { font-size: 1.2rem; margin-bottom: 2rem; }

footer { background: #2d2d2d; color: white; padding: 3rem 2rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-section h3 { color: #d88888; margin-bottom: 1rem; }
.footer-section p { margin: 0.5rem 0; }
.footer-section a { color: #d88888; text-decoration: none; }
.footer-section a:hover { text-decoration: underline; }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icons a { display: inline-block; width: 40px; height: 40px; border-radius: 50%; transition: opacity 0.3s; }
.social-icons a:hover { opacity: 0.8; }
.social-icons img { width: 40px; height: 40px; border-radius: 50%; }
.copyright { text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #444; }

.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.contact-info { background: #f5f5f5; padding: 2rem; border-radius: 10px; }
.contact-info p { margin: 1rem 0; font-size: 1.1rem; }
.contact-info a { color: #8B2E2E; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.contact-form-container { background: #f5f5f5; padding: 2rem; border-radius: 10px; }
.contact-form-container h3 { margin-bottom: 1.5rem; }
#contactForm { display: flex; flex-direction: column; gap: 1rem; }
#contactForm input, #contactForm select, #contactForm textarea { padding: 1rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; font-family: inherit; }
#contactForm textarea { min-height: 150px; resize: vertical; }
#contactForm button { width: 100%; }

.service-detail { background: white; padding: 2rem; margin-bottom: 2rem; border-radius: 10px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.service-detail ul { list-style-position: inside; margin-top: 1rem; }
.service-detail li { margin: 0.5rem 0; }

.portfolio-filters { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn { padding: 0.75rem 1.5rem; background: white; border: 2px solid #8B2E2E; color: #8B2E2E; border-radius: 5px; cursor: pointer; transition: all 0.3s; font-weight: 500; }
.filter-btn:hover, .filter-btn.active { background: #8B2E2E; color: white; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.team-member { text-align: center; }
.team-photo { width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 1rem; object-fit: cover; }
.map-image { width: 100%; max-width: 600px; height: 400px; border-radius: 10px; margin: 2rem auto; object-fit: cover; }
.map-text { font-size: 1.2rem; }
.mission-text { text-align: center; font-size: 1.2rem; max-width: 800px; margin: 0 auto; }

.menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-links { flex-direction: column; gap: 1rem; width: 100%; display: none; }
    .nav-links.active { display: flex; margin-top: 1rem; }
    .about-preview, .contact-container { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .menu-toggle { display: block; }
}