/* Flash Effects & Corporate Styles - Enhanced Version */

/* Hero Section Enhancement */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95), rgba(192, 57, 43, 0.95)),
                url('../images/hero-bg.jpg') center/cover;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.hero-slide {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.hero-slide h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-slide h1 .highlight {
    color: #f39c12;
    display: block;
    font-size: 5rem;
}

.hero-slide p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button.primary {
    background: #f39c12;
    color: #fff;
}

.cta-button.primary:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    color: #fff;
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.stat-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

/* Flash Section - FIXED */
.flash-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.flash-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #fff, transparent);
}

.flash-cards-container {
    position: relative;
    z-index: 1;
}

.flash-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Corporate Flash Card - FIXED */
.flash-card.corporate {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.flash-card.corporate:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.flash-card.corporate.featured {
    transform: scale(1.05);
    border: 3px solid #f39c12;
}

.flash-card.corporate.featured:hover {
    transform: scale(1.05) translateY(-10px) !important;
}

.flash-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.flash-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.flash-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flash-card.corporate:hover .flash-card-overlay {
    opacity: 1;
}

.overlay-content h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.overlay-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
}

.badge.best {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

.badge.new {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
}

.badge.popular {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: #fff;
}

.flash-card-content {
    padding: 25px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.rating {
    color: #f39c12;
    font-size: 0.9rem;
}

.flash-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.flash-card-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    gap: 12px;
    color: #c0392b;
}

/* Corporate Categories Section */
.categories-section.corporate {
    padding: 100px 0;
    background: #fff;
}

.categories-section.corporate .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card.corporate {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #ecf0f1;
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-card.corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #e74c3c, #f39c12);
    transition: width 0.4s ease;
}

.category-card.corporate:hover {
    border-color: #e74c3c;
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.15);
}

.category-card.corporate:hover::before {
    width: 100%;
    opacity: 0.1;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.category-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.category-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.category-count {
    display: inline-block;
    background: #ecf0f1;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
}

.category-arrow {
    font-size: 1.2rem;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.category-card.corporate:hover .category-arrow {
    transform: translateX(5px);
}

/* Cities Section */
.cities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.city-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

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

.city-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.city-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.city-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.city-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.city-content span {
    font-size: 1rem;
    opacity: 0.9;
}

.cities-all {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2c3e50;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #34495e;
    transform: translateY(-3px);
}

/* City Directory */
.city-directory {
    margin-top: 40px;
}

.city-directory .city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.city-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.city-item:hover {
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
}

.city-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 10px;
    display: block;
}

.city-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #fff;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 20px;
    border: 2px solid #ecf0f1;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-card p {
    color: #7f8c8d;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-content .cta-button {
    background: #fff;
    color: #e74c3c;
}

.cta-content .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Corporate Footer */
.main-footer.corporate {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    padding: 80px 0 30px;
}

.footer-col.main h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .hero-slide h1 .highlight {
        font-size: 3rem;
    }
    
    .hero-slide p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .flash-card.corporate.featured {
        transform: none;
    }
    
    .flash-card.corporate.featured:hover {
        transform: translateY(-10px) !important;
    }
    
    .category-card.corporate {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 1;
    transform: none;
}

/* Remove fade-in-up animation opacity issues */
.fade-in-up {
    opacity: 1 !important;
    transform: none !important;
}
