:root { --gold: #f1c40f; --dark: #111; --white: #fff; }
body { margin: 0; font-family: 'Montserrat', sans-serif; background: var(--dark); color: var(--white); scroll-behavior: smooth; }
header { padding: 15px 5%; background: rgba(0,0,0,0.9); position: fixed; width: 90%; z-index: 1000; border-bottom: 1px solid #333; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: bold; }
.logo span { color: var(--gold); }
nav ul { display: flex; list-style: none; }
nav ul li a { color: #ccc; text-decoration: none; margin: 0 15px; font-weight: bold; transition: 0.3s; }
nav ul li a:hover { color: var(--gold); }
.cta-btn-nav { background: var(--gold); color: #000; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: bold; }

.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('64706.jpg'); background-size: cover; background-position: center; }
.hero h1 { font-size: 3.5rem; line-height: 1; font-family: 'Oswald', sans-serif; }
.highlight { color: var(--gold); }
.promo-box { background: var(--gold); color: #000; padding: 20px; margin: 20px 0; border-radius: 4px; }
.main-btn { background: var(--white); color: #000; border: none; padding: 15px 40px; font-weight: bold; cursor: pointer; }

.products, .service-section, .gallery-section { padding: 80px 10%; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: #222; padding: 40px; border-top: 5px solid var(--gold); }

.service-flex { display: flex; flex-wrap: wrap; gap: 40px; text-align: left; align-items: center; }
.service-text { flex: 1; }
.map-container { flex: 1; height: 350px; background: #333; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.map-dot { width: 15px; height: 15px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(3); opacity: 0; } }

.gallery-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.gallery-item { position: relative; height: 250px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.item-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(241,196,15,0.8); opacity:0; display:flex; align-items:center; justify-content:center; transition:0.3s; color:#000; font-weight:bold; }
.gallery-item:hover .item-overlay { opacity: 1; }

.popup-overlay { display: none; position: fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.9); z-index:2000; align-items:center; justify-content:center; }
.popup-content { background: #fff; color:#000; padding:40px; border-radius:10px; width:90%; max-width:400px; text-align:center; position:relative; }
.close-popup { position:absolute; top:10px; right:15px; font-size:25px; cursor:pointer; }
#lead-form input { width:100%; padding:10px; margin:10px 0; box-sizing:border-box; }
.submit-btn { width:100%; padding:15px; background:#000; color:var(--gold); border:none; font-weight:bold; cursor:pointer; }

.floating-contact { position:fixed; bottom:20px; right:20px; background:var(--gold); color:#000; padding:15px 25px; border-radius:50px; text-align:center; box-shadow:0 5px 15px rgba(0,0,0,0.5); font-weight:bold; }
.floating-contact a { text-decoration:none; color:#000; font-size:1.2rem; }