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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #18425b;
    background-color: #f4fbff;
    line-height: 1.6;
}

/* Layout helpers */
.container {
    width: min(1100px, 100% - 2.5rem);
    margin-inline: auto;
}

/* Header & nav */
.site-header {
    background: linear-gradient(135deg, #00a0e3 0%, #40c0f5 50%, #8dc63f 100%);
    color: #fff;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    max-width: 1100px;
    margin-inline: auto;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 52px;
    width: auto;
    border-radius: 999px;
    background: #fff;
    padding: 4px 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    text-decoration: underline;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #fff;
    cursor: pointer;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 1.5rem 3rem;
    max-width: 1100px;
    margin-inline: auto;
    color: #fff;
}

.hero h1 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    max-width: 34rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.98rem;
}

.btn.primary {
    background: #ff4f81;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.btn.primary:hover {
    background: #ff306a;
}

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

.btn.outline:hover {
    background: rgba(255,255,255,0.12);
}

.btn.full {
    width: 100%;
}

.hero-contact p {
    font-size: 0.95rem;
}

.hero-contact a {
    color: #fff;
    font-weight: 600;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 1.75rem;
    box-shadow: 0 20px 35px rgba(0,0,0,0.35);
    border: 4px solid rgba(255,255,255,0.8);
}

/* Sections */
section {
    padding: 3rem 0;
}

.about {
    background: #f8fffd;
}

.about p {
    margin-top: 0.75rem;
    font-size: 0.98rem;
}

/* Services */
.services {
    background: #ffffff;
}

.services h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: #f4fbff;
    border-radius: 1.25rem;
    padding: 1.25rem 1.3rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    border: 1px solid #d6edf9;
}

.service-card h3 {
    margin-bottom: 0.6rem;
    color: #00a0e3;
    font-size: 1.05rem;
}

/* Social */
.social {
    background: #e7f7ff;
}

.social-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.social h2 {
    margin-bottom: 0.6rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-btn {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.social-btn.fb {
    background: #1877f2;
}

.social-btn.ig {
    background: #f56040;
}

.social-embed {
    justify-self: center;
}

.fb-iframe-wrapper {
    background: #fff;
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Promo strip */
.promo-strip {
    background: #ffffff;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    align-items: center;
}

.promo-grid img {
    width: 100%;
    border-radius: 1.2rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Gallery */
.gallery {
    background: #f8fffd;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.gallery-item {
    width: 100%;
    display: block;
    border-radius: 1.25rem;
    cursor: pointer;
    object-fit: cover;
    max-height: 220px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 1rem;
}

.lightbox-close {
    position: absolute;
    top: -2.2rem;
    right: 0;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* Video */
.video-section {
    background: #ffffff;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.15);
}

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

/* Contact */
.contact-section {
    background: #e7f7ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

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

.contact-list li + li {
    margin-top: 0.35rem;
}

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

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

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 0.65rem;
    border: 1px solid #c5e3f6;
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

/* Map */
.map-wrapper {
    margin-top: 2rem;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    text-decoration: none;
    z-index: 60;
}

.wa-icon {
    font-size: 1.6rem;
    color: #fff;
}

/* Footer */
.site-footer {
    background: #0f2b3b;
    color: #dbeeff;
    padding: 1.5rem 1rem;
}

.footer-container {
    text-align: center;
    font-size: 0.85rem;
}

.site-footer a {
    color: #8dc63f;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 800px) {
    .nav-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 60px;
        right: 16px;
        background: rgba(0,50,80,0.98);
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border-radius: 0.9rem;
        display: none;
    }
    .nav-links.open {
        display: flex;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .hero-image {
        justify-self: center;
    }
    section {
        padding: 2.3rem 0;
    }
    .social-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding-inline: 1rem;
    }
    .hero {
        padding-inline: 1rem;
    }
    .promo-strip {
        padding-inline: 0.75rem;
    }
    .container {
        width: min(100% - 1.5rem, 100%);
    }
}
