/* Video Banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #fff;
}

.video-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.video-overlay p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.btn-banner {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.btn-banner:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Video Banner */
@media (max-width: 992px) {
    .video-overlay h1 {
        font-size: 2.8rem;
    }
    
    .video-overlay p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .video-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-overlay h1 {
        font-size: 2.2rem;
    }
    
    .video-overlay p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .btn-banner {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .video-overlay h1 {
        font-size: 1.8rem;
    }
    
    .video-overlay p {
        font-size: 1rem;
    }
}

/* Honeymoon Packages Section */
.honeymoon-packages {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    margin-bottom:40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #7f8c8d;
}

.package-meta span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.package-meta i {
    margin-right: 5px;
    color: #e74c3c;
}

.package-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-highlights {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.package-highlights h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.package-highlights h4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: #e74c3c;
}

.package-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-highlights li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.package-highlights li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #27ae60;
    position: absolute;
    left: 0;
    top: 10px;
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.package-price span:first-child {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.package-price h4 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin: 5px 0;
}

.package-price h4 span {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 400;
}

.btn-book {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:not(:last-child) {
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px 25px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq-question i {
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Booking Form Section */
.booking-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.booking-form {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.form-group.full-width {
    flex: 0 0 100%;
    max-width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.privacy-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 15px;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .package-card {
        flex-direction: column;
    }
    
    .package-image {
        width: 100%;
        height: 250px;
    }
    
    .package-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .package-price {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-book {
        margin-top: 15px;
        width: 100%;
    }
    
    .booking-form {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .package-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .form-group {
        min-width: 100%;
    }
}
