/* ==========================================
   ARA BATHROOMS | SOVEREIGN CSS v5.6
   ========================================== */

:root {
    --black-deep: #121212;
    --black-soft: #1a1a1a;
    --gold: #c5a02a;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --pearl: #e0e0e0;
    --glass: rgba(20, 20, 20, 0.9);
    --font-royal: 'Playfair Display', serif;
    --font-modern: 'Outfit', sans-serif;
    --anim-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --anim-fast: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --fluid-pad: clamp(80px, 12vw, 150px);
    --fluid-gap: clamp(20px, 4vw, 50px);
    --container-w: min(1400px, 90%);
}

/* HIDE SCROLLBAR */
::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; -ms-overflow-style: none; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--black-deep); }
body { font-family: var(--font-modern); background-color: var(--black-deep); color: var(--pearl); overflow-x: hidden; line-height: 1.6; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; width: var(--container-w); }

/* NAVIGATION */
nav ul { display: flex; list-style: none; padding: 0; margin: 0; }
nav ul li { margin: 0 clamp(5px, 0.8vw, 10px); flex-shrink: 0; }
nav ul li a { text-decoration: none; color: white; font-size: clamp(0.85rem, 1.1vw, 1.05rem); letter-spacing: 1px; font-weight: 700; transition: var(--anim-fast); opacity: 0.9; white-space: nowrap; }
nav ul li a:hover { opacity: 1; color: var(--gold); }

/* HEADER */
header { display: flex; justify-content: space-between; align-items: center; padding: 12px 5%; background-color: var(--glass); backdrop-filter: blur(25px); position: fixed; top: 0; width: 100%; z-index: 5000; transition: var(--anim-fast); border-bottom: 1px solid rgba(255,255,255,0.05); flex-wrap: nowrap; }
header.scrolled { padding: 10px 5%; }
.header-left { flex: 1; display: flex; align-items: center; }
.logo { font-family: var(--font-royal); font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 900; letter-spacing: 4px; color: white; }
#nav-links { flex: 3; display: flex; justify-content: center; align-items: center; }
.header-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.brand-logo { height: 60px; width: 60px; border-radius: 50%; object-fit: cover; }
.brand-logo:hover { transform: none; box-shadow: none; }

