
/* Resorts Hero Section */
.resorts-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.resorts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    }
    100% {
        background: linear-gradient(225deg, rgba(212, 175, 55, 0.25) 0%, rgba(255, 255, 255, 0.1) 70%);
    }
}

.hero-title {
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-desc {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Resorts Grid Section - NEW DESIGN */
.resorts-grid-section {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.resorts-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Floating Particles */
@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(15px) rotate(240deg) scale(0.9);
    }
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--gold-color) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.1;
    animation: floatParticle 15s ease-in-out infinite;
    z-index: -1;
}

.particle:nth-child(1) { top: 10%; right: 5%; width: 150px; height: 150px; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 10%; width: 100px; height: 100px; animation-delay: -5s; }
.particle:nth-child(3) { bottom: 20%; right: 20%; width: 120px; height: 120px; animation-delay: -10s; }

/* New Card Design */
.resort-card-new {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 30px;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 100%;
}

.resort-card-new:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(212, 175, 55, 0.15),
        0 15px 35px rgba(139, 69, 19, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.resort-card-new:hover .card-glow {
    opacity: 1;
}

/* Card Header */
.card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.resort-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.95) contrast(1.05);
}

.resort-card-new:hover .resort-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05) contrast(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.resort-card-new:hover .image-overlay {
    opacity: 0.9;
}

/* Special Offer Badge */
.special-offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF2E00 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    }
}

.offer-icon {
    font-size: 0.9rem;
    animation: fireEffect 1.5s ease-in-out infinite;
}

@keyframes fireEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Price Tag */
.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 12px;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-color);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resort-card-new:hover .price-tag {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.price-label {
    display: block;
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 2px;
}

.price-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold-dark);
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

/* Card Body */
.card-body {
    padding: 20px;
    position: relative;
    z-index: 2;
    background: white;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

/* Location Info */
.location-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.resort-card-new:hover .location-info {
    color: var(--gold-dark);
}

.location-info i {
    color: var(--gold-color);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.resort-card-new:hover .location-info i {
    transform: scale(1.2);
}

/* Resort Name */
.resort-name {
    font-weight: 900;
    color: #222;
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    height: 40px;
    overflow: hidden;
}

.resort-card-new:hover .resort-name {
    color: var(--gold-dark);
}

.resort-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to left, var(--gold-color), transparent);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.resort-card-new:hover .resort-name::after {
    width: 100%;
}

/* Description */
.resort-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
    height: 50px;
    overflow: hidden;
    transition: color 0.3s ease;
    flex: 0 0 auto;
}

.resort-card-new:hover .resort-description {
    color: #555;
}

/* Compact Features Tags */
.features-tags-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
    flex: 0 0 auto;
}

.feature-tag-compact {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #555;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.feature-tag-compact:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-tag-compact i {
    color: var(--gold-color);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.feature-tag-compact:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Compact Stats */
.stats-compact {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    padding: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(139, 69, 19, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    flex: 0 0 auto;
}

.stat-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.stat-icon-compact {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    color: var(--gold-color);
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.resort-card-new:hover .stat-icon-compact {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(212, 175, 55, 0.2);
}

.stat-content-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number-compact {
    font-weight: 700;
    color: #222;
    font-size: 0.8rem;
    white-space: nowrap;
}

.stat-label-compact {
    font-size: 0.7rem;
    color: #666;
    white-space: nowrap;
}

/* Compact Action Buttons */
.action-buttons-compact {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.btn-primary-compact {
    flex: 1;
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-compact::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: right 0.6s ease;
    z-index: -1;
}

.btn-primary-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary-compact:hover::before {
    right: 100%;
}

.secondary-actions-compact {
    display: flex;
    gap: 6px;
}

.btn-icon-compact {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.btn-icon-compact::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: right 0.6s ease;
}

.btn-icon-compact:nth-child(1) {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.btn-icon-compact:nth-child(2) {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.btn-icon-compact:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-icon-compact:hover::before {
    right: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .resort-grid {
        gap: 20px;
    }
    
    .resort-card-new {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .card-header {
        height: 180px;
    }
    
    .card-body {
        height: calc(100% - 180px);
    }
    
    .resort-name {
        font-size: 1.2rem;
        height: 35px;
    }
    
    .resort-description {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .stats-compact {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .stat-compact {
        width: 100%;
        justify-content: center;
    }
    
    .action-buttons-compact {
        flex-direction: column;
    }
    
    .btn-primary-compact {
        order: 1;
    }
    
    .secondary-actions-compact {
        order: 2;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .resorts-grid-section {
        padding: 60px 0 80px;
    }
    
    .card-header {
        height: 160px;
    }
    
    .card-body {
        height: calc(100% - 160px);
        padding: 15px;
    }
    
    .resort-name {
        font-size: 1.1rem;
        height: 30px;
    }
    
    .resort-description {
        font-size: 0.8rem;
        height: 40px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

.resort-card-new.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Equal Height Cards */
.resort-grid > [class*='col-'] {
    display: flex;
}

.resort-card-new {
    flex: 1;
}