/* =========================================
   Conversion Optimization Styles
   ========================================= */

/* Hero Redesign */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 769px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
}

.btn-success {
    background-color: #25D366;
    color: white;
}

.btn-success:hover {
    background-color: #1fa855;
}

.trust-badges-hero {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item i {
    color: var(--accent-color);
    margin-left: 5px;
}

/* Trust Bar */
.trust-bar {
    border-bottom: 1px solid #ddd;
}

.section-padding-small {
    padding: 30px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-color);
}

.trust-item i {
    font-size: 1.2rem;
}

.text-success {
    color: #28a745;
}

/* Simplified Form */
.simplified-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px;
    gap: 10px;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
}

.call-btn {
    background-color: var(--primary-color);
}

.call-btn:hover {
    background-color: #144262;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1fa855;
}

.desktop-only {
    display: flex;
}

/* Mobile Media Queries - Enhanced */
@media (max-width: 768px) {
    .mobile-sticky-footer {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .quote-section {
        padding-bottom: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 1.1rem;
    }

    .trust-badges-hero {
        display: none;
    }

    .trust-grid {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .trust-item {
        justify-content: center;
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.1rem !important;
        margin-bottom: 20px;
    }

    .simplified-form {
        padding: 20px;
    }

    .section-padding-small {
        padding: 20px 0;
    }
}

/* Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-buttons {
        gap: 12px;
    }

    .btn-lg {
        padding: 14px 35px;
        font-size: 1.2rem;
    }

    .trust-grid {
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2.8rem !important;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem !important;
    }

    .hero-content p {
        font-size: 0.95rem !important;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .sticky-btn {
        font-size: 1rem;
        padding: 10px;
    }

    .mobile-sticky-footer {
        padding: 8px;
    }
}

/* Pulse Animation for Call Button */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.pulse-anim {
    animation: pulse-gold 2s infinite;
}