/* HERO */
.hero { height: 100vh; width: 100%; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 2s ease; animation: zoomAction 20s infinite alternate; animation-delay: 1s; }
.slide.active { opacity: 1; }
@keyframes zoomAction { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero-content { position: absolute; top: 55%; left: 50%; transform: translate(-50%, -50%); z-index: 10; width: 95%; max-width: 1200px; padding: 20px; display: flex; flex-direction: column; justify-content: center; min-height: fit-content; }
.hero h1 { font-family: var(--font-royal); font-size: clamp(2rem, 8vw, 5.5rem); line-height: 1.1; color: white; margin-bottom: 20px; letter-spacing: -1px; }
.hero p { font-size: clamp(0.9rem, 1.5vw, 1.2rem); max-width: 650px; margin: 0 auto 50px; opacity: 0.8; }
.hero-btns { display: flex; justify-content: center; gap: 15px; margin-top: 40px; flex-wrap: wrap; }
.hero-info { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
.info-item { min-width: 120px; }
.info-item span { display: block; font-size: 0.7rem; color: var(--gold); letter-spacing: 3px; margin-bottom: 8px; }
.info-item strong { color: white; font-weight: 500; word-break: break-word; }
.email-text { font-size: clamp(0.75rem, 1.2vw, 0.95rem); letter-spacing: 0.5px; word-break: break-all; }

/* BUTTONS */
.btn-luma { display: inline-block; padding: 20px 50px; background: white; color: black; text-decoration: none; font-weight: 800; font-size: 0.8rem; letter-spacing: 3px; transition: var(--anim-slow); }
.btn-luma:hover { background: var(--gold); transform: translateY(-8px); box-shadow: 0 20px 40px var(--gold-glow); }
.btn-luma.secondary { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: white; margin-left: 15px; }
.btn-luma.secondary:hover { background: rgba(255,255,255,0.05); border-color: white; transform: translateY(-8px); }
.btn-luma.small { background: black; color: white; padding: 15px 30px; font-size: 0.7rem; }
.btn-luma.small:hover { background: var(--gold); transform: translateY(-3px); }
.btn-luma.quote-nav { padding: 12px 25px; font-size: 0.7rem; margin-right: 20px; }

/* SECTION TITLES */
.section-title { text-align: center; font-family: var(--font-royal); font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: clamp(40px, 8vw, 80px); color: white; text-transform: uppercase; letter-spacing: 2px; }
.sub-gold { color: var(--gold); letter-spacing: 5px; font-size: 0.8rem; display: block; margin-bottom: 20px; font-weight: 500; }

/* SERVICES */
.services { padding: var(--fluid-pad) 0; background-color: var(--black-soft); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--fluid-gap); }
.service-card { background: #111; padding: clamp(40px, 6vw, 80px) clamp(20px, 3vw, 40px); border: 1px solid rgba(255,255,255,0.03); transition: var(--anim-slow); text-align: center; display: flex; flex-direction: column; height: 100%; }
.service-card:hover { transform: translateY(-15px); border-color: var(--gold); background: #161616; }
.service-card h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 20px; font-family: var(--font-royal); }

/* ABOUT */
.about { padding: var(--fluid-pad) 0; background: var(--black-deep); }
.about-grid { display: flex; align-items: center; justify-content: center; text-align: center; }
.about-text { max-width: 900px; padding: 0 5%; }
.about-text p { font-size: 1.1rem; opacity: 0.6; line-height: 1.8; margin-bottom: 30px; font-weight: 300; }

/* INSURANCE BADGE */
.insurance-badge { display: flex; align-items: center; gap: 20px; margin-top: 40px; padding: 22px 30px; border: 1px solid var(--gold); border-radius: 12px; background: linear-gradient(135deg, rgba(197,160,42,0.08), rgba(197,160,42,0.02)); box-shadow: 0 0 30px rgba(197,160,42,0.12), inset 0 0 20px rgba(197,160,42,0.04); max-width: 560px; margin-left: auto; margin-right: auto; }
.insurance-badge svg { flex-shrink: 0; }
.insurance-badge-text { text-align: left; }
.insurance-badge-text strong { display: block; color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
.insurance-badge-text span { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.5; }
.insurance-badge-text em { color: white; font-style: normal; font-weight: 700; }

/* STATS */
.stats { padding: clamp(50px, 8vw, 100px) 0; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: var(--fluid-gap); }
.stat-item { text-align: center; flex: 1; min-width: 200px; }
.stat-item h2 { font-family: var(--font-royal); font-size: clamp(3rem, 5vw, 5rem); color: var(--pearl); margin-bottom: 10px; text-shadow: 0 0 20px rgba(224, 224, 224, 0.4); }
.stat-item span { color: var(--gold); letter-spacing: 2px; font-size: 0.7rem; font-weight: 500; }

/* GALLERY */
.gallery { padding: var(--fluid-pad) 0; }
.gallery-grid.mosaic { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-auto-rows: 400px; grid-auto-flow: dense; gap: var(--fluid-gap); padding: 0 2%; }
.gallery-item { position: relative; border-radius: 30px; overflow: hidden; transition: var(--anim-slow); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); transition: var(--anim-slow); }
.gallery-item:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px var(--gold-glow); }
.gallery-item:hover img { filter: brightness(1); transform: scale(1.1); }

/* REVIEWS */
.reviews { padding: var(--fluid-pad) 0; background: #080808; text-align: center; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--fluid-gap); }
.review-item { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); padding: clamp(30px, 5vw, 50px) clamp(20px, 3vw, 40px); border-radius: 20px; backdrop-filter: blur(10px); transition: var(--anim-slow); text-align: left; display: flex; flex-direction: column; height: 100%; }
.review-item:hover { background: rgba(255, 255, 255, 0.04); transform: translateY(-10px); border-color: var(--gold); }
.rev-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.rev-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); }
.rev-meta h3 { font-size: 1.1rem; color: white; letter-spacing: 2px; }
.rev-meta span { font-size: 0.7rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }
.review-item p { font-family: var(--font-royal); font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,0.7); font-style: italic; }

