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

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #222;
    background-color: #f5f7fb;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.main-header {
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    gap: 1rem;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-box img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-text p {
    font-size: 0.75rem;
    color: #555;
}

/* Nav */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
    background: #ff2f92;
    color: #fff;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero */

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 173, 239, 0.75), rgba(255, 47, 146, 0.85));
}

.hero-content {
    position: relative;
    padding: 4rem 0;
    max-width: 650px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.hero-contact {
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-contact span {
    background: #ffffff22;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: #ff2f92;
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 47, 146, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(255, 47, 146, 0.45);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #ff2f92;
}

/* Sections */

.section {
    padding: 4rem 0;
    background: #f5f7fb;
}

.section-alt {
    background: #ffffff;
}

.section h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.section-intro {
    margin-bottom: 2rem;
    max-width: 650px;
}

/* Layout helpers */

.two-cols {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.image-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Bullets */

.bullets {
    margin-top: 1rem;
    list-style: none;
}

.bullets li {
    padding-left: 1.4rem;
    position: relative;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.bullets li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00adef;
}

/* Cards */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #ff2f92;
}

.card h3 {
    margin-bottom: 0.6rem;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.gallery-image {
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

/* Video */

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Social */

.social-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.social-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.fb-embed iframe {
    width: 100%;
    max-width: 100%;
}

/* Contact */

.contact-data {
    list-style: none;
    margin-top: 1rem;
}

.contact-data li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.contact-form {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 0.9rem;
}

label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid #ccd3e0;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #ff2f92;
    box-shadow: 0 0 0 1px rgba(255, 47, 146, 0.2);
}

/* Footer */

.main-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.85rem;
    text-align: center;
}

.main-footer a {
    color: #ff9fd0;
}

/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

/* Lightbox */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1500;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox-content {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* Responsive */

@media (max-width: 900px) {
    .two-cols,
    .social-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        background: #ffffff;
        position: absolute;
        top: 60px;
        right: 5%;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        display: none;
    }

    .main-nav ul.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-contact {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .logo-text h1 {
        font-size: 0.9rem;
    }

    .logo-text p {
        font-size: 0.7rem;
    }
}
