/* Offer Detail Page Styles */

/* Offer Hero Section */
.offer-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-hero .hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    margin: 0 10px;
    opacity: 0.7;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f39c12 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer-badge i {
    margin-left: 5px;
}

.offer-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.offer-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.offer-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--secondary-color);
}

.highlight i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.offer-price-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
}

.offer-price-hero .old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
}

.offer-price-hero .current-price {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.offer-price-hero .per-person {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Trip Overview Section */
.trip-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}



/* Quick Booking Card */
.quick-booking {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.booking-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.booking-card h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.booking-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.price-display {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.price-display .old-price {
    display: block;
    font-size: 1.3rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 8px;
    color: #6c757d;
}

.price-display .text {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #a2a4a6;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-display .price {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-display .savings {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 10px;
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.booking-highlights span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #28a745;
    font-weight: 500;
}

.booking-highlights span i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.booking-btn {
    width: 100%;
    background: var(--secondary-color);
    color: white !important;
    padding: 18px 25px;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    min-height: 58px;
    opacity: 1;
    visibility: visible;
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.booking-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
    opacity: 0;
}

.booking-btn:hover::before {
    left: 100%;
}

.booking-btn:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.booking-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.booking-btn:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.booking-btn:focus {
    outline: none;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5), 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.booking-btn span {
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: white !important;
    opacity: 1;
    visibility: visible;
}

.booking-btn i {
    position: relative;
    z-index: 3;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: white !important;
    opacity: 1;
    visibility: visible;
}

.booking-btn:hover i {
    transform: translateX(-3px);
}

.contact-options {
    display: flex;
    gap: 12px;
}

.contact-btn {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.contact-btn:hover::before {
    width: 100%;
}

.contact-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-btn.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.contact-btn.whatsapp:hover::before {
    background: rgba(37, 211, 102, 0.1);
}

.contact-btn i {
    font-size: 1.1rem;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f1f3f4 100%);
}

.photo-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.photo-gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), #f39c12);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    border: 3px solid transparent;
}

.gallery-item.main {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        var(--secondary-color) 0%, 
        transparent 30%, 
        transparent 70%, 
        var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 17px;
}

.gallery-item:hover::before {
    opacity: 0.15;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 17px;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Gallery Row for Mobile */
.gallery-row {
    display: contents; /* For desktop - acts as if the wrapper doesn't exist */
}





/* Inclusions Section */
.inclusions {
    padding: 80px 0;
    background: white;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.included h2,
.excluded h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.included h2 {
    color: #28a745;
}

.excluded h2 {
    color: #dc3545;
}

.included h2 i,
.excluded h2 i {
    font-size: 1.5rem;
}

.included ul,
.excluded ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included li,
.excluded li {
    padding: 12px 0;
    padding-right: 30px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.included li:last-child,
.excluded li:last-child {
    border-bottom: none;
}

.included li i {
    color: #28a745;
    width: 20px;
    text-align: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.excluded li i {
    color: #dc3545;
    width: 20px;
    text-align: center;
    font-size: 1rem;
    flex-shrink: 0;
}



/* Responsive Design */
@media (max-width: 1200px) {
    .quick-booking {
        top: 80px;
    }
    
    .booking-card {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-booking {
        position: static;
        margin-top: 30px;
    }
    
    .booking-card {
        max-width: 500px;
        margin: 0 auto;
        padding: 35px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .gallery-item.main {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .offer-hero h1 {
        font-size: 2.5rem;
    }
    
    .offer-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-item {
        width: 100%;
        height: 200px;
        flex-shrink: 0;
    }
    
    .gallery-item.main {
        height: 240px;
        margin-bottom: 10px;
    }
    
    .gallery-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .booking-card {
        padding: 25px;
    }
    
    .booking-card h3 {
        font-size: 1.4rem;
    }
    
    .price-display .price {
        font-size: 2.4rem;
    }
    
    .booking-btn {
        padding: 16px 20px;
        font-size: 1.2rem;
        min-height: 54px;
    }
    
    .booking-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .offer-hero h1 {
        font-size: 2rem;
    }
    
    .offer-hero p {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .gallery-item {
        width: 100%;
        height: 180px;
        flex-shrink: 0;
    }
    
    .gallery-item.main {
        height: 220px;
        margin-bottom: 8px;
    }
    
    .gallery-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .booking-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .booking-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .price-display {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .price-display .price {
        font-size: 2.2rem;
    }
    
    .price-display .old-price {
        font-size: 1.1rem;
    }
    
    .booking-highlights {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .booking-btn {
        padding: 12px 16px; /* Reduced for better proportion */
        font-size: 1.1rem;
        margin-bottom: 15px;
        min-height: 48px; /* Reduced minimum height */
        gap: 8px;
        white-space: nowrap; /* Prevent text wrapping */
    }
    
    .booking-btn i {
        font-size: 0.95rem;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-btn {
        padding: 10px; /* Reduced for better proportion */
        font-size: 0.85rem;
        white-space: nowrap; /* Prevent text wrapping */
    }
} 