﻿
/*Use*/
.confidence-section {
    padding: 67px 0 50px 0;
}

.confidence-section h2 {
    font-size: 26px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}
/* The Main Container */
.confidence-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #d1d9e6;
}

/* Individual Items */
.confidence-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px;
    transition: transform 0.3s ease;
}

    .confidence-item:hover {
        transform: translateY(-5px);
    }

/* Metallic Icon Design */
.conf-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(145deg, #b44fc5, #9C27B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    /* Metallic Chrome Border Effect */
    box-shadow: 0 0 0 3px #f4f7f9, 0 0 0 5px #cbd5e1, 0 4px 10px rgba(37, 99, 235, 0.3);
}

    .conf-icon::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: linear-gradient(to bottom right, rgba(255,255,255,0.4), transparent);
    }

/* Text Styling */
.conf-text b {
    display: block;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.conf-text p {
    margin: 0;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .confidence-box {
        padding: 20px;
        grid-template-columns: 1fr;
    }
}

/*Deal Summery*/
.dealsSumry {
    padding: 20px 0;
}
.dealsSumry .deals-header h2 {
    font-size: 26px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
}

.dealsSumry .deals-header {
    text-align: left;
}
.dealsSumry .deals-header p {
    font-size: 14px;
    color: #71717a;
    margin-bottom: 25px;
    border-left: 3px solid #91269F;
    padding-left: 12px;
}
.dealsSumry .deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.dealsSumry .deal-card {
    border: 1px solid #ededed;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.dealsSumry .deal-card:hover {
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.dealsSumry .deal-image {
width: 100%;
height: 200px;
object-fit: cover;
}
.dealsSumry .deal-content {
padding: 20px;
}
.dealsSumry .deal-content h3 {
font-size: 20px;
margin: 0 0 10px 0;
color: var(--text-dark);
}
.dealsSumry .deal-content h3 span {
    font-weight: 400;
    color: var(--text-gray);
}
.dealsSumry .deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.dealsSumry .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.dealsSumry .price sup {
    font-size: 12px;
    top: -0.5em;
}
.dealsSumry .book-btn {
    padding: 10px 24px;
    border: 1.5px solid #91269F;
    border-radius: 8px;
    background: transparent;
    color: #91269F;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dealsSumry .book-btn:hover {
    background-color: #91269F;
    color: white;
}

.dealsSumry .disclaimer {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}
@media (max-width: 600px) {
    .dealsSumry .deals-grid {
        grid-template-columns: 1fr;
    }
}
.popularFlights {
    padding: 35px 0 50px 0;
}

.popularFlights h2 {
    font-size: 26px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.popularFlights .subtitle {
    font-size: 14px;
    color: #71717a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e4e4e7;
    position: relative;
}

.popularFlights .subtitle::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #91269F;
}

.popularFlights .links-container {
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
    row-gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.popularFlights .flight-link {
text-decoration: none;
color: #475569;
font-size: 14px;
line-height: 1.4;
transition: all 0.2s ease;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.popularFlights .flight-link:hover {
    color: #91269F;
    font-weight: 600;
    transform: translateX(3px);
    display: inline-block;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .popularFlights .links-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .popularFlights .links-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .popularFlights h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .popularFlights .links-container {
        grid-template-columns: 1fr;
    }
}

/*Get Insparation*/
.getInspired {
    padding: 20px 0 60px 0;
    color: #1a1a1a;
}

    .getInspired .header-area {
        margin-bottom: 24px;
    }

    .getInspired h2 {
        font-size: 24px;
        margin: 0 0 8px 0;
        font-weight: 700;
    }

    .getInspired p {
        font-size: 16px;
        color: #474747;
        margin: 0;
    }

    .getInspired .inspiration-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two main columns */
        grid-template-rows: auto auto;
        gap: 16px;
    }

    .getInspired .card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        color: white;
        cursor: pointer;
        height: 280px; /* Fixed height for small cards */
    }

        .getInspired .card.large {
            grid-row: span 2;
            height: 100%;
        }

    .getInspired .sub-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .getInspired .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .getInspired .card:hover img {
        transform: scale(1.05);
    }

    .getInspired .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        text-align: center;
    }

    .getInspired .country {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .getInspired .city {
        display: block;
        font-size: 20px;
        font-weight: 700;
    }

@media (max-width: 768px) {
    .getInspired .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .getInspired .card.large {
        grid-row: span 1;
        height: 350px;
    }
}

/*Destination Deals*/
.flightDeals {
    color: #1a1a1a;
    position: relative;
    padding-bottom: 40px;
    padding-top: 20px;
}
.flightDeals h2 {
       font-size: 28px;
    font-weight: 700;
    color: #0f294d;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.flightDeals .subtitle {
    font-size: 14px;
    color: #71717a;
    margin-bottom: 16px;
    border-left: 3px solid #91269F;
    padding-left: 12px;
}
.flightDeals .deal-card {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin: 10px 5px;
    border-radius: 10px;
    overflow: hidden;
}

.flightDeals .deal-card:hover {
    border-color: #91269F;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(145, 38, 159, 0.15);
}

.flightDeals .img-box {
    height: 160px;
    overflow: hidden;
    background: #f4f4f5;
}

.flightDeals .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.flightDeals .card-body {
    padding: 18px;
}

.flightDeals .route {
    font-size: 12px;
    font-weight: 700;
    color: #91269F;
    margin-bottom: 4px;
}

.flightDeals .destination {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.flightDeals .price-area {
    padding: 15px 18px;
    border-top: 1px solid #f4f4f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flightDeals .price {
    font-size: 18px;
    font-weight: 800;
}

.flightDeals .owl-nav {
    position: absolute;
    top: 44%;
    left: -1.5%;
    margin: 0 !important;
    width: 103%;
    display: flex;
    justify-content: space-between;
}
.flightDeals .owl-nav button {
    background: #fff !important;
    border: 1px solid #e4e4e7 !important;
    width: 30px;
    height: 30px;
    border-radius: 4px !important;
    color: #91269F !important;
    font-size: 15px !important;
    margin-left: 8px !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.flightDeals .owl-nav button:hover {
    background: #91269F !important;
    color: #fff !important;
    border-color: #91269F !important;
}
.flightDeals .owl-dots {
    display: none !important;
}
