/* Best Deals Page Styles */

.deals-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.deals-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.deals-hero .container {
    position: relative;
    z-index: 2;
}

.deals-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.deals-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.urgency-banner {
    background: rgba(255,193,7,0.9);
    color: #2c3e50;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin: 2rem auto 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.urgency-banner i {
    color: #dc3545;
}

/* Deal Categories */
.deal-categories {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.categories-wrapper {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.category-btn.active,
.category-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
    transform: translateY(-2px);
}

.deal-count {
    background: #6c757d;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.category-btn.active .deal-count,
.category-btn:hover .deal-count {
    background: rgba(255,255,255,0.2);
}

/* Featured Deals */
.featured-deals {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.deal-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.deal-card.featured {
    border: 3px solid #ffc107;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Urgency Indicators */
.urgency-indicators {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spots-left {
    background: rgba(220,53,69,0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: pulse 2s infinite;
}

.discount-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.discount-percent {
    font-size: 1.2rem;
}

.discount-text {
    font-size: 0.7rem;
}

.deal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.05);
}

.deal-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,123,255,0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.deal-content {
    padding: 1rem 1.5rem;
}

.deal-header {
    margin-bottom: 1rem;
}

.deal-name {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.deal-subtitle {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* Deal Pricing */
.deal-pricing {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.1rem;
}

.discounted-price {
    color: #28a745;
    font-size: 3.5rem;
    font-weight: 700;
}

.savings {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 600;
}

.deal-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rating, .duration, .booked-count {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #495057;
}

.rating {
    color: #ffc107;
    font-weight: 600;
}

.deal-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.deal-highlight {
    display: flex;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #ff1010;
    font-weight: 600;
    background: #ffc107af;
    border: #ff1010;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    margin: 1rem;
    text-align: center;
    justify-content: center;
}

.highlight-tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.deal-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 0.5rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    background: #2c3e50;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 40px;
}

.countdown-label {
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 0.2rem;
    display: block;
}

.btn-book-deal {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-book-deal:hover {
    background: linear-gradient(45deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Deal Filters */
.deal-filters {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

.btn-reset {
    padding: 0.5rem 1.5rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: fit-content;
}

.btn-reset:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Why Book With Us */
.why-book {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-book .section-header {
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}
/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Button Styles */
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #c82333, #a71e2a);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom i {
    font-size: 1rem;
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-enquire:hover {
    background: linear-gradient(135deg, #148f76, #0b6f57);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .deals-hero .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .categories-wrapper {
        gap: 0.3rem;
    }

    .category-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .deals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        min-width: auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .deal-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .countdown {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .deals-hero {
        min-height: 60vh;
    }

    .deals-hero .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .urgency-indicators {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .deal-image {
        height: 180px;
    }

    .deal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .countdown {
        gap: 0.3rem;
    }

    .countdown-number {
        min-width: 35px;
        font-size: 1rem;
        padding: 0.4rem;
    }
}

/* Deal Countdown Styles for Deal Details */
.deal-countdown {
    background: linear-gradient(135deg, #dc354677 0%, #c823336c 100%);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: countdownPulse 2s infinite;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.countdown-title {
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-title i {
    margin-right: 8px;
    color: #ffc107;
}

.countdown-timer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.countdown-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
    min-width: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 3px;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-book-deal
{
    background: linear-gradient(135deg, #dc354677 0%, #c823336c 100%);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: countdownPulse 2s infinite;
    position: relative;
    z-index: 10;
}

.deal-type-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    line-height: 1;
}
@keyframes countdownPulse {
    0% {
        box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(220, 53, 69, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    }
}

/* Responsive Countdown */
@media (max-width: 768px) {
    .deal-countdown {
        padding: 15px;
    }

    .countdown-title {
        font-size: 1rem;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-unit {
        padding: 8px;
        min-width: 50px;
    }

    .countdown-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .deal-countdown {
        padding: 12px;
    }

    .countdown-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .countdown-timer {
        gap: 5px;
    }

    .countdown-unit {
        padding: 6px;
        min-width: 40px;
    }

    .countdown-number {
        font-size: 1rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .deal-countdown {
        padding: 10px;
    }

    .countdown-title {
        font-size: 0.8rem;
    }

    .countdown-timer {
        gap: 3px;
    }

    .countdown-unit {
        padding: 4px;
        min-width: 35px;
    }

    .countdown-number {
        font-size: 0.9rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }
}


