﻿

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo',sans-serif;
    background: #f6fbfc;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: white;
    border-bottom: 3px solid #019db6;
    padding: 15px 0;
}

.logo {
    text-align: center;
}

    .logo img {
        height: 65px;
    }



.hero {
    height: 90vh;
    background: linear-gradient( rgba(0,0,0,0.45), rgba(0,0,0,0.75) ), url('/TITTemplate/VarnaTrip/images/slider1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-box {
    max-width: 900px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.highlight {
    color: #019db6;
}

.hero-buttons {
    margin-top: 20px;
}

@media(max-width:768px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #019db6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin: 5px;
    font-weight: 600;
}

.btn-whatsapp {
    background: #1f9aa5;
}

section {
    padding: 70px 0;
}

    section h2 {
        text-align: center;
        color: #0e5f66;
        margin-bottom: 40px;
    }

/* HOTELS */

.hotels {
    background: #f1f7f8;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 25px;
}

.hotel {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .hotel:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    }

    .hotel img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }

.hotel-content {
    padding: 22px;
    text-align: center;
}

    .hotel-content h3 {
        color: #0e5f66;
        font-size: 22px;
        margin-bottom: 8px;
    }

.hotel-stars {
    color: #019db6;
    font-size: 18px;
    margin-bottom: 10px;
}

.hotel-content p {
    color: #555;
    font-size: 16px;
    margin-bottom: 18px;
}

.hotel-price {
    display: inline-block;
    background: #1f9aa5;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
}

    .hotel-price span {
        color: #019db6;
        font-weight: 800;
    }

/* EXCURSIONS */

.excursions {
    background: white;
}

.excursion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.excursion {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
}

    .excursion img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 10px;
    }

.excursion-prices {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.adult-price,
.child-price {
    background: #f4f7fb;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.adult-price {
    color: #0f6a7b;
}

.child-price {
    color: #2e7d32;
}

.excursion-prices i {
    font-size: 14px;
}

.excursion-image-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* BOOKING FORM */

.booking {
    background: #f1f7f8;
}

.form-box {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .form-box input,
    .form-box textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: 'Cairo';
    }

    .form-box button {
        background: #1f9aa5;
        color: white;
        padding: 14px;
        border: none;
        width: 100%;
        border-radius: 6px;
        font-size: 16px;
    }

/* CONTACT */

.contact {
    text-align: center;
}

    .contact p {
        font-size: 18px;
        margin: 10px 0;
    }

/* FOOTER */

footer {
    background: #0e5f66;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media(max-width:768px) {

    .hero h1 {
        font-size: 30px;
    }
}


.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    text-align: right;
}

    .about-text p {
        font-size: 18px;
        line-height: 1.9;
        color: #444;
    }

.about-image {
    flex: 1;
}

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

@media(max-width:768px) {

    .about-flex {
        flex-direction: column;
    }
}

/* Program */

.trip-details {
    background: #ffffff !important;
    padding: 80px 0;
    border-top: 1px solid #eef2f3;
    border-bottom: 1px solid #eef2f3;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.detail-card {
    background: #f6fbfc;
    padding: 28px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all .3s ease;
    border: 1px solid #eef3f4;
}

    .detail-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .detail-card .icon {
        font-size: 34px;
        margin-bottom: 12px;
        color: #1f9aa5;
    }

    .detail-card h3 {
        color: #0e5f66;
        margin-bottom: 8px;
        font-size: 18px;
    }

    .detail-card p {
        color: #555;
        font-size: 15px;
    }
.PriceComparisonBtnCenter {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    background: #f3f6f8;
    color: #1b2537;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e1e7ea;
    transition: 0.25s;
    max-width: 320px;
}

    .PriceComparisonBtnCenter:hover {
        background: #e9f0f4;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

.PriceComparisonIcon {
    font-size: 22px;
}

.PriceComparisonText {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

    .PriceComparisonText small {
        display: block;
        font-weight: 400;
        color: #6b7b86;
        font-size: 12px;
        margin-top: 2px;
    }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 34px;
        color: #0e5f66;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }

        .section-title h2:after {
            content: "";
            display: block;
            width: 70px;
            height: 4px;
            background: #019db6;
            margin: 12px auto 0;
            border-radius: 3px;
        }

    .section-title p {
        color: #666;
        font-size: 17px;
        margin-top: 10px;
    }

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    left: 25px;
    background: #25D366;
    color: white;
    font-size: 26px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    z-index: 999;
}


/* =========================
   Countdown
========================= */

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap; /* يمنع النزول لسطر ثاني */
}