/* LOCATION */
.location { height: clamp(500px, 70vh, 700px); position: relative; background: #111; display: flex; align-items: center; justify-content: center; }
.location-card { background: white; color: black; padding: clamp(40px, 6vw, 60px) clamp(20px, 4vw, 40px); text-align: center; box-shadow: 0 40px 100px rgba(0,0,0,0.5); max-width: 450px; border-radius: 5px; z-index: 100; }
.location-card h3 { font-family: var(--font-royal); font-size: 2rem; margin-bottom: 20px; letter-spacing: 2px; }
.location-card p { margin-bottom: 30px; opacity: 0.7; font-size: 0.9rem; letter-spacing: 1px; }

/* CONTACT */
.contact { padding: var(--fluid-pad) 0; text-align: center; }
.contact-box { max-width: 800px; margin: 0 auto; }
.input-group { margin-bottom: 40px; }
input, textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 25px 5px; color: white; font-family: var(--font-modern); font-size: 1.1rem; transition: var(--anim-fast); line-height: 1.6; }
input:focus, textarea:focus { outline: none; border-color: var(--gold); }
a[href^="tel"] { color: inherit; text-decoration: none; }

/* FLOAT BUTTONS */
.whatsapp-btn.left, .call-btn.right { position: fixed; bottom: 30px; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 8000; transition: transform 0.3s ease; cursor: grab; user-select: none; -webkit-user-drag: none; }
.whatsapp-btn.left { left: 30px; background-color: #25D366; filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.6)); }
.call-btn.right { right: 30px; background-color: var(--gold); filter: drop-shadow(0 0 15px var(--gold-glow)); }
.whatsapp-btn.left:hover, .call-btn.right:hover { transform: scale(1.1) rotate(10deg); filter: brightness(1.2); }
.whatsapp-btn.left svg, .call-btn.right svg { width: 30px; height: 30px; fill: white; }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 160px; right: 30px; width: 50px; height: 50px; background: var(--glass); border: 1px solid rgba(255,255,255,0.1); border-radius: 5px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 8500; opacity: 0; visibility: hidden; transition: var(--anim-fast); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }
.back-to-top svg { width: 20px; height: 20px; fill: white; }

/* FOOTER */
footer { padding: 80px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
footer p { font-size: 0.7rem; opacity: 0.4; letter-spacing: 5px; }
.social-icon-small, .social-icon-footer { color: var(--gold); opacity: 0.9; transition: var(--anim-fast); display: inline-block; margin: 0 10px; }
.social-icon-small:hover, .social-icon-footer:hover { opacity: 1; transform: translateY(-3px); filter: drop-shadow(0 0 5px var(--gold-glow)); }

/* LIGHTBOX */
.menu-toggle { display: none; }
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.98); backdrop-filter: blur(20px); display: none; flex-direction: column; justify-content: center; align-items: center; z-index: 10000; }
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90%; max-height: 75%; border-radius: 15px; box-shadow: 0 50px 100px rgba(0,0,0,0.5); margin-bottom: 30px; }
.lightbox-caption { color: var(--gold); font-family: var(--font-royal); font-size: 1.2rem; letter-spacing: 5px; text-transform: uppercase; opacity: 0.8; }
.close-btn { position: absolute; top: 40px; right: 40px; color: white; font-size: 3rem; cursor: pointer; transition: var(--anim-fast); }
.close-btn:hover { color: var(--gold); transform: scale(1.1); }

