/* Offers Page Specific Styles */

/* Hero styles moved to hero.css */

.offer-details .btn {
    width: 100%;
    text-align: center;
}

/* Recent Offers Section */
.recent-offers {
    padding: 80px 0;
    background-color: #fff;
}

/* Section header styles moved to css/shared/common.css */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    cursor: pointer;
}

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

.offer-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.offer-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 7px 14px; /* Reduced for better proportion */
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    border-radius: 5px;
    text-align: center;
    min-width: 80px; /* Reduced minimum width */
    white-space: nowrap; /* Prevent text wrapping */
}

.offer-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    height: 300px;
}

.offer-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}

.offer-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    gap: 10px;
    height: 40px;
    overflow: hidden;
    justify-content: center;
}

.offer-info span {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.offer-info span i {
    margin-left: 5px;
    color: var(--primary-color);
}

.offer-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    height: 65px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: center;
}

.offer-price-tag {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    height: 30px;
}

.text {
    font-size: 14px;
    color: #999;
}

.price {
    font-size: 24px;
}

.currency {
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    font-weight: 500;
    order: -1;
}

.couple-note {
    font-size: 12px;
    color: #666;
    background: rgba(212, 175, 55, 0.1);
    padding: 3px 7px; /* Reduced for better proportion */
    border-radius: 10px;
    font-weight: 500;
    white-space: nowrap; /* Prevent text wrapping */
}

.offer-btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.offer-btn:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.3);
}

.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
    justify-content: center;
}

.offer-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #555;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.offer-features span i {
    color: var(--secondary-color);
    font-size: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.95), rgba(7, 19, 48, 0.9)), url('../../images/pages/about/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
    animation: shimmer 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-btn-primary, .cta-btn-secondary {
    padding: 14px 28px; /* Reduced for better proportion */
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 150px; /* Reduced minimum width */
    max-width: 280px; /* Prevent buttons from being too wide */
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap; /* Prevent text wrapping */
}

.cta-btn-primary::before, .cta-btn-secondary::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.5s;
}

.cta-btn-primary:hover::before, .cta-btn-secondary:hover::before {
    left: 100%;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f1c40f 100%);
    color: var(--dark-color);
    border-color: var(--secondary-color);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, #f1c40f 0%, var(--secondary-color) 100%);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
}

.cta-btn-secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.cta-btn-secondary:hover {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero responsive styles moved to hero.css */
    
    /* Section header responsive styles moved to css/shared/common.css */
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-categories {
        gap: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .destination-categories::-webkit-scrollbar {
        display: none;
    }
    
    .destination-categories::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 100%;
        background: linear-gradient(to right, transparent, #f8f9fa);
        pointer-events: none;
        z-index: 1;
    }
    
    .destination-tab {
        padding: 12px 20px;
        font-size: 14px;
        min-width: max-content;
        white-space: nowrap;
        flex-shrink: 0;
    }

    

    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-btn-primary, .cta-btn-secondary {
        padding: 12px 20px; /* Reduced for better proportion */
        font-size: 14px;
        min-width: 120px; /* Reduced minimum width */
        max-width: 220px; /* Prevent buttons from being too wide */
        white-space: nowrap; /* Prevent text wrapping */
    }
}

@media (max-width: 576px) {
    /* Hero mobile responsive styles moved to hero.css */
    
    /* Section header responsive styles moved to css/shared/common.css */
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-categories {
        gap: 10px;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .destination-categories::after {
        width: 25px;
        background: linear-gradient(to right, transparent, #f8f9fa);
    }
    
    .destination-tab {
        padding: 10px 16px;
        font-size: 13px;
        min-width: max-content;
        white-space: nowrap;
        flex-shrink: 0;
    }

    

    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-btn-primary, .cta-btn-secondary {
        padding: 10px 18px; /* Reduced for better proportion */
        min-width: 100px; /* Smaller minimum for very small screens */
        max-width: 180px; /* Prevent buttons from being too wide */
        font-size: 13px;
        white-space: nowrap; /* Prevent text wrapping */
    }
}

/* Detailed Offer Pages Styles */
.offer-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.offer-main-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.offer-badge-large {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.offer-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.offer-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #ffd700;
    font-size: 18px;
}

.offer-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--navy-light));
    border-radius: 15px;
    color: white;
}

.price-breakdown .new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.price-breakdown .old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #ccc;
    margin-bottom: 5px;
}

.price-breakdown .per-person {
    font-size: 1rem;
    color: #e9ecef;
}

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

.offer-validity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
}

.offer-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.highlight-item i {
    font-size: 20px;
    color: var(--secondary-color);
    min-width: 20px;
}

.highlight-item span {
    font-weight: 500;
    color: var(--dark-color);
}

/* Itinerary Section */
.itinerary-section {
    padding: 80px 0;
    background: white;
}

.itinerary-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.itinerary-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.day-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.day-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #f39c12);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
    position: relative;
}

.day-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f1f1;
    margin-top: 10px;
}

.day-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.day-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Includes/Excludes Section */
.includes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.includes-card,
.excludes-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.includes-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #28a745;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.excludes-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dc3545;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.includes-card ul,
.excludes-card ul {
    list-style: none;
    padding: 0;
}

.includes-card li,
.excludes-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.includes-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.excludes-card li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Special Features Section */
.special-features-section {
    padding: 80px 0;
    background: white;
}

.special-features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f1f1;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Country Information Section */
.country-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.country-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

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

.country-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 50%, 
        rgba(11, 37, 69, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f39c12);
    transform: scale(1.1);
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.info-card p {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.info-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

/* Responsive design for country info section */
@media (max-width: 768px) {
    .country-info-section h2 {
        font-size: 2rem;
    }
    
    .country-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 1rem;
    }
    
    .info-note {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .country-info-section {
        padding: 60px 0;
    }
    
    .country-info-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .country-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 18px;
    }
}

/* Enhanced Booking Section */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--navy-light));
    color: white;
}

.booking-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--dark-color);
}

.booking-card h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.booking-card p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.booking-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--secondary-color), #f39c12);
    color: var(--dark-color);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #f39c12, var(--secondary-color));
}

.booking-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Responsive design for detailed offer pages */
@media (max-width: 768px) {
    .offer-main-card {
        padding: 25px;
    }
    
    .offer-header h2 {
        font-size: 1.8rem;
    }
    
    .price-breakdown .new-price {
        font-size: 2.2rem;
    }
    
    .offer-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .itinerary-timeline::before {
        left: 30px;
    }
    
    .day-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-right: 20px;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        padding: 25px;
        margin: 0 20px;
    }
}

@media (max-width: 576px) {
    .offer-badge-large {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .offer-pricing {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .day-content {
        margin-top: 5px;
        padding: 20px;
    }
    
    .itinerary-section h2,
    .special-features-section h2 {
        font-size: 2rem;
    }
    
    .booking-card h2 {
        font-size: 1.5rem;
    }
}

/* Destination Offers Section */
.destination-offers {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Destination tabs styling */
.destination-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.destination-tab {
    padding: 10px 18px; /* Reduced padding for better proportion */
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
    text-align: center;
    min-width: auto; /* Allow tabs to size to content */
    font-size: 14px;
    white-space: nowrap; /* Prevent text wrapping */
}

.destination-tab:hover,
.destination-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 37, 69, 0.2);
}

/* Offer count badge */
.offer-count {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(11, 37, 69, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

/* Animation for filtering */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}









 