/* ================================
   TOUR HERO
================================ */
.tour-hero {
    position: relative;
    height: 55vh;
    background: url("../img/mar.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.tour-hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.tour-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tour-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================================
   TOUR DETAILS
================================ */
.tour-details {
    background: #ffffff;
    padding: 60px 20px;
}

.tour-container {
    max-width: 1100px;
    margin: auto;
}

/* ================================
   DESCRIPTION
================================ */
.tour-description h2,
.tour-gallery h2,
.tour-itinerary h2,
.tour-info h2 {
    color: #00334d;
    margin-bottom: 15px;
}

.tour-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

/* ================================
   GALLERY
================================ */
.tour-gallery {
    margin: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ================================
   ITINERARY
================================ */
.tour-itinerary ul {
    list-style: none;
    padding: 0;
}

.tour-itinerary li {
    background: #f6f7f8;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tour-itinerary strong {
    color: #00334d;
}

/* ================================
   ADDITIONAL INFO
================================ */
.tour-info ul {
    list-style: none;
    padding: 0;
}

.tour-info li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .tour-hero-content h1 {
        font-size: 2.2rem;
    }

    .gallery-grid img {
        height: 180px;
    }
}

/* ================================
   BOOK TOUR CTA
================================ */
.tour-book-cta {
    background: linear-gradient(135deg, #00334d, #005f73);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.tour-book-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tour-book-cta p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.book-tour-btn {
    display: inline-block;
    background: #f9c74f;
    color: #00334d;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-tour-btn:hover {
    background: #ffd166;
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tour-book-cta h2 {
        font-size: 1.6rem;
    }

    .book-tour-btn {
        padding: 14px 32px;
    }
}


.footer {
    background: linear-gradient(180deg, #063a52 0%, #052f44 100%);
    color: #ffffff;
    padding: 70px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: flex-start;
    text-align: center;
}

/* BRAND */
.footer-brand img {
    width: 130px;
    margin-bottom: 15px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.85;
    max-width: 230px;
    margin: auto;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffa726;
}

/* SOCIALS */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #ffa726;
    color: #063a52;
    transform: translateY(-3px);
}

/* DIVIDER */
.footer-divider {
    margin: 40px auto 20px;
    max-width: 1100px;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* COPYRIGHT */
.footer-copy {
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}