@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --cyan: #00ffff;
    --purple: #ff00ff;
    --green: #00ff00;
    --bg-dark: #000;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 50%, #0c001a 0%, #000 100%);
    background-attachment: fixed;
    color: #fff;
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ─── Typography ─── */
h1, .h1-neon {
    color: var(--cyan);
    font-weight: 800;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 40px #00ffff;
    font-size: clamp(38px, 7vw, 85px);
    text-align: center;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h2, .h2-neon {
    color: var(--purple);
    font-weight: 800;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff;
    font-size: clamp(28px, 5vw, 60px);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 25px;
}

h3, .h3-neon {
    color: var(--green);
    font-weight: 800;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    font-size: clamp(26px, 4vw, 55px);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

h4 {
    font-weight: 700;
    font-size: 22px;
}

.description-italic {
    font-style: italic;
    color: #e0e0e0;
    text-align: center;
    font-size: clamp(15px, 2vw, 18px);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: 100px 0;
}

/* ─── Header ─── */
.header {
    background: rgba(0,0,0,0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--cyan);
    font-weight: 800;
    font-size: 24px;
    text-shadow: 0 0 10px #00ffff;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    transition: 0.3s;
}

.nav a:hover, .nav a.active {
    color: var(--cyan);
}

/* ─── Buttons ─── */
.neon-btn {
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.4s;
    display: inline-block;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-purple {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 0 15px #ff00ff;
}

.btn-cyan {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 15px #00ffff;
}

.btn-purple:hover, .btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.btn-purple:active, .btn-cyan:active {
    transform: translateY(0);
}

/* ─── Grids ─── */
.grid-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ─── Service Cards ─── */
.service-card {
    background: #080808;
    border: 2px solid rgba(255, 0, 255, 0.4);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    flex: 1;
}

.service-card:hover {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 55%;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--green);
    text-shadow: 0 0 10px #00ff00;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-style: italic;
    color: #fff;
    font-size: 14px;
}

.price-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    color: var(--purple);
    font-weight: 800;
    font-size: 32px;
    text-shadow: 0 0 10px #ff00ff;
    text-transform: uppercase;
}

.service-hours {
    color: var(--cyan);
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 10px #00ffff;
}

/* ─── Marquee Text Section (Bug Fix: was missing CSS) ─── */
.marquee-section {
    overflow: hidden;
    padding: 30px 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
    white-space: nowrap;
}

.marquee span {
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,0,255,0.5);
    letter-spacing: 4px;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Testimonials Marquee ─── */
.testimonials-section {
    overflow: hidden;
    padding: 100px 0;
    background: #000;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-loop 60s linear infinite;
    padding: 20px 0;
}

.testimonial-card {
    width: 350px;
    background: #0a0a0a;
    border: 2px solid rgba(0, 255, 255, 0.3);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.testimonial-card p {
    color: #ccc;
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--cyan);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

@keyframes scroll-loop {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* ─── Footer ─── */
.footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer h4 { color: var(--purple); text-transform: uppercase; margin-bottom: 25px; }

/* ─── Booking / Contact ─── */
.booking-split {
    display: flex;
    gap: 60px;
}

.booking-services-list { flex: 1; }
.booking-form-wrap { flex: 1; }

.booking-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050505;
    border: 2px solid rgba(255, 0, 255, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.booking-option:hover, .booking-option.active {
    border-color: var(--purple);
    box-shadow: 0 0 15px var(--purple);
}

.booking-option h4 { color: var(--purple); font-size: 20px; text-shadow: 0 0 8px #ff00ff; }
.booking-option img { width: 80px; height: 80px; object-fit: cover; border-radius: 5px; }

.form-box {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--purple);
}

.form-field { margin-bottom: 25px; }
.form-field label { display: block; color: var(--cyan); margin-bottom: 10px; font-weight: 700; }
.form-field input, .form-field textarea, .form-field select {
    width: 100%; padding: 15px; background: #111; border: 1px solid #333; color: #fff; border-radius: 5px; outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--purple); box-shadow: 0 0 10px var(--purple); }

/* ─── Portfolio ─── */
.masonry-grid {
    column-count: 4;
    column-gap: 20px;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}
.masonry-item:hover { transform: scale(1.02); border-color: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
.masonry-item img { width: 100%; display: block; }

/* ─── About Page ─── */
.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}
.about-image {
    flex: 1;
    border-radius: 20px;
    border: 2px solid var(--cyan);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
.about-image img { width: 100%; display: block; }
.about-text { flex: 1; text-align: left; }

/* ─── Utility ─── */
.mb-5 { margin-bottom: 20px; } /* Bug Fix: .mb-5 used in index.html but was undefined */
img { max-width: 100%; height: auto; }

/* ─── Reveal Animation ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ─── Footer Bottom ─── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: #fff;
    font-style: italic;
    opacity: 0.8;
}
.footer-bottom a {
    color: inherit;
    text-decoration: underline;
    transition: 0.3s;
}
.footer-bottom a:hover {
    opacity: 1;
    text-shadow: 0 0 10px #fff;
}

/* ─── Mobile Navigation Toggle ─── */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--cyan);
    font-size: 32px;
    cursor: pointer;
    z-index: 3000;
    line-height: 1;
    padding: 5px;
}

/* Bug Fix: Use right-based positioning (not transform) for reliable slide-in */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;           /* Hidden off-screen by default */
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2500;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(0, 255, 255, 0.15);
    box-shadow: -10px 0 40px rgba(0,0,0,0.9);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;               /* Slide in */
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    display: block;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.mobile-menu .neon-btn {
    margin-top: 10px;
    text-align: center;
    padding: 15px 30px;
    color: #fff;
}

.mobile-menu-header {
    position: absolute;
    top: 25px;
    right: 25px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--cyan);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 2400;
    opacity: 0;
    pointer-events: none;   /* Invisible & non-interactive by default */
    transition: opacity 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;    /* Clickable when visible */
}

/* ─── Responsive: Tablet (768–1024px) ─── */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .masonry-grid { column-count: 3; }
}

/* ─── Responsive: Mobile (< 768px) ─── */
@media (max-width: 768px) {
    body { overflow-x: hidden; }
    
    /* Header */
    .header { padding: 15px 0; }
    .logo { font-size: 18px; }
    .nav { display: none; }                         /* Hide desktop nav */
    .mobile-nav-toggle { display: block; }          /* Show hamburger */

    /* Sections */
    .section { padding: 60px 0; }

    /* Grids stack vertically */
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }

    /* Service Cards */
    .service-card { aspect-ratio: auto; min-height: 380px; }
    .grid-center { flex-direction: column; }

    /* Hero CTA buttons */
    .hero-cta-row { flex-direction: column; align-items: center; }

    /* About split */
    .about-split { flex-direction: column; gap: 30px; }
    .about-text { text-align: center; }
    .about-text h1 { text-align: center; }

    /* Booking & Contact */
    .booking-split { flex-direction: column; gap: 30px; }
    .form-box { padding: 25px; }
    .form-field input, .form-field textarea, .form-field select {
        width: 100%;
    }

    /* Masonry */
    .masonry-grid { column-count: 2; }

    /* Portfolio grid */
    .portfolio-grid { columns: 2 !important; }

    /* Testimonial cards fit on smaller screens */
    .testimonial-card { width: 280px; padding: 20px; }

    /* Footer */
    .footer { padding: 50px 0 20px; }
    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer-col { width: 100%; padding-left: 0 !important; }
    .footer-col .logo { justify-content: center; }
    .footer-col > div { justify-content: center; }
}

/* ─── Responsive: Small Mobile (< 480px) ─── */
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .masonry-grid { column-count: 1; }
    .portfolio-grid { columns: 1 !important; }
    .testimonial-card { width: 240px; }
    .neon-btn { padding: 12px 25px; font-size: 13px; }
}
