/* ======================================================
   GoTrip – Madhukar's Sprint  |  Home Page Styles
   ====================================================== */

/* ---------- Banner / Hero ---------- */
.banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.animated-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 12, 41, .7) 0%, rgba(48, 43, 99, .7) 100%),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1400&q=80') center/cover no-repeat;
    animation: bgPan 20s ease-in-out infinite alternate;
}

@keyframes bgPan {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 30, 0.45);
}

.banner-text-item {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 950px;
    padding: 0 24px;
}

.banner-heading {
    margin-bottom: 36px;
}

.banner-heading h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .4);
}

.highlight-text {
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: 1.2rem;
    opacity: .85;
    font-weight: 300;
}

/* Search form */
.form {
    width: 100%;
}

.search-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .15);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 14px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .2);
}

.input-group {
    position: relative;
    flex: 1.2 1 200px;
    margin-right: 10px;
}

.input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    z-index: 1;
}

.input-group input {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    padding: 0 14px 0 42px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: .25s;
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, .6);
}

.input-group input:focus {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .5);
}

.input-group input[type="date"] {
    color: rgba(255, 255, 255, .85);
}

.date-input-group {
    flex: 0.8 1 160px !important;
    margin: 0 10px 0 0 !important;
}

.book {
    flex: 0 0 auto;
    height: 50px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 28px;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: .3s;
    box-shadow: 0 4px 18px rgba(255, 95, 109, .4);
    box-sizing: border-box;
}

.book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 95, 109, .55);
}

/* Banner bottom feature badges */
.banner-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
}

.banner-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    font-weight: 500;
    opacity: .9;
}

.banner-features .feature i {
    font-size: 1.2rem;
    color: #ffc371;
}

/* ---------- Services / Why Choose Us ---------- */
.services {
    padding: 70px 24px;
    background: #fff;
}

.mini-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 48px;
}

.attractive-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.attractive-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.service-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 95, 109, .12), rgba(255, 195, 113, .12));
    border: 2px solid rgba(255, 95, 109, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ff5f6d;
    transition: .3s;
}

.attractive-service:hover .service-circle {
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: #fff;
    transform: scale(1.08);
}

.attractive-service span {
    font-size: .92rem;
    font-weight: 600;
    color: #444;
}

/* ---------- Destinations Grid ---------- */
.places {
    padding: 70px 24px;
    background: var(--light, #f8f9fa);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 10px;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    transition: .3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .13);
}

.card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: #fff;
    font-size: .71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.zoom-img {
    overflow: hidden;
}

.img-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.card:hover .img-card img {
    transform: scale(1.06);
}

.text {
    padding: 18px 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .8rem;
    font-weight: 600;
    color: #ffc371;
}

.cost {
    font-size: .82rem;
    color: #888;
    margin-bottom: 10px;
}

.card-box {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.card-box p {
    font-size: .8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-box i {
    color: #ff5f6d;
}

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: #fff;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    transition: .3s;
}

.view-details:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 14px rgba(255, 95, 109, .4);
    color: #fff;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: #fff;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    transition: .3s;
    box-shadow: 0 4px 18px rgba(255, 95, 109, .3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(255, 95, 109, .45);
    color: #fff;
}

/* ---------- About Section ---------- */
.about {
    padding: 80px 24px;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
    object-fit: cover;
    height: 440px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 95, 109, .45);
    text-align: center;
}

.experience-badge .number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: .5rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.about-description {
    color: #777;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 95, 109, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5f6d;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: .92rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: .8rem;
    color: #999;
}

.about-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-about {
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: #fff;
    border-radius: 50px;
    font-size: .92rem;
    font-weight: 700;
    display: inline-block;
    transition: .3s;
    box-shadow: 0 4px 16px rgba(255, 95, 109, .3);
}

.btn-primary-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 95, 109, .45);
    color: #fff;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 80px 24px;
    background: var(--light, #f8f9fa);
}

.testimonials-slider {
    max-width: 720px;
    margin: 0 auto;
}

.testimonial-item {
    display: flex;
    gap: 24px;
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .08);
    align-items: flex-start;
}

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

.testimonial-content p {
    color: #666;
    line-height: 1.8;
    font-size: .92rem;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.testimonial-rating i {
    color: #ffc371;
    font-size: .85rem;
}

/* ---------- Scroll-up & shared utilities ---------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-description {
    color: #888;
    font-size: .95rem;
    margin-top: 8px;
}

/* ======================================================
   US#10 Responsive
   ====================================================== */
@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-heading h1 {
        font-size: 2.4rem;
    }

    .search-container {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 10px;
        padding: 16px;
    }

    .input-group,
    .date-input-group {
        width: 100%;
        flex: 1 1 100%;
        margin: 0 0 4px 0;
    }

    .book {
        width: 100%;
        justify-content: center;
    }

    .banner-features {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img img {
        height: 280px;
    }

    .experience-badge {
        bottom: -14px;
        right: 10px;
    }

    .testimonial-item {
        flex-direction: column;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner-heading h1 {
        font-size: 1.9rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .mini-title {
        font-size: 1.6rem;
    }
}