/* MODAL */
.modal-sovereign { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); backdrop-filter: blur(15px); display: none; justify-content: center; align-items: center; z-index: 15000; opacity: 0; transition: var(--anim-slow); padding: 10px; }
.modal-sovereign.active { display: flex; opacity: 1; }
.modal-content { background: var(--glass); border: 1px solid rgba(212, 175, 55, 0.2); padding: clamp(40px, 6vw, 60px) clamp(20px, 5%, 40px) clamp(20px, 4vw, 35px); width: 94%; max-width: 480px; border-radius: 15px; position: relative; transform: translateY(30px); transition: var(--anim-slow); box-shadow: 0 30px 80px rgba(0,0,0,0.8); text-align: center; }
.modal-sovereign.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; font-size: 2rem; color: rgba(255,255,255,0.5); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--anim-fast); z-index: 100; }
.modal-close:hover { color: var(--gold); transform: rotate(90deg); opacity: 1; }
.modal-content h3 { font-family: var(--font-royal); font-size: clamp(1.6rem, 5vw, 2.2rem); color: white; margin-bottom: 6px; letter-spacing: 2px; }
.modal-content p { font-size: 0.8rem; opacity: 0.6; margin-bottom: 16px; line-height: 1.4; }
#quote-form-modal .input-group { margin-bottom: 0; }
#quote-form-modal input, #quote-form-modal textarea { padding: 14px 5px; font-size: 0.85rem; margin-bottom: 4px; }
#quote-form-modal select { width: 100%; background: rgba(0,0,0,0.3); border: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 14px 10px; color: white; font-family: var(--font-modern); font-size: 0.85rem; cursor: pointer; appearance: none; margin-bottom: 4px; }
#quote-form-modal option { background: #111; color: white; }
#quote-form-modal textarea { height: 70px; resize: none; }
#quote-form-modal .btn-luma { width: 100%; margin-top: 14px; border: none; cursor: pointer; padding: 16px; font-size: 0.75rem; }

/* RESPONSIVE */
@media (max-width: 1300px) {
    .btn-luma.quote-nav { display: none; }
    .header-left { flex: 1; }
    .header-right { flex: none; display: flex; align-items: center; gap: 15px; }
    .menu-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; width: 30px; position: relative; z-index: 10001; order: 2; }
    .menu-toggle span { width: 100%; height: 2px; background: white; transition: var(--anim-fast); transform-origin: center; display: block; }
    .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    #nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background-color: var(--black-deep); display: flex; flex-direction: column; justify-content: center; align-items: center; transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1); z-index: 9999; box-shadow: -15px 0 40px rgba(0,0,0,0.5); padding: 50px 0; visibility: hidden; }
    #nav-links.active { right: 0; visibility: visible; }
    .brand-logo { height: 50px; width: 50px; }
    nav ul { flex-direction: column; align-items: center; width: 100%; }
    nav ul li { margin: 20px 0; width: 100%; text-align: center; }
    nav ul li a { font-size: 1.5rem; letter-spacing: 2px; display: block; width: 100%; }
    .hero h1 { font-size: 3.5rem; line-height: 1.25; letter-spacing: 0.02em; margin-bottom: 20px; }
    .gallery-grid.mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 350px; }
    .gallery-item.large, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; line-height: 1.3; letter-spacing: 0.01em; }
    .hero-info { flex-direction: column; gap: 20px; margin-bottom: 30px; align-items: center; }
    .hero-btns { flex-direction: column; align-items: stretch; padding: 0 20px; width: 100%; gap: 12px; }
    .btn-luma.secondary { margin-left: 0; }
    .gallery-grid.mosaic { grid-template-columns: 1fr; grid-auto-rows: 450px; padding: 0 20px; }
    .stat-item { min-width: 45%; }
}
@media (max-width: 480px) {
    .logo { font-size: 1.1rem; letter-spacing: 2px; }
    .brand-logo { height: 45px; width: 45px; }
    .hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 2.2rem; }
    .service-card { padding: 40px 20px; }
    .btn-luma { padding: 18px 30px; font-size: 0.75rem; letter-spacing: 2px; }
}
