* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    order: -1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.logo-image {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: transform 0.6s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo-image:hover {
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.logo-image.rotating {
    transform: rotate(360deg);
}

.logo-container h1 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=1200') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
}

.cta-btn {
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #ff5252;
}

/* Sections */
section {
    padding: 80px 0;
}

.resorts-section, .bookings-section {
    background: #f8f9fa;
}

.resorts-section h2, .bookings-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
}

/* Resort Grid */
.resorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.resort-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.resort-card:hover {
    transform: translateY(-5px);
}

.resort-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}

.resort-info {
    padding: 1.5rem;
}

.resort-info h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 0.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a574 0%, #c19a6b 25%, #b8956a 50%, #a68b5b 75%, #8b7355 100%);
    background-size: 120% 120%;
    animation: woodGrain 3s ease-in-out infinite;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Arial Black', Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: #ffffff;
    border: 1px solid #8b7355;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.2), 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    letter-spacing: 0.5px;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
}

@keyframes woodGrain {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.resort-location {
    color: #666;
    margin-bottom: 1rem;
}

.view-map-btn {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.view-map-btn:hover {
    color: #0056b3;
    text-decoration: underline;
}

.resort-price {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.resort-description {
    margin-bottom: 1.5rem;
    color: #666;
}

.book-btn {
    width: 100%;
    background: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #218838;
}

/* Bookings Grid */
.bookings-grid {
    display: grid;
    gap: 1rem;
}

.booking-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
}

.booking-info h4 {
    margin-bottom: 0.5rem;
}

.booking-details {
    color: #666;
    font-size: 0.9rem;
}

.booking-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.price-summary {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    z-index: 3000;
    animation: slideIn 0.3s ease;
}

.notification.success {
    background: #28a745;
}

.notification.error {
    background: #dc3545;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .resorts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }
    
    .resort-card {
        overflow: hidden;
    }
    
    .resort-gallery {
        width: 100%;
        overflow: hidden;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 1.8rem;
        font-weight: 800;
    }
    
    .logo-image {
        height: 55px;
        width: 55px;
    }
    
    .logo-container h1 {
        font-size: 1.3rem;
        font-weight: 700;
    }
    
    nav ul {
        gap: 0.8rem;
        margin: 0;
    }
    
    nav ul li a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .hero {
        margin-top: 90px;
        min-height: 85vh;
        padding: 40px 20px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .resort-card {
        margin: 0 5px;
    }
    
    .resort-image {
        height: 220px;
        width: 100%;
        object-fit: cover;
        display: block;
        max-width: 100%;
        min-width: 100%;
        background-color: #f0f0f0;
        border-radius: 0;
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 45px;
        width: 45px;
    }
    
    .logo-container h1 {
        font-size: 1.1rem;
    }
    
    nav ul li a {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    
    .hero {
        margin-top: 80px;
        padding: 20px 15px;
        min-height: 60vh;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 1rem;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .resort-info {
        padding: 1rem;
    }
    
    .resort-image {
        height: 200px;
        width: 100%;
        object-fit: cover;
        display: block;
        max-width: 100%;
        background: #f0f0f0;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.payment-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    margin: auto;
}

.booking-summary {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: left;
}

.qr-code {
    width: 250px;
    height: 250px;
    margin: 1rem 0;
    border: 2px solid #27ae60;
    border-radius: 8px;
    background: #f8f9fa;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.qr-code:not([src]) {
    opacity: 0.5;
}

.payment-instructions {
    text-align: left;
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.payment-proof {
    margin: 1.5rem 0;
}

.payment-proof input {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.confirm-payment-btn {
    background: #27ae60;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.5rem;
}

.confirm-payment-btn:hover {
    background: #219a52;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.cancel-payment-btn {
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cancel-payment-btn:hover {
    background: #c82333;
}

.close-payment-btn {
    background: #6c757d;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.close-payment-btn:hover {
    background: #5a6268;
}

/* Payment Method Tabs */
.payment-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.payment-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.payment-tab.active {
    background: #667eea;
    color: white;
    border-bottom: 3px solid #667eea;
}

.payment-tab:hover {
    background: #e9ecef;
}

.payment-tab.active:hover {
    background: #5a6fd8;
}

.payment-method {
    display: none;
}

.payment-method.active {
    display: block;
}

.razorpay-btn {
    background: #667eea;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.razorpay-btn:hover {
    background: #5a6fd8;
}

.card-section {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.card-pricing {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    text-align: left;
}

.card-pricing p {
    margin: 8px 0;
    font-size: 0.95rem;
}

/* Card Confirmation Styles */
.card-confirmation {
    text-align: center;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.success-message code {
    background: rgba(0,0,0,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.confirmation-step {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.confirmation-step h4 {
    margin-bottom: 10px;
    color: #333;
}

.card-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 15px 0;
}

.card-prefix {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
    font-family: monospace;
}

#cardLastFour {
    width: 80px;
    padding: 10px;
    font-size: 1.2rem;
    text-align: center;
    border: 2px solid #007bff;
    border-radius: 6px;
    font-family: monospace;
    font-weight: bold;
}

#cardLastFour:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

@media (max-width: 768px) {
    .payment-modal {
        padding: 10px 0;
        align-items: flex-start;
    }
    
    .payment-content {
        width: 95%;
        padding: 1rem;
        margin: 10px auto;
    }
    
    .qr-code {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .payment-modal {
        padding: 5px 0;
    }
    
    .payment-content {
        width: 98%;
        padding: 0.8rem;
        margin: 5px auto;
    }
    
    .qr-code {
        width: 180px;
        height: 180px;
    }
    
    .payment-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Gallery Styles */
.resort-gallery {
    position: relative;
    overflow: hidden;
}

.view-more-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.view-more-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.05);
}

.resort-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #666;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-container {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffa500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.star:hover {
    color: #ff8c00;
}

.review-text {
    font-size: 0.7rem;
    color: #888;
    margin-left: 5px;
}

.cancellation-policy {
    text-align: right;
}

.policy-text {
    font-size: 0.7rem;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.policy-text:hover {
    text-decoration: underline;
    color: #0056b3;
}

.features-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #27ae60;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.locations-section {
    padding: 60px 0;
    background: white;
}

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

.location {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
}

.location h4 {
    color: #27ae60;
    margin-bottom: 10px;
}

.location p {
    color: #666;
    font-size: 0.9rem;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}



.resort-image {
    cursor: pointer;
    transition: transform 0.3s;
}

.resort-image:hover {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.resort-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-prev, .gallery-next {
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: rgba(0,0,0,0.9);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.gallery-content {
    position: relative;
    margin: 2% auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    background: white;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
}

.gallery-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.gallery-close:hover {
    color: #333;
}

.gallery-header h3 {
    margin-bottom: 20px;
    color: #333;
}

.gallery-images {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

#galleryMainImage {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

#galleryPrev, #galleryNext {
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

#galleryPrev:hover, #galleryNext:hover {
    background: rgba(0,0,0,0.9);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.gallery-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.gallery-thumbnail.active {
    opacity: 1;
    border: 2px solid #007bff;
}

.gallery-thumbnail:hover {
    opacity: 1;
}

.video-thumb {
    width: 80px;
    height: 60px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.buffering-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 10;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mobile-pause-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: none;
}

@media (max-width: 768px) {
    .mobile-pause-btn {
        display: block !important;
    }
    
    .video-container {
        position: relative;
    }
}

/* Compact Amenities Styles */
.resort-amenities {
    margin: 12px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.resort-amenities h4 {
    margin: 0 0 6px 0;
    color: #495057;
    font-size: 0.7rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', -apple-system, sans-serif;
    letter-spacing: 0.3px;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.amenity-tag {
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 400;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    border: none;
    cursor: default;
    font-family: 'Inter', -apple-system, sans-serif;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.amenity-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    background: #218838;
}

.amenity-tag:nth-child(even) {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
}

.amenity-tag:nth-child(even):hover {
    background: linear-gradient(135deg, #0056b3 0%, #520dc2 100%);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.amenity-tag:nth-child(3n) {
    background: linear-gradient(135deg, #fd7e14 0%, #e83e8c 100%);
    box-shadow: 0 3px 8px rgba(253, 126, 20, 0.3);
}

.amenity-tag:nth-child(3n):hover {
    background: linear-gradient(135deg, #dc6502 0%, #c2185b 100%);
    box-shadow: 0 6px 15px rgba(253, 126, 20, 0.4);
}

.amenity-tag:nth-child(4n) {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    box-shadow: 0 3px 8px rgba(111, 66, 193, 0.3);
}

.amenity-tag:nth-child(4n):hover {
    background: linear-gradient(135deg, #59359a 0%, #c2185b 100%);
    box-shadow: 0 6px 15px rgba(111, 66, 193, 0.4);
}

@media (max-width: 768px) {
    .resort-amenities {
        margin: 8px 0;
        padding: 6px;
    }
    
    .amenities-list {
        gap: 3px;
    }
    
    .amenity-tag {
        padding: 1px 4px;
        font-size: 0.55rem;
    }
    
    .resort-amenities h4 {
        font-size: 0.65rem;
    }
}

.video-thumb.active {
    opacity: 1;
    border: 2px solid #007bff;
}

.gallery-videos {
    margin-bottom: 20px;
}

.gallery-videos iframe,
.gallery-videos video {
    width: 100%;
    max-width: 400px;
    height: 225px;
    margin: 10px;
    border-radius: 8px;
}

.gallery-description {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .gallery-content {
        width: 95%;
        margin: 1% auto;
        padding: 15px;
        max-height: 95vh;
    }
    
    .gallery-thumbnails {
        justify-content: center;
    }
    
    .gallery-videos iframe,
    .gallery-videos video {
        width: 100%;
        height: 200px;
    }
    
    #galleryMainImage {
        max-height: 250px;
        width: 100%;
        object-fit: contain;
    }
    
    .gallery-images video {
        width: 100% !important;
        height: 250px !important;
        object-fit: contain;
    }
    
    .gallery-images iframe {
        width: 100% !important;
        height: 250px !important;
    }
}
/* Coupon Styles */
.coupon-input {
    display: flex;
    gap: 10px;
}

.coupon-input input {
    flex: 1;
}

.coupon-input button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.coupon-input button:hover {
    background: #0056b3;
}

.coupon-message {
    margin-top: 5px;
    font-size: 0.9em;
}

.coupon-success {
    color: green;
}

.coupon-error {
    color: red;
}