/* ============================================================
   VISTA TRAVEL JOURNEY – COMPLETE STYLES
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #FFFFFF;
    color: #013A63;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    padding-top: 70px;
}

.container, .wrapper, section, footer, header {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
     SECTION TITLES & TAGS
     ============================================================ */
.section-tag {
    color: #FF6F61;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #013A63;
    margin-top: 5px;
    margin-bottom: 15px;
}

.section-sub {
    color: #666;
    font-size: 1rem;
}

/* ============================================================
     GRIDS
     ============================================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* ============================================================
     CARDS
     ============================================================ */
.card {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(1,58,99,0.06);
    border: 1px solid rgba(1,58,99,0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(1,58,99,0.12);
}

.card-icon {
    width: 65px;
    height: 65px;
    background: rgba(1,58,99,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.8rem;
    color: #FF6F61;
}

.card-title {
    font-family: 'Playfair Display', serif;
    color: #013A63;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.card-desc {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================================
     TIP CARDS
     ============================================================ */
.tip-card {
    background: #f8f9fa;
    border-radius: 25px;
    padding: 22px;
    border: 1px solid rgba(1,58,99,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.tip-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FF6F61;
    color: white;
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
}

.tip-icon {
    width: 55px;
    height: 55px;
    background: rgba(1,58,99,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.8rem;
    color: #FF6F61;
}

.tip-country {
    font-family: 'Playfair Display', serif;
    color: #013A63;
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.tip-type {
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.tip-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.tip-duration {
    font-size: 0.85rem;
    color: #888;
}

.tip-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6F61;
}

/* ============================================================
     OFFER CARDS
     ============================================================ */
.offer-card {
    background: #FFFFFF;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(1,58,99,0.06);
    border: 1px solid rgba(1,58,99,0.05);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(1,58,99,0.12);
}

.offer-img {
    height: 130px;
    background: linear-gradient(135deg, #013A63 0%, #02548a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.offer-body {
    padding: 20px;
}

.offer-title {
    font-family: 'Playfair Display', serif;
    color: #013A63;
    font-size: 1.3rem;
}

.offer-featured {
    background: #FF6F61;
    color: white;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
}

.offer-airline {
    color: #666;
    font-size: 0.9rem;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 5px;
}

.offer-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FF6F61;
}

.offer-btn {
    background: #013A63;
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    background: #FF6F61;
}

/* ============================================================
     TESTIMONIALS
     ============================================================ */
.testimonial-card {
    background: #f8f9fa;
    border-radius: 25px;
    padding: 25px;
    border: 1px solid rgba(1,58,99,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(1,58,99,0.08);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #013A63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

.testimonial-name {
    font-family: 'Playfair Display', serif;
    color: #013A63;
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-location {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

.testimonial-stars {
    color: #FF6F61;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.testimonial-message {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================================
     FADE-UP ANIMATION
     ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
     RESPONSIVE BREAKPOINTS
     ============================================================ */

@media (max-width: 992px) {
    body { padding-top: 65px; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    body { padding-top: 60px; }
    .section-title { font-size: 1.8rem; }
    .grid-3 { grid-template-columns: 1fr; gap: 18px; }
    .section-sub { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    body { padding-top: 55px; }
    .section-title { font-size: 1.5rem; }
    .card { padding: 20px 15px; }
    .card-title { font-size: 1.1rem; }
    .offer-title { font-size: 1.1rem; }
    .offer-price { font-size: 1.3rem; }
    .tip-country { font-size: 1.1rem; }
    .tip-price { font-size: 1.2rem; }
}

/* ============================================================
     PREVENT HORIZONTAL SCROLL ON ALL DEVICES
     ============================================================ */
@media (max-width: 1200px) {
    .container, .nav-container, footer > div, section > div {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 768px) {
    .container, .nav-container, footer > div, section > div {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* ============================================================
     FLOATING WHATSAPP - RESPONSIVE
     ============================================================ */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.8rem !important;
        bottom: 15px !important;
        right: 15px !important;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.5rem !important;
        bottom: 12px !important;
        right: 12px !important;
    }
}

/* ============================================================
     WHY CHOOSE US – COMPLETE RESPONSIVE SOLUTION
     ============================================================ */

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.why-choose-image-box {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 58, 99, 0.12);
    min-height: 400px;
    background: #013A63;
    background-image: url('https://images.pexels.com/photos/1174732/pexels-photo-1174732.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.why-choose-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.why-choose-badge-icon {
    font-size: 2rem;
    color: #FF6F61;
}

.why-choose-badge-title {
    font-weight: 700;
    color: #013A63;
    font-size: 1.1rem;
}

.why-choose-badge-sub {
    color: #888;
    font-size: 0.8rem;
}

.why-choose-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #013A63;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose-content .tag {
    color: #FF6F61;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.why-choose-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #013A63;
    margin: 10px 0 15px;
    line-height: 1.2;
}

.why-choose-content p {
    color: #666;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 25px;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.why-choose-card {
    background: #FFFFFF;
    padding: 18px 15px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(1,58,99,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(1,58,99,0.1);
    border-color: #FF6F61;
}

.why-choose-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(1,58,99,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.4rem;
    color: #FF6F61;
}

.why-choose-card h4 {
    color: #013A63;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 700;
}

.why-choose-card p {
    color: #888;
    font-size: 0.8rem;
    margin: 4px 0 0;
    line-height: 1.3;
}

/* Tablet */
@media (max-width: 992px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .why-choose-image-box {
        min-height: 320px !important;
    }
    .why-choose-cards {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-choose-image-box {
        min-height: 260px !important;
    }
    .why-choose-cards {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .why-choose-card {
        padding: 14px 10px !important;
    }
    .why-choose-card-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.1rem !important;
    }
    .why-choose-card h4 {
        font-size: 0.85rem !important;
    }
    .why-choose-card p {
        font-size: 0.7rem !important;
    }
    .why-choose-badge {
        padding: 12px 18px !important;
        bottom: 15px !important;
        left: 15px !important;
    }
    .why-choose-badge-icon {
        font-size: 1.4rem !important;
    }
    .why-choose-badge-title {
        font-size: 0.9rem !important;
    }
    .why-choose-badge-sub {
        font-size: 0.65rem !important;
    }
    .why-choose-play {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.2rem !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .why-choose-image-box {
        min-height: 200px !important;
    }
    .why-choose-cards {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .why-choose-card {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        text-align: left !important;
        padding: 12px 15px !important;
    }
    .why-choose-card-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    .why-choose-card h4 {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
    }
    .why-choose-card p {
        font-size: 0.7rem !important;
        margin: 0 !important;
    }
    .why-choose-card-text {
        flex: 1 !important;
    }
    .why-choose-content h2 {
        font-size: 1.5rem !important;
    }
    .why-choose-content p {
        font-size: 0.9rem !important;
    }
}

/* ============================================================
     EXPERT + FOLLOW SECTION – MOBILE RESPONSIVE
     ============================================================ */

@media (max-width: 768px) {
    /* Stack the two columns vertically */
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch;"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Expert block: smaller font, full width */
    [style*="font-size: 1.7rem;"] {
        font-size: 1.4rem !important;
        white-space: normal !important;  /* allow breaking if needed */
    }
    
    /* Social icons: slightly smaller on mobile */
    [style*="width: 48px; height: 48px;"] {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.1rem !important;
    }
    
    /* Padding adjustments */
    [style*="padding: 30px 25px;"] {
        padding: 25px 20px !important;
    }
    [style*="padding: 25px 20px;"] {
        padding: 20px 15px !important;
    }
}

@media (max-width: 480px) {
    [style*="font-size: 1.7rem;"] {
        font-size: 1.2rem !important;
    }
    [style*="width: 48px; height: 48px;"] {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    [style*="gap: 16px;"] {
        gap: 12px !important;
    }
}

/* ============================================================
     NEWSLETTER – MOBILE RESPONSIVE
     ============================================================ */

@media (max-width: 768px) {
    /* Card padding */
    [style*="padding: 50px 45px;"] {
        padding: 35px 25px !important;
    }
    
    /* Form – full width on mobile */
    [style*="display: flex; gap: 14px; max-width: 550px;"] {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    /* Input – full width */
    [style*="min-width: 220px;"] {
        min-width: auto !important;
        width: 100% !important;
        padding: 14px 20px !important;
    }
    
    /* Button – full width */
    [style*="padding: 16px 40px;"] {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
    }
    
    /* Trust badges – wrap nicely */
    [style*="display: flex; gap: 30px;"] {
        gap: 15px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    [style*="padding: 50px 45px;"] {
        padding: 25px 18px !important;
        border-radius: 20px !important;
    }
    
    [style*="font-size: clamp(1.8rem, 3vw, 2.5rem);"] {
        font-size: 1.5rem !important;
    }
    
    [style*="width: 70px; height: 70px;"] {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.5rem !important;
    }
}

/* ============================================================
     VISA DEALS – PREMIUM CARD EFFECTS
     ============================================================ */

/* Card Hover Effect */
[style*="background: #FFFFFF; border-radius: 20px; padding: 25px 22px 22px;"]:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(1,58,99,0.12);
    border-color: #FF6F61;
}

/* Button Hover Effect */
[style*="background: #013A63; color: white; padding: 8px 20px;"]:hover {
    background: #FF6F61 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,111,97,0.3);
}

/* Visa Deals Responsive: Tablet */
@media (max-width: 768px) {
    [style*="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px;"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    [style*="padding: 25px 22px 22px;"] {
        padding: 18px 15px 15px !important;
    }
    [style*="font-size: 1.4rem;"] {
        font-size: 1.2rem !important;
    }
    [style*="font-size: 1.6rem;"] {
        font-size: 1.3rem !important;
    }
    [style*="padding: 8px 20px;"] {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }
    [style*="width: 60px; height: 60px;"] {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.4rem !important;
    }
}

/* Visa Deals Responsive: Mobile (max-width: 480px) */
@media (max-width: 480px) {
    [style*="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px;"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    [style*="padding: 50px 0 30px;"] {
        padding: 30px 0 20px !important;
    }
    [style*="padding: 12px 14px;"] {
        padding: 10px 12px !important;
        font-size: 0.8rem !important;
    }
}

/* ============================================================
     BONUS: FOOTER SOCIAL ICON FIX
     ============================================================ */

footer .social-link:hover {
    background: #FF6F61 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255,111,97,0.3) !important;
}

/* ============================================================
     FOOTER – RESPONSIVE SPACING FIX (MOBILE ONLY)
     ============================================================ */

/* This ONLY affects mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    
    /* Add padding to the footer container */
    footer > div {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Add spacing between footer sections */
    footer .footer-grid > div {
        margin-bottom: 30px !important;
    }
    footer .footer-grid > div:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Add spacing between links */
    footer ul li {
        margin-bottom: 12px !important;
    }
    
    /* Add spacing between contact items */
    footer .footer-contact p {
        margin-bottom: 14px !important;
    }
    
    /* Add spacing for the brand section */
    footer .footer-brand {
        margin-bottom: 15px !important;
    }
    
    /* Add spacing for social icons */
    footer .footer-social {
        margin-top: 10px !important;
        margin-bottom: 5px !important;
    }
    
    /* Ensure footer grid sections are not cramped */
    footer .footer-grid {
        gap: 0 !important;
    }
    
    /* Add extra bottom margin to the last section */
    footer .footer-grid > div:last-of-type {
        margin-bottom: 0 !important;
    }
}

/* Small phones (max-width: 480px) – even more spacing */
@media (max-width: 480px) {
    footer > div {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    footer .footer-grid > div {
        margin-bottom: 25px !important;
    }
    
    footer ul li {
        margin-bottom: 10px !important;
    }
    
    footer .footer-contact p {
        margin-bottom: 12px !important;
    }
}

/* ============================================================
     HEADER – PREMIUM HOVER EFFECTS
     ============================================================ */

/* Main navigation links */
header nav ul li a:not(.nav-cta) {
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 30px;
}

/* Background and text color on hover */
header nav ul li a:not(.nav-cta):hover {
    background: rgba(1, 58, 99, 0.06);
    color: #FF6F61 !important;
    transform: translateY(-2px);
}

/* Animated underline */
header nav ul li a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FF6F61;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 10px;
}

header nav ul li a:not(.nav-cta):hover::after {
    width: 60%;
}

/* Active link (if you want to highlight current page) */
header nav ul li a.active {
    background: rgba(1, 58, 99, 0.06);
    color: #FF6F61 !important;
}
header nav ul li a.active::after {
    width: 60%;
}

/* ============================================================
     FOOTER – PREMIUM HOVER EFFECTS
     ============================================================ */

/* Footer links */
footer ul li a {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

/* Text color change + slight translation */
footer ul li a:hover {
    color: #FF6F61 !important;
    transform: translateX(4px);
}

/* Underline animation (optional) */
footer ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF6F61;
    transition: all 0.3s ease;
}

footer ul li a:hover::after {
    width: 100%;
}

/* Footer contact links (email, phone) */
footer .contact-link {
    transition: all 0.3s ease;
}
footer .contact-link:hover {
    color: #FF6F61 !important;
    transform: translateX(4px);
}

/* Footer social icons – already have hover effect in your CSS (background change) */
footer .social-link:hover {
    background: #FF6F61 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255,111,97,0.3) !important;
}

/* Footer bottom links (Privacy Policy, Terms) */
footer .bottom-link {
    transition: all 0.3s ease;
}
footer .bottom-link:hover {
    color: #FF6F61 !important;
}

/* ============================================================
     RESPONSIVE: Keep hover touch-friendly
     ============================================================ */
@media (max-width: 768px) {
    /* On mobile, hover effects may not work well; we keep it but without transform */
    header nav ul li a:not(.nav-cta):hover {
        transform: none;
    }
    footer ul li a:hover {
        transform: none;
    }
}

header nav ul li a:not(.nav-cta):hover {
    background: rgba(255, 111, 97, 0.1);
    color: #FF6F61 !important;
    border-radius: 30px;
    padding: 8px 20px;
    transform: scale(1.02);
}

/* ============================================================
     FLIGHT OFFERS – CLEAN MINIMAL DESIGN
     ============================================================ */

/* Card Hover Effect */
[style*="background: #FFFFFF; border-radius: 20px; overflow: hidden;"]:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(1,58,99,0.15) !important;
    border-color: #FF6F61 !important;
}

/* Book Now Button Hover – Fills with Coral */
[style*="background: transparent; color: #FF6F61; border: 2px solid #FF6F61;"]:hover {
    background: #FF6F61 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,111,97,0.35) !important;
}

[style*="background: transparent; color: #FF6F61; border: 2px solid #FF6F61;"]:hover i {
    transform: translateX(4px);
}

/* View All Link Hover */
[style*="display:inline-block; color:#013A63; font-weight:600; text-decoration:none; border-bottom:2px solid #FF6F61;"]:hover {
    color: #FF6F61 !important;
    border-bottom-color: #FF6F61 !important;
}

/* ============================================================
     FLIGHT OFFERS – RESPONSIVE
     ============================================================ */

@media (max-width: 768px) {
    [style*="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px;"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    [style*="height: 120px;"] {
        height: 100px !important;
    }
    [style*="font-size: 1.7rem;"] {
        font-size: 1.4rem !important;
    }
    [style*="padding: 8px 20px;"] {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }
    [style*="padding: 20px 22px 18px;"] {
        padding: 14px 16px 14px !important;
    }
    [style*="font-size: 1.3rem;"] {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    [style*="height: 120px;"] {
        height: 85px !important;
    }
    [style*="font-size: 1.7rem;"] {
        font-size: 1.2rem !important;
    }
    [style*="padding: 8px 20px;"] {
        padding: 5px 12px !important;
        font-size: 0.7rem !important;
    }
    [style*="font-size: 1.3rem;"] {
        font-size: 1rem !important;
    }
}

/* ============================================================
     FULL-SCREEN MOBILE MENU – CONFLICT-FREE, WORKS WITH header.php
     ============================================================ */

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    .vista-logo img {
        height: 35px;
    }

    /* Show hamburger */
    .vista-hamburger {
        display: block !important;
    }

    /* Hide nav by default */
    .vista-nav {
        display: none !important;
        position: fixed;
        top: 60px; /* height of header */
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #FFFFFF;
        padding: 30px 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(1, 58, 99, 0.05);
        overflow-y: auto;
        z-index: 9998;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    /* Show when active */
    .vista-nav.is-active {
        display: flex !important;
        animation: vistaSlideDown 0.3s ease forwards;
    }

    @keyframes vistaSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Vertical list */
    .vista-nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 400px;
        padding: 0;
    }

    .vista-nav-list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(1, 58, 99, 0.06);
    }

    .vista-nav-list li:last-child {
        border-bottom: none;
    }

    .vista-nav-list li a {
        display: block;
        width: 100%;
        padding: 16px 20px !important;
        font-size: 1.1rem;
        border-radius: 0;
        color: #013A63;
        font-weight: 600;
    }

    .vista-nav-list li a:hover,
    .vista-nav-list li a:active {
        background: rgba(255, 111, 97, 0.08);
    }

    .vista-nav-list li a.vista-cta {
        background: #013A63;
        color: #fff !important;
        border-radius: 50px;
        margin: 15px auto 0;
        width: auto;
        padding: 12px 30px !important;
        display: inline-block;
    }

    .vista-nav-list li a.vista-cta:hover {
        background: #02548a;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .vista-header-inner {
        padding: 0 12px;
    }
    .vista-logo img {
        height: 30px;
    }
    .vista-hamburger {
        padding: 8px 4px;
    }
    .vista-hamburger-box {
        width: 24px;
        height: 18px;
    }
    .vista-hamburger-inner,
    .vista-hamburger-inner::before,
    .vista-hamburger-inner::after {
        width: 24px;
        height: 2.5px;
    }
    .vista-hamburger-inner::before { top: -7px; }
    .vista-hamburger-inner::after { bottom: -7px; }
    .vista-nav {
        top: 55px;
        height: calc(100vh - 55px);
        padding: 20px 15px;
    }
    .vista-nav-list li a {
        font-size: 1rem;
        padding: 14px 20px !important;
    }
}