/* box */

.countdown-box {
    background: #1f9aa5;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

    /* number */

    .countdown-box span {
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
    }

    /* label */

    .countdown-box small {
        font-size: 12px;
        margin-top: 4px;
    }

/* divider */

.countdown-divider {
    font-size: 22px;
    color: #1f9aa5;
    font-weight: 700;
}

/* =========================
   Mobile
========================= */

@media(max-width:768px) {

    .countdown {
        gap: 6px;
    }

    .countdown-box {
        width: 60px;
        height: 60px;
    }

        .countdown-box span {
            font-size: 20px;
        }

        .countdown-box small {
            font-size: 10px;
        }

    .countdown-divider {
        font-size: 18px;
    }
}








.trust {
    background: #f1f7f8;
    padding: 50px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
    text-align: center;
}

.trust-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    color: #0e5f66;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery {
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

    .gallery-grid img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.3s;
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

    .gallery-modal img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 8px;
    }

.close-gallery {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.included {
    background: #ffffff;
    padding: 70px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
    margin-top: 30px;
}

    .included-grid div {
        background: #f6fbfc;
        padding: 20px;
        border-radius: 10px;
        font-size: 16px;
        color: #0e5f66;
    }


.packages {
    background: #f1f7f8;
    padding: 80px 0;
}

.date-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab {
    background: #f1f7f8;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

    .tab.active {
        background: #1f9aa5;
        color: white;
    }

button,
.tab {
    font-family: 'Cairo',sans-serif;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

@media(max-width:768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: .3s;
    text-align: center;
}

    .package-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.15);
    }

    .package-card img {
        width: 100%;
        /*height: 180px;*/
        object-fit: cover;
    }

.package-content-box {
    padding: 20px;
}

.package-card h3 {
    color: #0e5f66;
    margin-bottom: 10px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #1f9aa5;
    margin: 12px 0;
}

.package-content {
    display: none;
}

    .package-content.active {
        display: block;
    }


.more-btn {
    margin-top: 20px;
    display: inline-block;
}

.varna-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    overflow-y: auto;
}

.varna-modal-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 30px;
    position: relative;
}

    .varna-modal-content img {
        width: 100%;
        border-radius: 12px;
        margin: 25px 0;
    }

.close-varna {
    position: fixed;
    top: 25px;
    right: 35px;
    font-size: 40px;
    cursor: pointer;
    color: #333;
    z-index: 10000;
}

.varna-info {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-box {
    background: #f6fbfc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .info-box .icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .info-box h3 {
        font-size: 16px;
        color: #0e5f66;
        margin-bottom: 5px;
    }

    .info-box p {
        font-size: 15px;
        color: #444;
    }

.trip-overview {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #eef2f3;
    border-bottom: 1px solid #eef2f3;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.overview-card {
    background: #f6fbfc;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: .3s;
}

    .overview-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .overview-card .icon {
        font-size: 34px;
        margin-bottom: 12px;
        color: #1f9aa5;
    }

    .overview-card h3 {
        color: #0e5f66;
        font-size: 18px;
        margin-bottom: 6px;
    }

    .overview-card p {
        color: #555;
        font-size: 15px;
    }

.hotel-link {
    color: #0e5f66;
    text-decoration: none;
    cursor: pointer;
}

    .hotel-link:hover {
        color: #1f9aa5;
    }

.hotel-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    overflow-y: auto;
    padding: 40px 0;
}

.hotel-modal-content {
    background: white;
    margin: 40px auto;
    padding: 50px;
    width: 92%;
    max-width: 1300px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close-hotel {
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 35px;
    cursor: pointer;
}

.hotel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 15px;
    margin-top: 15px;
}

    .hotel-gallery img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
    }

