﻿.btn-booknow {
    border: 2px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .btn-booknow i {
        transition: all 0.4s ease;
        color: white;
    }

    /* Hover Effects */
    .btn-booknow:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

        .btn-booknow:hover i {
            color: white;
            transform: translateX(3px);
        }

    /* Optional: Ripple Effect */
    .btn-booknow::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .btn-booknow:hover::after {
        animation: ripple 1s ease-out;
    }

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}



/* Hero Section */
.site-hero {
    height: 45vh;
    background: linear-gradient(135deg, #ed1b24 0%, #ed1b24 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-bottom: 2rem;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.hero-content {
    color: white;
    max-width: 800px;
}

    .hero-content h1 {
        font-size: 4rem;
        font-weight: 800;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }

.subtitle {
    font-size: 1rem;
    font-style: italic;
    position: relative;
    display: inline-block;
}

    .subtitle::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: beige;
    }

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

    .hero-meta span {
        display: flex;
        align-items: center;
        font-size: 1rem;
        margin-bottom:20px;
    }

    .hero-meta i {
        margin-right: 0.5rem;
        color: beige;
    }

/* Section Styling */
.section {
    padding: 2rem 0;
}

.section-title {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--secondary-color);
        border-radius: 2px;
    }

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.content-area {
    padding:0px 50px;
}

.package-header {
    text-align: center;
    margin-bottom: 50px;
}

.package-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

    .package-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--secondary-color);
        border-radius: 2px;
    }

.rating-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.stars {
    color: #f39c12;
    font-size: 1.5rem;
}

.rating-text {
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-card {
    background: white;
    color: black;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .highlight-card::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 ease;
    }

    .highlight-card:hover::before {
        left: 100%;
    }

    .highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        border-top: 3px solid var(--secondary-color);
    }

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Main container */
.d-flex {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 20px auto;
    transition: box-shadow 0.3s ease;
}

    .d-flex:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

/* Image banner */
.image-banner {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

    .image-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .image-banner:hover img {
        transform: scale(1.05);
    }

/* Price banner */
.price-banner {
    background: var(--secondary-color);
    color: white;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    text-align: center;
    transition: background-color 0.3s ease;
}

    .price-banner:hover {
        background: #4f46e5;
    }

/* Price text styling */
.price-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.1;
}

.price-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .d-flex {
        flex-direction: column;
        margin: 15px;
        border-radius: 16px;
    }

    .image-banner {
        min-height: 220px;
        order: 1;
    }

    .price-banner {
        min-width: auto;
        padding: 25px 20px;
        order: 2;
    }

    .price-text {
        font-size: 2.2rem;
    }

    .price-subtext {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .d-flex {
        margin: 10px;
        border-radius: 12px;
    }

    .image-banner {
        min-height: 180px;
    }

    .price-banner {
        padding: 20px 15px;
    }

    .price-text {
        font-size: 1.9rem;
    }

    .price-subtext {
        font-size: 0.8rem;
    }
}

/* Focus states for accessibility */
.image-banner:focus-within,
.price-banner:focus-within {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.section-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .section-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-icon {
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.itinerary-item {
    background: white;
    border-left: 5px solid var(--secondary-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 15px 15px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .itinerary-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, var(--secondary-color), transparent);
        opacity: 0.1;
        transition: left 0.6s ease;
    }

    .itinerary-item:hover::before {
        left: 100%;
    }

    .itinerary-item:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
    }

.day-number {
    font-weight: 900;
    color: #3498db;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.day-activity {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-item {
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-item:hover {
        background: rgba(52, 152, 219, 0.05);
        padding-left: 15px;
        border-radius: 10px;
    }

.feature-icon {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.inclusion-icon {
    color: #27ae60;
}

.exclusion-icon {
    color: #e74c3c;
}

.feature-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
}

.cta-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: inherit;
    padding: 50px;
    background: white;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    color: black;
    margin-bottom: 30px;
}

    .cta-section:hover {
        border-left: 4px solid var(--secondary-color);
    }

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-area {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        height: 400px;
    }

    .package-title {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .content-area {
        padding: 20px;
    }

    .btn-booknow {
        color: white !important;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        height: 350px;
    }

    .package-title {
        font-size: 1.5rem;
    }

    .price-text {
        font-size: 2rem;
    }

    .book-now-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .content-area {
        padding: 15px;
    }
}

.d-flex {
    background-color: var(--secondary-color);
}


