﻿ 
:root {
    --primary: #1e3c72;
    --primary-light: #2a4a82;
    --primary-dark: #0f2a4a;
    --accent: #d4af37;
    --accent-light: #e5c558;
    --accent-dark: #b38f2e;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --light: #f8f9fa;
    --dark: #343a40;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow-x: hidden;
}

/* Breadcrumb Styles */
.bg-breadcrumb {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.95), rgba(42, 74, 130, 0.9)), url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Kaaba_Masjid_Al_Haram_Makkah_Saudi_Arabia4.jpg/800px-Kaaba_Masjid_Al_Haram_Makkah_Saudi_Arabia4.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .bg-breadcrumb::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
        pointer-events: none;
    }

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Package Header */
.package-header {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

    .package-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    }

.package-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.package-code {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .package-code span {
        background: var(--light);
        padding: 5px 15px;
        border-radius: 50px;
        color: var(--primary);
        font-weight: 600;
    }

.rating {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 20px;
}

    .rating span {
        color: #666;
        font-size: 16px;
        margin-left: 10px;
    }

/* Image Gallery */
.gallery-container {
    position: relative;
    margin-bottom: 40px;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 15px;
}

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .main-image:hover img {
        transform: scale(1.05);
    }

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.thumbnail {
    border-radius: 10px;
    overflow: hidden;
    height: 100px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
    border: 3px solid transparent;
}

    .thumbnail.active {
        opacity: 1;
        border-color: var(--accent);
        transform: scale(1.05);
    }

    .thumbnail:hover {
        opacity: 1;
        transform: scale(1.05);
    }

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Quick Info Cards */
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

    .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--primary));
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

        .info-card:hover::before {
            transform: scaleX(1);
        }

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    transition: var(--transition-smooth);
}

.info-card:hover .info-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.info-card h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.info-card p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Section Titles */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-subtitle {
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .section-main-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--primary));
        border-radius: 2px;
    }

/* Include/Exclude Tabs */
.service-tabs {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.nav-service-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

    .nav-service-tabs .nav-link {
        color: #666;
        font-weight: 600;
        font-size: 18px;
        padding: 10px 30px;
        border-radius: 50px;
        transition: var(--transition-smooth);
    }

        .nav-service-tabs .nav-link.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
        }

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-list li {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        font-size: 16px;
        transition: var(--transition-smooth);
    }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li:hover {
            background: var(--light);
            transform: translateX(10px);
            border-radius: 10px;
        }

        .service-list li i {
            font-size: 20px;
            margin-right: 15px;
        }

            .service-list li i.fa-check-circle {
                color: var(--success);
            }

            .service-list li i.fa-times-circle {
                color: var(--danger);
            }

/* Itinerary Timeline */
.itinerary-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--accent), var(--primary), var(--accent));
        border-radius: 3px;
    }

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-marker {
    position: absolute;
    left: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.timeline-content {
    background: var(--light);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.timeline-content .day-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.timeline-activities {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .timeline-activities li {
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #555;
    }

        .timeline-activities li i {
            color: var(--accent);
            font-size: 12px;
        }

/* Booking Form */
.booking-section {
    background: linear-gradient(135deg, white 0%, var(--light) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

    .booking-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    }

.booking-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

.form-floating {
    margin-bottom: 20px;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 15px;
    height: auto;
    transition: var(--transition-smooth);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    }

.form-floating label {
    padding: 12px 15px;
    color: #666;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary);
    font-weight: 600;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.btn-book-now {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

    .btn-book-now::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.6s;
    }

    .btn-book-now:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(30, 60, 114, 0.4);
    }

        .btn-book-now:hover::before {
            left: 100%;
        }

/* Price Card */
.price-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-lg);
}

    .price-card h3 {
        font-size: 24px;
        margin-bottom: 20px;
        color: var(--accent);
    }

.price-amount {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

    .price-amount small {
        font-size: 18px;
        font-weight: 400;
        opacity: 0.8;
    }

.price-period {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

    .price-features li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .price-features li i {
            color: var(--accent);
        }

.btn-price-action {
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition-smooth);
}

    .btn-price-action:hover {
        background: var(--accent-light);
        transform: translateY(-3px);
    }

/* Responsive */
@@media (max-width: 768px) {
    .package-title {
        font-size: 28px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

 
