* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* HERO */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 2rem;
    background: radial-gradient(circle at top, #7122FA 0, #000000 55%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -30%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 60, 172, 0.5), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(8, 247, 254, 0.45), transparent 55%),
        radial-gradient(circle at 50% 90%, rgba(113, 34, 250, 0.45), transparent 55%);
    opacity: 0.9;
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.95));
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.hero-logo {
    max-width: 520px;
    width: 90%;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 0 35px rgba(8, 247, 254, 0.7));
}

/* Title animation */

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 3.7rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.gradient-title {
    background: linear-gradient(135deg, #FF3CAC, #08F7FE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow:
            0 0 14px rgba(8, 247, 254, 0.5),
            0 0 26px rgba(255, 60, 172, 0.4);
        transform: scale(1);
    }
    50% {
        text-shadow:
            0 0 22px rgba(8, 247, 254, 0.9),
            0 0 35px rgba(255, 60, 172, 0.7);
        transform: scale(1.02);
    }
}

.gradient-name {
    background: linear-gradient(135deg, #FF3CAC, #08F7FE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.tagline {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.location {
    color: #08F7FE;
    margin-bottom: 1.8rem;
}

.primary-btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF3CAC, #08F7FE);
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
    filter: brightness(1.1);
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(8, 247, 254, 0.3);
}

.nav-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #08F7FE;
    text-shadow: 0 0 8px rgba(8, 247, 254, 0.5);
}

.nav-links a {
    margin-left: 1.3rem;
    font-size: 0.9rem;
    text-decoration: none;
    color: #FFFFFF;
    opacity: 0.9;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    height: 2px;
    width: 0;
    background: linear-gradient(135deg, #FF3CAC, #7122FA);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* MAIN LAYOUT */

main {
    padding: 2.5rem 1.5rem 3.5rem;
}

.section {
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.section.alt {
    background:
        radial-gradient(circle at top left, rgba(255, 60, 172, 0.2), transparent 55%),
        radial-gradient(circle at bottom right, rgba(113, 34, 250, 0.22), transparent 60%);
    border-radius: 1.4rem;
    padding: 2.5rem 1.5rem;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(113, 34, 250, 0.4);
}

.section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.section p {
    margin-bottom: 0.6rem;
    color: #FFFFFF;
}

.section ul {
    list-style: none;
    margin: 0.4rem 0 0.6rem;
}

.section li::before {
    content: "•";
    color: #FF3CAC;
    display: inline-block;
    width: 1.1em;
    margin-left: -1.1em;
}

.section li {
    margin-bottom: 0.3rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* GALLERY */

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0.5rem;
}

.gallery-filter {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(8, 247, 254, 0.5);
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.gallery-filter.active {
    background: linear-gradient(135deg, #FF3CAC, #08F7FE);
    color: #FFFFFF;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.9rem;
    max-width: 780px;
    margin: 1rem auto 0;
    justify-items: center;
}

.gallery-item {
    background: none;
    border: none;
    padding: 0;
    border-radius: 0.9rem;
    cursor: pointer;
    animation: fadeUp 0.6s ease both;
}

.gallery-item img {
    border-radius: 0.9rem;
    border: 1px solid rgba(8, 247, 254, 0.3);
    width: 100%;
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-item:hover img {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.8);
}

/* Fade in animation */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    margin-top: 1rem;
}

.contact-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #08F7FE;
}

/* VIDEO */

.highlight-video {
    width: 100%;
    max-width: 520px;
    border-radius: 0.9rem;
    border: 1px solid rgba(8, 247, 254, 0.35);
    margin-top: 1rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
}

/* LINKS */

a {
    color: #08F7FE;
}

a:hover {
    color: #FF3CAC;
}

/* FOOTER */

.footer {
    border-top: 1px solid rgba(113, 34, 250, 0.6);
    padding: 1.2rem 1.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #FFFFFF;
}

/* PRICING FLYER */

.pricing-graphic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-image {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(8, 247, 254, 0.4);
}

.pricing-image-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.small-note {
    font-size: 0.8rem;
    margin-top: 0.4rem;
    color: #08F7FE;
}

.pricing-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 30;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 95%;
    max-height: 95%;
}

.lightbox-inner img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: none;
    background: #111111;
    color: #FFFFFF;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
}

/* Lightbox caption */

.lightbox-caption {
    margin-top: 0.6rem;
    text-align: center;
    font-size: 0.9rem;
    color: #FFFFFF;
}

/* TESTIMONIALS */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.2rem;
}

.testimonial {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 1rem;
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(113, 34, 250, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.testimonial-name {
    font-size: 0.9rem;
    color: #08F7FE;
}

/* WHATSAPP BUTTONS */

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    filter: brightness(1.1);
}

/* Floating WhatsApp bubble */

.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 40;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    border-radius: 999px;
    padding: 0.6rem 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover {
    filter: brightness(1.06);
}

.whatsapp-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: #FFFFFF;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* RESPONSIVE */

@media (max-width: 800px) {
    .nav-links {
        display: none;
    }

    main {
        padding-inline: 1.2rem;
    }

    .section.alt {
        padding-inline: 1.2rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
    }
}
