:root { --blue: #007bff; --dark: #050505; --glass: rgba(255, 255, 255, 0.08); }
body { background: var(--dark); color: white; font-family: 'Montserrat', sans-serif; margin: 0; scroll-behavior: smooth; overflow-x: hidden; }

/* NAVBAR */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: rgba(0,0,0,0.95); position: fixed; top: 0; width: 100%; z-index: 1000; box-sizing: border-box; }
.nav-spacer { height: 110px; }
.new-logo { font-weight: 900; font-size: 1.6rem; line-height: 1; }
.new-logo .glow-part { color: var(--blue); }
.new-logo small { display: block; font-size: 0.6rem; letter-spacing: 4px; margin-top: 4px; color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 12px; }
.nav-links a { color: white; text-decoration: none; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; }
.nav-phone { background: var(--blue); padding: 8px 12px; border-radius: 5px; }

/* HERO */
.hero { height: 75vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero.jpg.jpeg'); background-size: cover; background-position: center 30%; text-align: center; padding: 0 5%; }
.glaze-text { font-size: clamp(1.8rem, 8vw, 4rem); font-weight: 900; line-height: 1.1; }
.highlight { color: var(--blue); }

/* SECTIONS */
.services, .gallery, .faq-section, .map-section, .contact-section { padding: 60px 5%; text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 1200px; margin: auto; }
.card { background: var(--glass); padding: 20px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: 0.3s; }
.service-img-large { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }

.gallery-container { max-width: 1100px; margin: auto; display: flex; flex-direction: column; gap: 20px; }
.gallery-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border: 1px solid var(--blue); border-radius: 10px; padding: 10px; }
.img-box { position: relative; height: 250px; border-radius: 8px; overflow: hidden; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }
.label { position: absolute; bottom: 8px; left: 8px; background: var(--blue); font-size: 0.6rem; padding: 4px 8px; border-radius: 4px; font-weight: 900; }

/* FAQ */
.faq-container { max-width: 800px; margin: auto; }
.faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(0,123,255,0.2); margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
.faq-question { width: 100%; padding: 20px; background: none; border: none; color: white; font-weight: 700; text-align: left; display: flex; justify-content: space-between; cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s ease-out; background: rgba(0,0,0,0.2); }
.faq-answer p { padding: 0 20px 20px; color: #ccc; font-size: 0.9rem; text-align: left; }

/* MAP */
.map-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: auto; align-items: center; background: var(--glass); padding: 30px; border-radius: 20px; border: 1px solid rgba(0,123,255,0.15); }
.area-list { list-style: none; padding: 0; text-align: left; font-weight: 700; color: var(--blue); }
.map-frame { border-radius: 15px; overflow: hidden; filter: grayscale(0.5) invert(0.9) hue-rotate(180deg); }

/* FORM */
.form-container { max-width: 700px; margin: auto; background: var(--glass); padding: 30px; border-radius: 20px; border: 1px solid rgba(0,123,255,0.2); }
.form-warning { background: rgba(255,193,7,0.1); color: #ffc107; padding: 12px; border-radius: 8px; font-size: 0.75rem; font-weight: 700; margin-bottom: 20px; }
.input-group { text-align: left; margin-bottom: 15px; }
.input-group label { color: var(--blue); font-size: 0.65rem; font-weight: 900; letter-spacing: 1px; display: block; margin-bottom: 5px; }
form input, form textarea { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: white; }
form input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 12px rgba(0,123,255,0.4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* BUTTONS & FOOTER */
.btn-primary { background: var(--blue); color: white; padding: 14px 28px; border-radius: 5px; font-weight: 900; border: none; cursor: pointer; text-decoration: none; }
.btn-secondary { border: 2px solid white; color: white; padding: 12px 26px; font-weight: 900; border-radius: 5px; margin-left: 10px; text-decoration: none; }
footer { padding: 40px; opacity: 0.6; font-size: 0.8rem; text-align: center; }

/* MOBILE */
@media (max-width: 768px) {
    .navbar { flex-direction: column; padding: 10px; }
    .nav-spacer { height: 130px; }
    .hero { height: 60vh; background-position: center 40%; }
    .form-row, .gallery-pair, .map-container { grid-template-columns: 1fr; }
    .img-box { height: 160px; }
    .mobile-float-btn { display: block; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: #28a745; color: white; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 900; z-index: 2000; }
}
/* MODAL POPUP */
.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    color: #222; /* ADD THIS: makes text dark */
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}
@keyframes popup {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.modal-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.call-btn {
    background: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.text-btn {
    background: #28a745;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}
/* FAQ HEADER TOGGLE */
.faq-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

#faqToggle {
    font-size: 28px;
    font-weight: 900;
    color: var(--blue);
}

#faqContainer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}