/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F9FA;
    color: #212529;
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, #0D6EFD 0%, #1E2A5E 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

.top-bar-phone {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
}

.top-bar-phone:hover {
    color: white;
}

.close-top-bar {
    background: none;
    border: none;
    color: white;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    opacity: 0.8;
}

.close-top-bar:hover {
    opacity: 1;
}

/* ===== NAVIGATION ===== */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease;
    color: #212529;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0D6EFD;
}

.navbar-nav .nav-link i {
    font-size: 14px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: #0D6EFD;
    border-color: #0D6EFD;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #157347;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}

.btn-outline-primary {
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0D6EFD 0%, #1E2A5E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 40px;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "✈️";
    position: absolute;
    font-size: 300px;
    opacity: 0.3;
    bottom: -50px;
    right: -50px;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: #0D6EFD;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===== LEAD FORM ===== */
.lead-form-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.form-control,
.form-select {
    border: 1px solid #DEE2E6;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #0D6EFD;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0D6EFD;
}

.star-rating i {
    color: #FFD700;
    margin: 0 1px;
}

/* ===== TRUST INDICATORS ===== */
.trust-badge {
    background: rgba(13, 110, 253, 0.1);
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
}

/* ===== COUNTERS ===== */
.counter-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.counter-number {
    font-size: 48px;
    font-weight: 800;
    color: #0D6EFD;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: #1E2A5E !important;
}

.hover-link {
    transition: all 0.3s ease;
}

.hover-link:hover {
    color: #0D6EFD !important;
    padding-left: 5px;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1E2A5E;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .counter-number {
        font-size: 32px;
    }

    .lead-form-section {
        padding: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== SPECIAL OFFER CARD ===== */
.offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FD7E14;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

/* ===== FORM SUCCESS MESSAGE ===== */
.alert-success {
    border-radius: 10px;
    border-left: 4px solid #198754;
}

.quote-trigger {
    font-size: 16px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
}