/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Pattern-inspired background elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: repeating-linear-gradient(
        45deg,
        rgba(31, 52, 127, 0.05),
        rgba(31, 52, 127, 0.05) 10px,
        rgba(31, 52, 127, 0.08) 10px,
        rgba(31, 52, 127, 0.08) 20px
    );
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(31, 52, 127, 0.05),
        rgba(31, 52, 127, 0.05) 10px,
        rgba(31, 52, 127, 0.08) 10px,
        rgba(31, 52, 127, 0.08) 20px
    );
    z-index: 0;
}

/* Decorative elements */
.safari-pattern {
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: repeating-linear-gradient(
        90deg,
        #1f347f,
        #1f347f 15px,
        #fff 15px,
        #fff 30px
    );
    opacity: 0.7;
    transition: transform 0.5s ease;
}

/* Accent stripe */
.accent-stripe {
    position: absolute;
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, #000 33%, #fff 33%, #fff 66%, #cc0000 66%);
    bottom: 20px;
    right: 20px;
    transition: transform 0.5s ease;
}

/* Hero content enhancements */
.hero-content {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-image {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content h1 {
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #1f347f;
    border-radius: 2px;
}

/* Feature cards hover effects */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(31, 52, 127, 0.15);
}

.feature-card .icon-circle {
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-circle {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .hero-buttons .btn {
        display: block;
        margin-bottom: 15px;
        margin-right: 0 !important;
        text-align: center;
    }
}

/* Animation for the ticket badge */
@keyframes float {
    0% { transform: rotate(5deg) translateY(0px); }
    50% { transform: rotate(7deg) translateY(-5px); }
    100% { transform: rotate(5deg) translateY(0px); }
}

.ticket-badge {
    animation: float 3s ease-in-out infinite;
}

/* Additional decorative elements */
.pattern-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(204, 0, 0, 0.05),
        rgba(204, 0, 0, 0.05) 5px,
        rgba(31, 52, 127, 0.05) 5px,
        rgba(31, 52, 127, 0.05) 10px
    );
    border-radius: 50%;
    z-index: -1;
    right: 10%;
    bottom: 10%;
}
