/* assets/style.css - simple, clean responsive styles */
:root{--accent:#496D8F;--bg:#f6f7fb;--max:1000px}
*{box-sizing:border-box}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;margin:0;background:var(--bg);color:#222;line-height:1.5}
.wrap{max-width:var(--max);margin:0 auto;padding:0 16px}
.site-header{background:#fff;border-bottom:1px solid #e6e9ef}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;padding:12px 16px}
.logo a{text-decoration:none;color:var(--accent);font-weight:700}
.main-nav a{margin-left:12px;text-decoration:none;color:#333}
.hero{display:flex;flex-wrap:wrap;align-items:center;gap:18px;padding:28px 0}
.hero-inner{flex:1;min-width:260px}
.hero-image img{max-width:380px;width:100%;border-radius:8px;box-shadow:0 6px 18px rgba(0,0,0,0.08)}
.rate{font-size:1.2rem;font-weight:700;color:var(--accent)}
.cta{display:inline-block;padding:10px 16px;background:var(--accent);color:#fff;border-radius:6px;text-decoration:none}
.features, .gallery, section{background:#fff;margin:18px 0;padding:16px;border-radius:8px;box-shadow:0 6px 18px rgba(0,0,0,0.02)}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:8px}
.grid img{width:100%;height:110px;object-fit:cover;border-radius:6px}
.form label{display:block;margin-bottom:10px}
.form input[type="text"], .form input[type="tel"], .form input[type="date"], .form textarea{width:100%;padding:8px;border:1px solid #d7dbe6;border-radius:6px}
.btn, .form input[type="submit"]{display:inline-block;padding:10px 14px;background:var(--accent);color:#fff;border-radius:6px;border:0;cursor:pointer;text-decoration:none}
.site-footer{padding:12px 0;text-align:center;color:#666;font-size:0.9rem;background:transparent}
.whatsapp-float{position:fixed;right:16px;bottom:16px;background:#25D366;color:#fff;padding:12px 14px;border-radius:50px;text-decoration:none;box-shadow:0 6px 18px rgba(0,0,0,0.15)}
@media (max-width:720px){.hero{flex-direction:column}.hero-image img{max-width:100%}}
/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.lightbox.visible {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.lightbox.visible .lightbox-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* New: Navigation buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1rem;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* New: Caption text */
.caption {
    position: absolute;
    bottom: 2rem;
    color: #fff;
    font-size: 1.25rem;
    padding: 8px 12px;
    width: 80%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
}
/* Social Icons Styling */
.social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem; /* Space between icons */
    margin: 1.5rem 0;
}

.social-icons a {
    color: #333; /* Default icon color */
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons svg {
    width: 2rem;
    height: 2rem;
}

.social-icons a[href*="facebook.com"]:hover {
    color: #1877F2;
}
.social-icons a[href*="instagram.com"]:hover {
    color: #C13584;
}
.social-icons a[href*="x.com"]:hover {
    color: #000;
}
.social-icons a[href*="youtube.com"]:hover {
    color: #FF0000;
}
.social-icons a[href*="linkedin.com"]:hover {
    color: #0A66C2;
}
.social-icons a[href*="wa.me"]:hover {
    color: #25D366;
}

/* Payment Buttons & Modal Styling */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-buttons button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.payment-buttons button:hover {
    background-color: #0056b3;
}

.payment-instructions {
    border: 1px solid #ccc;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    display: none; /* Initially hidden */
}

.payment-instructions.show {
    display: block;
}