:root {
    --primary-color: #03314b;
    --secondary-color: #f27d08;
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--secondary-color);
    --bs-body-font-family: "Noto Sans", sans-serif;
    --bs-body-line-height: 1.6;
    --bs-primary-rgb: 3, 49, 75;
    --bs-secondary-rgb: 242, 125, 8;
    --light-color: #f8f9fa;
    --dark-text: #333;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.9);
}

a {
    color: var(--primary-color);
    transition: all .25s linear;
}

a:hover {
    color: var(--secondary-color);
}

.modal {
    --bs-modal-width: 800px;
}

.section-title {
    margin-bottom: 1.6rem;
    color: var(--primary-color);
}

.btn-theme-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.navbar{
    position: sticky;
    top: 0;
    z-index: 9;
}

.nav-item.active .nav-link {
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
}




/* Call to Action Button Styles */
.cta-container {
    position: relative;
    margin-left: 2rem;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.65) 0%, #024a73 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 49, 75, 0.3);
    min-width: 180px;
    cursor: pointer;
    line-height: 1.4;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 49, 75, 0.4);
    background: linear-gradient(135deg, #024a73 0%, var(--primary-color) 100%);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(3, 49, 75, 0.3);
}

.cta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.cta-number {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    /*animation: pulse 2s infinite;*/
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Banner */

.hero {
    position: relative;
    min-height: 350px;
    background-image: linear-gradient(45deg, #ee1f1fdb, #1d2775cd);
    display: flex;
    width: 100%;
    align-items: center;
    background-position: 50% 90%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.hero-body {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.hero h1,
.hero p {
    color: #fff;
}

/* Deal Strip Banner*/
.offer-banner {
    height: 160px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a4d73 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offer-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.offer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.offer-left {
    display: flex;
    align-items: center;
}

.globe-container {
    position: relative;
    margin-right: 30px;
}

.globe {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.globe i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.8);
}

.globe::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: globeShine 4s infinite;
}

@keyframes globeShine {
    0% {
        transform: rotate(45deg) translateY(-100%);
    }

    100% {
        transform: rotate(45deg) translateY(100%);
    }
}

.offer-text {
    color: white;
}

.offer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.strip-cta-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(242, 125, 8, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.strip-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.strip-cta-button:hover::before {
    transform: translateX(0);
}

.strip-cta-button:hover {
    background-color: #e06d00;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(242, 125, 8, 0.4);
}

.flight-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.flight-path {
    position: absolute;
    top: 50%;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateY(-50%);
}

.flight-path::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(242, 125, 8, 0) 0%, rgba(242, 125, 8, 0.6) 50%, rgba(242, 125, 8, 0) 100%);
    animation: pathPulse 3s infinite alternate;
}

@keyframes pathPulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.8;
    }
}

.plane {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--secondary-color);
    animation: fly 10s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes fly {
    0% {
        left: 15%;
        transform: translateY(-50%) rotate(0deg);
    }

    25% {
        transform: translateY(-50%) rotate(5deg);
    }

    50% {
        transform: translateY(-50%) rotate(0deg);
    }

    75% {
        transform: translateY(-50%) rotate(-5deg);
    }

    100% {
        left: 85%;
        transform: translateY(-50%) rotate(0deg);
    }
}

.destinations {
    position: absolute;
    width: 100%;
    height: 100%;
}

.destination {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(242, 125, 8, 0.5);
}

.destination::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(242, 125, 8, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.destination:nth-child(1) {
    top: 25%;
    left: 30%;
}

.destination:nth-child(2) {
    top: 40%;
    left: 50%;
}

.destination:nth-child(3) {
    top: 65%;
    left: 40%;
}

.destination:nth-child(4) {
    top: 30%;
    left: 70%;
}

.destination:nth-child(5) {
    top: 70%;
    left: 75%;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.1;
}

.cloud {
    position: absolute;
    background-color: white;
    border-radius: 100px;
    opacity: 0.4;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background-color: white;
    border-radius: 100px;
}

.cloud1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 20%;
    animation: drift 20s infinite;
}

.cloud1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud1::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud2 {
    width: 80px;
    height: 35px;
    top: 60%;
    left: 60%;
    animation: drift 25s infinite;
}