.hotel-gallery-box {
    margin-top: 20px;
}

.hotel-main-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.hotel-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .hotel-thumbs img {
        width: 110px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
    }

        .hotel-thumbs img:hover {
            transform: scale(1.05);
        }

.hotel-info-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 25px;
}

.hotel-text {
    flex: 1;
    text-align: right;
}

    .hotel-text p {
        line-height: 1.9;
        color: #555;
        font-size: 17px;
        margin-bottom: 12px;
    }

.hotel-map {
    flex: 1;
}

@media (max-width:768px) {

    .hotel-info-grid {
        flex-direction: column;
        gap: 20px;
    }

    .hotel-map iframe {
        height: 250px;
    }

    .hotel-modal-content {
        width: 92%;
        padding: 25px;
    }

    .hotel-text {
        text-align: right;
    }

        .hotel-text h2 {
            font-size: 22px;
        }

        .hotel-text p {
            font-size: 15px;
            line-height: 1.8;
        }
}



.faq {
    background: #f1f7f8;
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: right;
    padding: 18px 22px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #0e5f66;
    font-family: 'Cairo',sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-question:after {
        content: "+";
        font-size: 22px;
        color: #1f9aa5;
    }

.faq-item.active .faq-question:after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 22px;
}

    .faq-answer p {
        padding: 15px 0;
        line-height: 1.9;
        color: #555;
    }

/* =========================
   Excursion & Modal
========================= */
.excursion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.excursion {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: .3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .excursion:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .excursion img {
        width: 100%;
        height: 190px;
        object-fit: cover;
    }

.excursion-content {
    padding: 18px 16px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.excursion h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
    min-height: 54px;
}

.excursion-link {
    text-decoration: none;
    color: #0e5f66;
    font-weight: 700;
    transition: .3s;
}

    .excursion-link:hover {
        color: #1f9aa5;
    }

.excursion-duration {
    font-size: 15px;
    color: #777;
    font-weight: 600;
    margin-top: auto;
}
.excursion-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    z-index: 9999;
    overflow: auto;
    padding: 60px 20px;
}

    .excursion-modal:target {
        display: block;
    }

/* =========================
   Modal Content
========================= */

.excursion-modal-content {
    background: #fff;
    max-width: 1100px;
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

/* =========================
   Close Button
========================= */

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f9aa5;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: .3s;
}

    .close-modal:hover {
        background: #0e5f66;
        transform: scale(1.05);
    }

/* =========================
   Header
========================= */

.excursion-header {
    text-align: center;
    margin-bottom: 25px;
}

    .excursion-header h2 {
        color: #0e5f66;
        margin-bottom: 5px;
    }

    .excursion-header h3 {
        color: #1f9aa5;
        margin-bottom: 10px;
    }

.excursion-duration {
    color: #1f9aa5;
    font-weight: 600;
}

/* =========================
   Layout
========================= */

.excursion-modal-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.excursion-gallery,
.excursion-info {
    flex: 1;
}

.excursion-info {
    text-align: right;
}

/* =========================
   Gallery
========================= */

.excursion-main-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}

.excursion-thumbs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
    margin-top: 10px;
}

    .excursion-thumbs img {
        width: 100%;
        height: 70px;
        object-fit: cover;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
    }

        .excursion-thumbs img:hover {
            transform: scale(1.05);
        }

/* =========================
   Text
========================= */

