/* Modern Hero Section Styles */
/* Incorporating 2024 design trends with glassmorphism, bold typography, and smooth animations */

.modern-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
}

/* Static Background */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../images/pawna-lake-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-slide {
    display: none;
}



/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    z-index: 2;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-decorative-left {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.8;
}

.hero-left-svg {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero-decorative-right {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.8;
}

.hero-right-svg {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}



/* Hero Content */
.hero-content {
    overflow: hidden;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #2c3e50;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff6600;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.hero-subtitle {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    color: #2c3e50;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    background: linear-gradient(135deg, #feca57, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-primary, .cta-secondary {
    padding: 0.9rem 2.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-secondary {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: #2c3e50;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-size: 0.9rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #feca57;
}

/* Search Card */
.search-card {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 800px;

}

.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.search-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    color: #7f8c8d;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
}

.search-tab.active {
    background: rgba(0, 0, 0, 0.1);
    color: #2c3e50;
    border-color: rgba(0, 0, 0, 0.2);
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: #95a5a6;
}

.search-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.slide-indicator.active {
    background: #2c3e50;
}

/* Animations */


/* Duplicate Hero Section Styles */
.duplicate-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.duplicate-hero .hero-bg-slide:nth-child(1) {
    background-image: url('../images/villa-1.jpg');
}

.duplicate-hero .hero-bg-slide:nth-child(2) {
    background-image: url('../images/resort-bg-1.jpg');
}

.duplicate-hero .hero-bg-slide:nth-child(3) {
    background-image: url('../images/group-travel.jpg');
}

.duplicate-hero .hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.7) 0%,
        rgba(118, 75, 162, 0.5) 50%,
        rgba(102, 126, 234, 0.8) 100%
    );
}

.duplicate-hero .hero-title .highlight {
    background: linear-gradient(135deg, #48dbfb, #0abde3, #00d2d3, #01a3a4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.duplicate-hero .cta-primary {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    box-shadow: 0 10px 30px rgba(72, 219, 251, 0.3);
}

.duplicate-hero .cta-primary:hover {
    box-shadow: 0 15px 40px rgba(72, 219, 251, 0.4);
}

.duplicate-hero .stat-number {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.duplicate-hero .feature-icon {
    color: #48dbfb;
}

.duplicate-hero .search-btn {
    background: linear-gradient(135deg, #feca57, #ff6b6b);
}

.duplicate-hero .search-btn:hover {
    box-shadow: 0 10px 25px rgba(254, 202, 87, 0.3);
}

.duplicate-hero .hero-badge {
    background: rgba(72, 219, 251, 0.2);
    border-color: rgba(72, 219, 251, 0.3);
}

.duplicate-hero .search-tab.active {
    background: rgba(72, 219, 251, 0.2);
    border-color: rgba(72, 219, 251, 0.4);
}

/* Gallery Modal Styles */
.gallery-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2rem;
}

.gallery-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10001;
    transition: background 0.3s ease;
}

.gallery-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Modal Styles */
.video-modal-content {
    background: black;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10001;
}

.video-container {
    position: relative;
    width: 80vw;
    height: 45vw;
    max-width: 1200px;
    max-height: 675px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Location text styling - Maharashtra color change */
.location span {
    color: #ff6600;
}

/* Hero title color change */
.hero-title .title-line {
    background: linear-gradient(90deg, #fcaf17, #f37022);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .title-highlight {
    color: #202020;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-decorative-left {
        left: -50px;
    }
    
    .hero-left-svg {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: 60vh;
    }
    
    .hero-container {
        padding: 0.5rem 1rem;
        flex-direction: column;
    }
    
    .hero-decorative-left {
        display: none;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-card {
        margin: 1rem;
        padding: 1rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .search-tab {
        flex: 1;
        min-width: 80px;
    }
    
    .gallery-modal-content {
        padding: 1rem;
        max-width: 95vw;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .video-container {
        width: 90vw;
        height: 50vw;
    }
}