* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; 
    color: #333; line-height: 1.6; background-color: #fafafa; 
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 15px; }

.btn { 
    display: inline-block; background: #d4a762; color: #fff; padding: 12px 28px; 
    border-radius: 4px; font-weight: 600; transition: all 0.3s ease; border: 1px solid #d4a762;
}
.btn:hover { background: #c09555; border-color: #c09555; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(212, 167, 98, 0.3); }
.btn-white { background: #fff; color: #d4a762; border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }

header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; transition: 0.3s; padding: 15px 0; }
header.scrolled { padding: 8px 0; }
.header-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; }
header.scrolled .header-top { padding-bottom: 5px; border-bottom: none; }
.logo img { height: 80px; width: auto; transition: 0.3s; }
.logofooter img { height: auto; width: 150px; transition: 0.3s; }

header.scrolled .logo img { height: 50px; }
.header-contact-info { display: flex; gap: 20px; }
header.scrolled .header-contact-info { display: none; }
.contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.contact-item i { color: #d4a762; }
.menu-toggle { display: none; font-size: 26px; color: #333; cursor: pointer; }

nav ul { display: flex; justify-content: center; gap: 30px; padding: 15px 0 0 0; }
header.scrolled nav ul { padding: 5px 0; }
nav ul li a { font-weight: 600; padding: 5px 0; position: relative; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; color: #555; }
nav ul li a.active, nav ul li a:hover { color: #d4a762; }
nav ul li a:after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: #d4a762; transition: 0.3s; }
nav ul li a.active:after, nav ul li a:hover:after { width: 100%; }

.hero { 
    background-size: cover; background-position: center; color: #fff; 
    text-align: center; padding: 70px 20px; 
    position: relative;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 800; text-shadow: 0px 2px 5px rgba(0,0,0,0.7); }
.hero p { font-size: 1.1rem; max-width: 700px; margin: 0 auto; text-shadow: 0px 2px 5px rgba(0,0,0,0.7); font-weight: 500; opacity: 0.95; }

section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2rem; margin-bottom: 15px; position: relative; display: inline-block; font-weight: 700; color: #222; }
.section-title h2:after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 50px; height: 3px; background: #d4a762; border-radius: 2px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { 
    background: #fff; padding: 40px 30px; border-radius: 8px; text-align: center; 
    transition: all 0.3s ease; border: 1px solid #eaeaea; 
}
.service-card:hover { transform: translateY(-5px); border-color: #d4a762; box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
.service-icon { font-size: 2.5rem; color: #d4a762; margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: #222; }
.service-card p { font-size: 0.95rem; color: #666; line-height: 1.6; }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.portfolio-item { height: 250px; border-radius: 8px; overflow: hidden; cursor: pointer; position: relative; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px; color: white; transform: translateY(100%); transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h3 { font-size: 1.1rem; margin-bottom: 5px; }
.portfolio-overlay p { font-size: 0.9rem; color: #d4a762; }

.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 2rem; color: #222; margin-bottom: 20px; }
.about-text p { margin-bottom: 15px; color: #555; font-size: 1.05rem; }
.about-image img { width: 100%; border-radius: 8px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.contact-container { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.contact-info-section h3 { font-size: 1.5rem; margin-bottom: 20px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-detail-item i { font-size: 1.5rem; color: #d4a762; margin-top: 3px; }
.contact-detail-item h4 { font-size: 1.1rem; margin-bottom: 5px; color: #222; }
.contact-detail-item p { color: #666; }

.cta { background-color: #d4a762; color: white; padding: 60px 0; text-align: center; }
.cta h2 { font-size: 2rem; margin-bottom: 15px; }
.cta p { font-size: 1.1rem; margin-bottom: 25px; opacity: 0.9; }

.lightbox { display: none; position: fixed; z-index: 10001; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 4px; box-shadow: 0 0 30px rgba(0,0,0,0.8); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; transition: 0.3s; }
.lightbox-close:hover { color: #d4a762; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 40px; cursor: pointer; padding: 20px; transition: 0.3s; user-select: none; }
.lightbox-prev { left: 10px; } .lightbox-next { right: 10px; }
.lightbox-prev:hover, .lightbox-next:hover { color: #d4a762; }

footer { background: #1a1a1a; color: #aaa; padding: 60px 0 20px; margin-top: 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-column h3 { color: #fff; margin-bottom: 20px; font-size: 1.2rem; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a:hover { color: #d4a762; }
.footer-column ul li i { margin-right: 10px; color: #d4a762; }
.social-links { margin-top: 15px; display: flex; gap: 10px; }
.social-links a { display: inline-flex; width: 36px; height: 36px; background: #333; color: white; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; }
.social-links a:hover { background: #d4a762; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; margin-top: 40px; font-size: 0.9rem; }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .header-contact-info { display: none; }
    
    nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; border-top: 1px solid #eee; box-shadow: 0 10px 10px rgba(0,0,0,0.05); }
    nav.active { display: block; }
    nav ul { flex-direction: column; padding: 0; gap: 0; }
    nav ul li a { padding: 15px 20px; display: block; border-bottom: 1px solid #f9f9f9; }
    nav ul li a:after { display: none; }
    
    .hero { padding: 40px 15px; }
    .hero h1 { font-size: 1.8rem; margin-bottom: 10px; }
    .hero p { font-size: 1rem; }
    
    section { padding: 40px 0; }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .contact-container { grid-template-columns: 1fr; }
    
    .lightbox-prev, .lightbox-next { display: none; }
}