.excursion-details {
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

    .excursion-details ul {
        list-style: disc;
        padding-right: 25px;
        margin-top: 10px;
    }

    .excursion-details li {
        margin-bottom: 6px;
    }

/* =========================
   Mobile
========================= */

@media (max-width:768px) {

    .excursion-modal-grid {
        flex-direction: column;
    }

    .excursion-main-image {
        height: 250px;
    }
}

/* =========================
   visa-alert
========================= */

.visa-alert {
    display: flex;
    justify-content: center;
    margin: 1px 20px;
}

.visa-alert-box {
    background: linear-gradient(135deg,#0e5f66,#1f9aa5);
    color: #fff;
    padding: 30px 35px;
    border-radius: 18px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    position: relative;
}

/* title */

.visa-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.visa-icon {
    font-size: 22px;
    background: rgba(255,255,255,0.2);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* badge */

.visa-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: .3px;
}

/* text */

.visa-alert-box h3 {
    font-size: 22px;
    margin: 0;
}

.visa-alert-box p {
    line-height: 1.9;
    font-size: 16px;
    opacity: .95;
    max-width: 650px;
    margin: auto;
}

/* highlight */

.visa-alert-box strong {
    color: #ffe58a;
}

/* mobile */

@media(max-width:768px) {

    .visa-alert-box {
        padding: 22px;
    }

    .visa-title {
        flex-direction: column;
    }

    .visa-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .visa-alert-box h3 {
        font-size: 18px;
    }

    .visa-alert-box p {
        font-size: 14px;
    }
}



.site-footer {
    text-align: center;
    padding: 25px 20px;
    background: #0e5f66;
    color: #fff;
    font-size: 14px;
}

    .site-footer a {
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
    }

        .site-footer a:hover {
            text-decoration: underline;
        }



/* =========================
   Package Modal
========================= */
.flight-dates {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
}

.flight-date {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f7f8;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

    .flight-date:hover {
        background: #e6f2f3;
    }

    .flight-date.active {
        background: #1f9aa5;
        color: white;
    }

.date-icon {
    font-size: 14px;
}

.package-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 9999;
    overflow: auto;
}
    .package-modal:target {
        display: block;
    }

.package-modal-content {
    background: #fff;
    max-width: 1100px;
    margin: auto;
    padding: 35px;
    border-radius: 14px;
    position: relative;
}

/* =========================
   Header
========================= */

.package-header {
    text-align: center;
    margin-bottom: 25px;
}

    .package-header h2 {
        color: #0e5f66;
        margin-bottom: 8px;
        font-size: 26px;
    }

.package-stars {
    color: #f7b500;
    font-size: 18px;
    margin-bottom: 5px;
}

/* =========================
   Grid Layout
========================= */

.package-modal-grid {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    flex-direction: row-reverse;
}

/* =========================
   Gallery
========================= */

.package-gallery {
    flex: 1;
    width: 100%;
}

.package-main-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

/* thumbnails */

.package-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

    .package-thumbs img {
        width: 85px;
        height: 65px;
        object-fit: cover;
        border-radius: 6px;
        cursor: pointer;
        transition: .3s;
    }

        .package-thumbs img:hover {
            transform: scale(1.05);
        }

/* =========================
   Text
========================= */


.details-text {
    line-height: 1.9;
    color: #444;
    font-size: 15px;
    max-height: 2120px;
    overflow: hidden;
    position: relative;
    transition: max-height .4s ease;
}

    .details-text.expanded {
        max-height: 1000px;
    }

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #1aa3a8;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

    .read-more-btn:hover {
        color: #14868a;
    }

    .read-more-btn .arrow {
        font-size: 16px;
        transition: transform .3s ease;
    }

.details-text.expanded + .read-more-btn .arrow {
    transform: rotate(180deg);
}







.package-info {
    flex: 1;
    text-align: right;
}

.package-details {
    line-height: 1.9;
    color: #444;
    margin-top:30px;
    margin-bottom: 20px;
    font-size: 15px;
}

    .package-details p {
        margin-bottom: 12px;
    }
.package-prices {
    margin-top: 25px;
    background: #f5f6f8;
    border-radius: 12px;
    padding: 18px;
}

.price-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #1b2537;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    /*border-bottom: 1px solid #e6e6e6;*/
}

    .price-row:last-child {
        border-bottom: none;
    }

.price-note {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
}

.room-type {
    font-weight: 500;
    color: #444;
}

.room-price {
    font-weight: 700;
    color: #1b2537;  
}

.price-room {
    display: flex;
    flex-direction: column;
}

.price-offer {
    margin-top: 4px;
    font-size: 13px;
    color: #d35400;
}

.offer-date {
    display: block;
    font-size: 12px;
    color: #777;
}

.price-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.price-normal {
    color: #1b2537;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.price-offer {
    color: #e63946;
    font-size: 16px;
    font-weight: 700;
}

.offer-text {
    margin-top: 6px;
    font-size: 13px;
    color: #e63946;
    font-weight: 500;
}

.room-price-block {
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
}
    .room-price-block:last-child {
        border-bottom: none;
    }

.offer-warning {
    margin-top: 6px;
    background: #e63946;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}


/* =========================
   Buttons
========================= */

.package-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #1f9aa5;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 42px;
    transition: .3s;
}

    .btn-primary:hover {
        background: #167c84;
    }

.btn-outline {
    border: 2px solid #1f9aa5;
    color: #1f9aa5;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 42px;
    transition: .3s;
}

    .btn-outline:hover {
        background: #1f9aa5;
        color: #fff;
    }

/* =========================
   Image Hover
========================= */

.package-image-link img {
    transition: .3s;
    cursor: pointer;
}

.package-image-link:hover img {
    transform: scale(1.03);
}

/* =========================
   Mobile
========================= */

@media(max-width:768px) {

    .package-modal {
        padding: 25px 10px;
    }

    .package-modal-content {
        padding: 20px;
    }

    .package-modal-grid {
        flex-direction: column;
        gap: 20px;
    }

    /* gallery mobile fix */

    .package-main-image {
        height: 220px;
        border-radius: 10px;
    }

    .package-thumbs {
        justify-content: center;
    }

        .package-thumbs img {
            width: 70px;
            height: 55px;
        }

    .package-header h2 {
        font-size: 22px;
    }

    .package-details {
        font-size: 14px;
    }
}


/* =========================
   Booking Form
========================= */

.BookingFormBox {
    max-width: 950px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.BookingFormRow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.BookingFormRow2 {
    grid-template-columns: 1fr 1fr;
}

.BookingFormTravellers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.BookingFormGroup label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}

.BookingFormGroup input,
.BookingFormGroup select,
.BookingFormGroup textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Cairo',sans-serif;
    font-size: 14px;
}

