/* ═══════════════════════════════════════════════════════════════════════════
   Vitale Concept — Landing Page Styles
   Extends the global design system (main.css custom properties)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. Navbar ───────────────────────────────────────────────────────────── */
.vc-landing-navbar {
    background-color: rgba(250, 247, 245, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--vc-border);
    padding: 0.75rem 0;
    transition: box-shadow var(--vc-transition);
}

.vc-landing-navbar.scrolled {
    box-shadow: var(--vc-shadow);
}

.vc-landing-logo-text {
    font-size: 1.25rem;
    color: var(--vc-text);
    letter-spacing: 0.02em;
}

.vc-landing-navbar .nav-link {
    color: var(--vc-text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    transition: color var(--vc-transition);
}

.vc-landing-navbar .nav-link:hover {
    color: var(--vc-primary-text);
}

/* ── 2. Hero ─────────────────────────────────────────────────────────────── */
.vc-landing-hero {
    padding-top: 76px;
    background-color: var(--vc-bg);
}

.vc-landing-hero-image {
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    box-shadow: var(--vc-shadow-lg);
}

.vc-landing-hero-placeholder {
    background-color: var(--vc-primary-subtle);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--vc-radius-lg);
}

/* ── 3. Service Cards ────────────────────────────────────────────────────── */
.vc-landing-service-card {
    background-color: var(--vc-bg);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 1.75rem;
    transition: transform var(--vc-transition), box-shadow var(--vc-transition);
}

.vc-landing-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vc-shadow-lg);
}

.vc-landing-service-card h3 {
    color: var(--vc-text);
}

.vc-landing-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--vc-radius);
    background-color: var(--vc-primary-subtle);
    color: var(--vc-primary-text);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ── 4. About / Image Section ────────────────────────────────────────────── */
.vc-landing-about-image {
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    box-shadow: var(--vc-shadow);
}

/* ── 5. Gallery ──────────────────────────────────────────────────────────── */
.vc-landing-gallery-item {
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    transition: transform var(--vc-transition);
}

.vc-landing-gallery-item:hover {
    transform: scale(1.02);
}

.vc-landing-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* ── 6. Testimonials ─────────────────────────────────────────────────────── */
.vc-landing-testimonial-card {
    background-color: var(--vc-surface);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 1.5rem;
    transition: box-shadow var(--vc-transition);
}

.vc-landing-testimonial-card:hover {
    box-shadow: var(--vc-shadow);
}

/* ── 7. CTA Banner ───────────────────────────────────────────────────────── */
.vc-landing-cta {
    background: linear-gradient(135deg, var(--vc-primary) 0%, var(--vc-primary-hover) 100%);
}

/* ── 8. FAQ ──────────────────────────────────────────────────────────────── */
.vc-landing-faq-item {
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.vc-landing-faq-item .accordion-button {
    background-color: var(--vc-surface);
    color: var(--vc-text);
    font-size: 0.9375rem;
    box-shadow: none;
}

.vc-landing-faq-item .accordion-button:not(.collapsed) {
    background-color: var(--vc-primary-subtle);
    color: var(--vc-text);
}

.vc-landing-faq-item .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236E6161'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.vc-landing-faq-item .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(201, 145, 139, 0.15);
}

.vc-landing-faq-item .accordion-body {
    font-size: 0.875rem;
}

/* ── 9. Contact ──────────────────────────────────────────────────────────── */
.vc-landing-contact-card {
    background-color: var(--vc-bg);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 2rem;
}

.vc-landing-map-container {
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    box-shadow: var(--vc-shadow);
    min-height: 460px;
    height: 100%;
}

.vc-landing-map-container iframe {
    display: block;
}

/* ── 10. Social Links ────────────────────────────────────────────────────── */
.vc-landing-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--vc-radius);
    background-color: var(--vc-primary-subtle);
    color: var(--vc-primary-text);
    transition: all var(--vc-transition);
    text-decoration: none;
}

.vc-landing-social-link:hover {
    background-color: var(--vc-primary);
    color: #fff;
}

/* ── 11. Footer ──────────────────────────────────────────────────────────── */
.vc-landing-footer {
    background-color: var(--vc-bg);
    border-top: 1px solid var(--vc-border);
    padding: 3rem 0 1.5rem;
}

/* ── 12. WhatsApp Float ──────────────────────────────────────────────────── */
.vc-landing-whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    transition: transform var(--vc-transition), box-shadow var(--vc-transition);
    text-decoration: none;
    z-index: 1050;
}

.vc-landing-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    color: #fff;
}

/* ── 13. Smooth Scroll ───────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ── 14. Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .vc-landing-navbar .navbar-collapse {
        background-color: var(--vc-surface);
        border-radius: var(--vc-radius-lg);
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: var(--vc-shadow-lg);
        border: 1px solid var(--vc-border);
    }

    .vc-landing-hero .display-4 {
        font-size: 2rem;
    }

    .vc-landing-hero-placeholder {
        min-height: 260px;
    }

    .vc-landing-map-container {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .vc-landing-hero .display-4 {
        font-size: 1.75rem;
    }

    .vc-landing-service-card {
        padding: 1.25rem;
    }

    .vc-landing-contact-card {
        padding: 1.25rem;
    }
}
