.discover-section {
    padding: 80px 0;
    background-color: #f3f1eb; /* Match the beige background from the reference */
}

.discover-section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
    font-family: 'Inter', 'Outfit', sans-serif;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .discover-grid {
        grid-template-columns: 1fr;
    }
}

.discover-card {
    display: flex;
    flex-direction: column;
}

.discover-img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}

.discover-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.discover-card:hover .discover-img-wrapper img {
    transform: scale(1.05);
}

.discover-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.text-orange {
    color: #ee7128 !important;
}

.discover-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.discover-footer-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ee7128;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.discover-footer-btn:hover {
    background-color: #d6601e;
    color: white;
}

.discover-price {
    color: #fff;
    font-size: 1rem;
}

.discover-price strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.discover-link {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.discover-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.discover-footer-btn:hover .discover-link i {
    transform: translateX(4px);
}

/* Why Vista Is Best Stacking Cards */
.vista-best-stacked-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; /* Space between cards before they stack */
    padding-bottom: 50px;
    width: 100%;
}

.vista-best-stacked-card {
    position: sticky;
    width: calc(50% - 20px); /* Two cards per row */
    max-width: 100%;
    transition: transform 0.3s ease;
}

/* Progressive top positions for overlapping stacking effect */
/* Row 1 */
.vista-best-stacked-card:nth-child(1),
.vista-best-stacked-card:nth-child(2) { top: 120px; }
/* Row 2 */
.vista-best-stacked-card:nth-child(3),
.vista-best-stacked-card:nth-child(4) { top: 140px; }
/* Row 3 */
.vista-best-stacked-card:nth-child(5),
.vista-best-stacked-card:nth-child(6) { top: 160px; }

/* Modern Feature Cards for Why Vista Is Best */
.modern-feature-card {
    background: linear-gradient(145deg, #ffffff, #fdfbf7);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(238, 113, 40, 0.08);
    border-left: 6px solid #ee7128;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04), 0 -5px 20px rgba(0,0,0,0.02);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(238, 113, 40, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    pointer-events: none;
}

.modern-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(238, 113, 40, 0.12), 0 -10px 30px rgba(0,0,0,0.03);
    border-color: rgba(238, 113, 40, 0.3);
}

.modern-feature-card:hover::before {
    opacity: 1;
}

.modern-feature-card.secondary {
    background: linear-gradient(145deg, #fcfbf8, #f5f4f0);
}

.modern-feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #fff0e6, #ffe0cc);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(238, 113, 40, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-feature-icon-wrapper svg {
    fill: #ee7128; /* Orange accent */
    width: 36px;
    height: 36px;
    transition: transform 0.4s ease;
}

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

.modern-feature-card:hover .modern-feature-icon-wrapper svg {
    transform: scale(1.1);
}

.modern-feature-content h6 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    font-family: 'Inter', 'Outfit', sans-serif;
}

.modern-feature-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.65;
    margin: 0;
}

/* Why Choose Us Section */
.wcu-image-collage {
    position: relative;
    width: 100%;
    min-height: 650px;
    border-radius: 24px;
}

.wcu-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
}

.wcu-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-img-bottom {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 55%;
    border-radius: 40px;
    overflow: hidden;
    z-index: 2;
    border: 20px solid #fff; 
}

.wcu-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-experience-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 220px;
    height: 180px;
    background: #013838; 
    border-radius: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    border: 20px solid #fff;
}

.wcu-experience-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.wcu-experience-box p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
    color: #e5e7eb;
}

.wcu-content {
    padding-left: 30px;
}

.wcu-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #111827; 
    margin-bottom: 20px;
    line-height: 1.15;
}

.wcu-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.wcu-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 25px;
}

.wcu-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.wcu-number.dark {
    color: #013838;
}

.wcu-number.light {
    color: #e2ede5; 
}

.wcu-feature-text h5 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.wcu-feature-text p {
    color: #777;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .wcu-content {
        padding-left: 0;
        margin-top: 40px;
    }
    .wcu-title {
        font-size: 2.5rem;
    }
    .wcu-image-collage {
        min-height: 500px;
    }
    .wcu-img-bottom {
        width: 65%;
        height: 50%;
        bottom: -15px;
        right: -15px;
        border-width: 15px;
    }
    .wcu-experience-box {
        width: 180px;
        height: 150px;
        bottom: -15px;
        left: -15px;
        border-width: 15px;
    }
    .wcu-experience-box h3 {
        font-size: 2rem;
    }
}

/* Plan Your Trip Section */
.plan-your-trip-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.video-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.video-background video {
    width: 100%; height: 100%; object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Right Card (Vibrant Contact Card) */
.pyt-vibrant-card {
    padding: 50px;
    color: #fff;
    position: relative;
    height: 100%;
}
.pyt-vibrant-content {
    position: relative;
    z-index: 2;
}
.pyt-icon i {
    font-size: 2.5rem;
    color: #fff;
}
.pyt-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
    color: #fff;
}
.pyt-subtitle {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 40px;
}
.pyt-contact-info {
    display: flex;
    gap: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-item .icon-wrapper {
    width: 50px; height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item .icon-wrapper i {
    font-size: 1.5rem;
    color: #111;
}
.contact-item .text-wrapper {
    display: flex;
    flex-direction: column;
}
.contact-item .text-wrapper span {
    font-size: 0.9rem;
    color: #e5e7eb;
}
.contact-item .text-wrapper strong {
    font-size: 1.1rem;
    color: #fff;
}

/* Right Card (Form) */
.pyt-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.pyt-form-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.pyt-form-card p {
    color: #666;
    margin-bottom: 30px;
}
.pyt-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}
.pyt-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
}
.pyt-form .form-control:focus {
    border-color: #f5a623;
    box-shadow: none;
}
.pyt-submit-btn {
    background: #f5a623;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: 10px;
}
.pyt-submit-btn:hover {
    background: #d48806;
    color: #111;
}

@media (max-width: 991px) {
    .pyt-vibrant-card, .pyt-form-card {
        padding: 30px;
    }
    .pyt-title {
        font-size: 2rem;
    }
    .pyt-contact-info {
        flex-direction: column;
        gap: 20px;
    }
}