.cloud2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud2::after {
    width: 50px;
    height: 35px;
    top: -10px;
    right: 15px;
}

@keyframes drift {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100px);
    }
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(242, 125, 8, 0.3);
    transform: rotate(5deg);
    z-index: 3;
}

@media (max-width: 768px) {
    .offer-container {
        flex-direction: column;
        text-align: center;
    }

    .offer-left {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .globe-container {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .offer-title {
        font-size: 26px;
    }

    .offer-subtitle {
        font-size: 16px;
    }

    .discount-badge {
        top: 10px;
        right: 10px;
        font-size: 16px;
        padding: 6px 12px;
    }
}

/*End Deal Strip Banner*/

.home-hero {
    background-image: url('../images/home-banner.png');
}

.hotels-hero {
    background-image: url('../images/hotels-bg.jpg');
}

.car-rentals-hero {
    background-image: url('../images/car-rentals-bg.jpg');
}

.book-with-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
}


section {
    background: #fff;
}

.bg-section {
    background-color: #1d27750f;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Flight Card */
.flight-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 24px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.flight-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.flight-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.flight-card .tag {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.flight-card .tag::after {
    content: '';
    background: var(--secondary-color);
    display: block;
    width: 15px;
    height: 6px;
    bottom: -5px;
    position: absolute;
    right: 2px;
    transform: skew(-50deg);
    border-radius: 0 16px 16px 0;
    z-index: 1;
}

.flight-card .route,
.flight-card .to {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.flight-card .from {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 12px;
}

.dates-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--primary-color);
}

.pricing-wrapper {
    border-top: 1px solid #ccc;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.flight-card .dates {
    font-size: 14px;
    color: #34495e;
    margin-bottom: 4px;
}

.flight-card .airplane {
    font-size: 24px;
    text-align: center;
    margin: 8px 0;
}

.flight-card .price-label {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
}

.flight-card .price {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Footer  */

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), #ff9d3d, var(--secondary-color));
    background-size: 200% 100%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: white;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-column p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
    margin-right: 1rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.5;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Payment Section */
.payment-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
}

.payment-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-icons img {
    width: 100px;
}

/* Disclaimer Section */
.disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer p {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.disclaimer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .payment-icons {
        gap: 1rem;
    }

    .payment-icon {
        height: 35px;
    }
}


.footer-logo {
    filter: brightness(0) invert(1);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner button {
    background: #4caf50;
    border: none;
    padding: 8px 15px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.booking-info {
    background: #f9fbff;
    padding: 30px 20px;
    color: #333;
    box-shadow: 0 0 25px #ececec;
    border-radius: 8px;
}

.booking-info strong {
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.booking-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* FAQ Section */

.faq-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(3, 49, 75, 0.05);
    padding-left: 35px;
}

.faq-question.active {
    color: var(--secondary-color);
}

.faq-icon {
    font-size: 18px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: rgba(255, 255, 255, 0.5);
}

.faq-answer-content {
    padding: 0 30px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-prompt {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), #0a4d73);
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-prompt h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-prompt p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.contact-btn:hover {
    background-color: #e06d00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 125, 8, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-question:hover {
        padding-left: 25px;
    }

    .faq-answer-content {
        padding: 0 20px;
    }

    .contact-prompt h3 {
        font-size: 24px;
    }
}


/* Popular Destinations */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.destination-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 240px;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

.destination-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(3, 49, 75, 0.8), transparent);
    color: white;
}

.city-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 25px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price-label {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 18px;
    margin-right: 4px;
    color: #666;
}

.price-details {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    margin-left: 5px;
}

.card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 20px 0;
}

.card-features {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #666;
}

.feature i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

.card-action {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.view-details-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
}

.view-details-btn:hover {
    background-color: #024368;
    box-shadow: 0 5px 15px rgba(3, 49, 75, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .destination-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 16px;
    }

}


/*Contact Page*/
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    padding: 40px;
    height: fit-content;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-details .contact-icon {
    font-size: 20px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.contact-details .contact-text {
    flex: 1;
}

.contact-details .contact-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-details .contact-value {
    color: #666;
}

.map-container {
    margin-top: 30px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    padding: 40px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(242, 125, 8, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #024368;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 49, 75, 0.3);
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width: 920px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}