/* Before You Go Section */
.before-you-go-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.before-you-go-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.before-you-go-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.before-you-go-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.before-you-go-section .section-subtitle {
    font-size: 1.2rem;
    opacity: 1;
    margin-bottom: 3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: block;
    cursor: pointer;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.action-card:hover::before {
    left: 100%;
}

.action-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

.action-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.action-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.action-card:hover .card-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    opacity: 1;
}

.card-arrow i {
    color: white;
    font-size: 1rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.action-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.celebration-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.celebration-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.confetti-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.confetti-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff5252, #ff9800);
    transition: left 0.3s ease;
}

.confetti-btn:hover::before {
    left: 0;
}

.confetti-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.confetti-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.confetti-btn span,
.confetti-btn i {
    position: relative;
    z-index: 1;
}

.confetti-btn i {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .before-you-go-section {
        padding: 3rem 0;
    }
    
    .before-you-go-section .section-title {
        font-size: 2rem;
    }
    
    .action-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .action-card {
        padding: 1.25rem;
        padding-right: 3.5rem;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
        min-height: auto;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .card-content {
        flex: 1;
    }
    
    .action-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .action-card p {
        font-size: 0.9rem;
        margin-bottom: 0;
        opacity: 0.8;
    }
    
    .card-arrow {
        bottom: 50%;
        right: 1rem;
        transform: translateY(50%);
        width: 30px;
        height: 30px;
        position: absolute;
    }
    
    .card-arrow i {
        font-size: 0.8rem;
    }
    
    .confetti-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .before-you-go-section .section-title {
        font-size: 1.75rem;
    }
    
    .before-you-go-section .section-subtitle {
        font-size: 1rem;
    }
    
    .action-card {
        padding: 1rem;
        padding-right: 3rem;
        border-radius: 15px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .action-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .action-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .card-arrow {
        width: 28px;
        height: 28px;
        right: 0.75rem;
    }
    
    .card-arrow i {
        font-size: 0.75rem;
    }
    
    .confetti-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}
