/* ===== EVENTS & OCCASIONS PAGE STYLES ===== */

/* Hero Section */
.events-hero {
    height: 80vh;
    min-height: 500px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.events-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.events-hero .hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.events-hero .hero-content p {
    font-size: 22px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Events Sections */
.events-section {
    padding: 80px 0;
    background: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Help Card (same as airport/wedding) */
.help-card {
    background: linear-gradient(135deg, #ffcc00 0%, #f5b800 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.3);
}

.help-card .help-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.help-card .help-icon i {
    font-size: 28px;
    color: #000;
}

.help-card h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.help-card p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.help-card .phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    margin-top: 15px;
}

.help-card .phone-number i {
    font-size: 28px;
}

/* Events Content */
.events-content h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.events-content h2 span {
    color: #ffcc00;
    display: block;
    font-size: 32px;
    margin-top: 5px;
}

.events-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-book-now {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-book-now:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

/* Event Features */
.event-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.event-feature {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.event-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.1);
    border: 1px solid #ffcc00;
}

.event-feature i {
    font-size: 35px;
    color: #ffcc00;
    margin-bottom: 15px;
}

.event-feature h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.event-feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Bullet List */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.bullet-list li i {
    color: #ffcc00;
    font-size: 20px;
    width: 24px;
    margin-top: 2px;
}

.bullet-list li strong {
    color: #333;
}

/* Booking Form Section */
.booking-section-airport {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.booking-wrapper-airport {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.booking-header-airport {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header-airport h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.booking-header-airport p {
    color: #666;
    font-size: 18px;
}

.booking-form-airport {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-airport {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group-airport {
    display: flex;
    flex-direction: column;
}

.form-group-airport label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group-airport input,
.form-group-airport select,
.form-group-airport textarea {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group-airport input:focus,
.form-group-airport select:focus,
.form-group-airport textarea:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 0 3px rgba(255,204,0,0.1);
}

.booking-submit-airport {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.booking-submit-airport:hover {
    background: #e6b800;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255,204,0,0.3);
}



/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .event-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .events-hero .hero-content h1 {
        font-size: 42px;
    }
    
    .events-hero .hero-content p {
        font-size: 18px;
    }
    
    .events-content h2 {
        font-size: 32px;
    }
    
    .events-content h2 span {
        font-size: 24px;
    }
    
    .event-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .events-hero .hero-content h1 {
        font-size: 32px;
    }
    
    .help-card .phone-number {
        font-size: 20px;
    }
    
    .btn-book-now {
        width: 100%;
        text-align: center;
    }
}