/* Golden VIP Tour - Turkey-Wide Tours Styling */

/* Hero Section Enhancements */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 2px 5px rgba(0,0,0,0.3);
}

.hero-description strong {
    color: #FFD700;
    font-weight: 600;
}

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

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-buttons .btn i {
    margin-right: 8px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    font-weight: 600;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: #FFD700;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-icon {
    font-size: 1.5rem;
    color: #FFD700;
    display: block;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.trust-badge i {
    color: #FFD700;
}

/* Categories Showcase Section */
.categories-showcase {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.categories-showcase .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.categories-showcase .section-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

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

.category-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tour-count {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

/* Tour Categories Filter */
.tour-categories-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.filter-btn:hover {
    border-color: #FFD700;
    background: #FFF9E6;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: #FFD700;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Enhanced Tour Cards */
.tour-card {
    position: relative;
}

.tour-card[data-category] {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    color: #1a1a1a;
    padding: 7px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.tour-card:hover .tour-category-tag {
    background: rgba(255, 215, 0, 0.95);
    border-color: #ffd700;
    transform: scale(1.05);
}

.tour-tagline {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-style: italic;
    min-height: 45px;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tour-highlights span {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fff9e6, #fffbf0);
    border: 1px solid #ffe9a8;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tour-highlights span:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
}

/* Tours CTA Section */
.tours-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FFF9E6, #FFE5B4);
    border-radius: 20px;
}

.tours-cta p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

/* About Section Enhancements */
.about-tagline {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
}

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

.about-features .feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-features .feature:hover {
    background: #FFF9E6;
    transform: translateX(10px);
}

.about-features .feature i {
    font-size: 2rem;
    color: #FFD700;
    min-width: 40px;
}

.about-features .feature h4 {
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.about-features .feature p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 25px;
        padding: 20px;
    }
    
    .stat {
        min-width: 90px;
    }
    
    .stat-icon {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-trust {
        gap: 15px;
    }
    
    .trust-badge {
        font-size: 0.8rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-categories-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tours-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 15px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-trust {
        flex-direction: column;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
    
    .categories-showcase .section-header h2 {
        font-size: 1.8rem;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .tour-highlights {
        font-size: 0.8rem;
    }
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60% {
        content: '...';
    }
    80%, 100% {
        content: '';
    }
}

/* Smooth Scroll Offset */
html {
    scroll-padding-top: 100px;
}

/* Accessibility */
.filter-btn:focus,
.category-card:focus {
    outline: 3px solid #FFD700;
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .hero-stats,
    .tour-categories-filter,
    .tours-cta,
    .filter-btn,
    .category-card:hover {
        display: none;
    }
}