.BookingFormGroup textarea {
    resize: vertical;
}

.BookingFormButton {
    width: 100%;
    background: #1f9aa5;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}

    .BookingFormButton:hover {
        background: #167c84;
    }


/* =========================
   Mobile
========================= */

@media(max-width:768px) {

    .BookingFormRow {
        grid-template-columns: 1fr;
    }

    .BookingFormRow2 {
        grid-template-columns: 1fr;
    }

    .BookingFormTravellers {
        grid-template-columns: 1fr 1fr 1fr;
    }
}


.faq-answer ul {
    margin: 10px 0;
    padding-right: 25px;
}

.faq-answer li {
    margin: 6px 0;
    line-height: 1.7;
}


.varna-offer-alert {
    background: linear-gradient(90deg,#ff7a18,#ffb347);
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin: 20px auto 35px;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

    .varna-offer-alert strong {
        font-weight: 700;
    }



.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
    margin-top: 30px;
}
/* خلي السؤال يأخذ عرض كامل داخل الكارد */
.faq-item {
    background: #f7f9fa;
    border-radius: 8px;
    padding: 5px 10px;
}

/* موبايل */
@media (max-width:768px) {

    .faq-container {
        grid-template-columns: 1fr;
    }
}

.flight-dates-box-Package {
    background: #f7f9fc;
    border-radius: 12px;
    padding: 15px 18px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.flight-date-item-Package {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flight-icon-Package {
    width: 36px;
    height: 36px;
    background: #162c66;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
}

.flight-icon.return-Package {
    background: #0ea5e9;
}

.flight-text-Package {
    display: flex;
    flex-direction: column;
}

.flight-label-Package {
    font-size: 13px;
    color: #6b7280;
}

.flight-date-Package {
    font-weight: 700;
    font-size: 15px;
    color: #1f2937;
}

.flight-airport-Package {
    font-size: 13px;
    color: #6b7280;
    margin-top: 3px;
    display: block;
}

.package-details-full {
    margin-top: 30px;
    width: 100%;
}

    .package-details-full .details-text {
        line-height: 1.9;
        font-size: 15px;
    }


.visa-note-package {
    background: #fff4e5;
    border: 1px solid #f5c26b;
    color: #8a5b00;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 12px;
}

.extra-services {
    margin-top: 20px;
}

.extra-title {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

    .checkbox-row input {
        width: 18px;
        height: 18px;
    }
/*

.PriceComparisonBtn {
    background: #ff6a3d;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.PriceComparisonModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: auto;
}

.PriceComparisonContainer {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.PriceComparisonClose {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 32px;
    cursor: pointer;
    background: #f5f5f5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.PriceComparisonTitle {
    text-align: center;
    margin-bottom: 10px;
}

.PriceComparisonSubtitle {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.PriceComparisonGrid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.PriceComparisonCard {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    background: #fafafa;
    transition: 0.25s;
}

    .PriceComparisonCard:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

.PriceComparisonHotel h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.PriceComparisonStars {
    color: #f5b301;
    margin-bottom: 5px;
}

.PriceComparisonMeal {
    font-size: 14px;
    color: #666;
}

.PriceComparisonPrice {
    margin-top: 15px;
}

.PriceComparisonFrom {
    display: block;
    font-size: 13px;
    color: #777;
}

.PriceComparisonAmount {
    font-size: 22px;
    font-weight: 700;
    color: #ff6a3d;
}

.PriceComparisonDetails {
    display: block;
    margin-top: 15px;
    padding: 10px;
    background: #1fa7a1;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.PriceComparisonFooter {
    text-align: center;
    margin-top: 25px;
}

.PriceComparisonViewAll {
    background: #ff6a3d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

@media(max-width:900px) {

    .PriceComparisonGrid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {

    .PriceComparisonGrid {
        grid-template-columns: 1fr;
    }
}*/


.PriceComparisonBtn {
    background: #ff6a3d;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
}

    .PriceComparisonBtn:hover {
        background: #e95c32;
    }

.PriceComparisonModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: auto;
}

.PriceComparisonContainer {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.PriceComparisonClose {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
}

.PriceComparisonTitle {
    text-align: center;
    margin-bottom: 10px;
}

.PriceComparisonSubtitle {
    text-align: center;
    color: #777;
    margin-bottom: 35px;
}

.PriceComparisonDateBlock {
    margin-bottom: 22px;
}

.PriceComparisonDateTitle {
    font-size: 18px;
    margin-bottom: 8px;
}

.PriceComparisonGrid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-top: 10px;
}
.PriceComparisonCard {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    background: #fafafa;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.2s;
}


    .PriceComparisonCard:hover {
        box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    }

.PriceComparisonHotelName {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #333;
}

.PriceComparisonPrice {
    font-size: 16px;
    font-weight: 700;
    color: #ff6a3d;
}

.PriceComparisonDetails {
    display: block;
    background: #1fa7a1;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
}

.PriceComparisonFooter {
    text-align: center;
    margin-top: 20px;
}

.PriceComparisonViewAll {
    background: #ff6a3d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

@media(max-width:900px) {

    .PriceComparisonGrid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {

    .PriceComparisonGrid {
        grid-template-columns: 1fr;
    }
}



.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}


.VarnaSendMailBtn {
    background: #eef3f5;
    color: #1b2537;
    padding: 12px 22px;
    border-radius: 10px;
    border: 1px solid #dbe3e8;
    font-weight: 600;
    cursor: pointer;
}


.VarnaMailModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}


.VarnaMailModalContent {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}


    .VarnaMailModalContent input {
        width: 100%;
        padding: 10px;
        margin-bottom: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }


    .VarnaMailModalContent button {
        background: #ff6a3d;
        color: #fff;
        padding: 12px;
        border: none;
        border-radius: 6px;
        width: 100%;
        font-weight: bold;
        cursor: pointer;
    }


.VarnaMailClose {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.VarnaSendMailWrapper {
    text-align: center;
    margin-top: 40px;
}

.VarnaSendMailBtn {
    background: #f4f6f8;
    border: 1px solid #d6dce1;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Cairo',sans-serif;
}

    .VarnaSendMailBtn:hover {
        background: #ff6a3d;
        color: #fff;
        border-color: #ff6a3d;
    }