/* ==============================
   OCCASION SECTION
================================ */

.occasion-sec {
    background-color: #f5f6f7;
}

/* Header */
.occasion-sec .occasion-header {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.occasion-sec .occasion-header h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 15px;
}

.occasion-sec .occasion-header p {
    color: #6c757d;
    font-size: 15px;
    font-weight: 400;
}

/* Cards */
.occasion-sec .occasion-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 259px;
    margin-bottom: 30px;
}

.occasion-sec .occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Icon */
.occasion-sec .icon-box {
    width: 55px;
    height: 55px;
    background-color: var(--btn-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.occasion-sec .icon-box i {
    color: #ffffff;
    font-size: 20px;
}

/* Text */
.occasion-sec .occasion-card h5 {
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 17px;
    color: var(--btn-color);
}

.occasion-sec .occasion-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}


/* ===============================
   AMENITIES SECTION
================================ */

.amenities-sec {
    background-color: #f4f5f7;
    padding-top: 30px;
}

/* Header */
.amenities-sec .amenities-header {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.amenities-sec .amenities-header h2 {
    font-size: 34px;
    font-weight: 500;
    color: #1e1e1e;
    margin-bottom: 15px;
}

.amenities-sec .amenities-header p {
    color: #6c757d;
    font-size: 15px;
    font-weight: 400;
}

/* Card Layout */
.amenities-sec .amenity-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 128px;
    margin-bottom: 30px;
}

.amenities-sec .amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Icon */
.amenities-sec .amenity-icon {
    width: 50px;
    height: 50px;
    background-color: var(--btn-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenities-sec .amenity-icon i {
    color: #ffffff;
    font-size: 18px;
}

/* Content */
.amenities-sec .amenity-content h5 {
    font-weight: 500;
    margin-bottom: 8px;
    color: #1e1e1e;
    font-size: 17px;
}

.amenities-sec .amenity-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* ===============================
   MAGIC GALLERY SECTION
================================ */

.magic-sec {
    background-color: var(--btn-color);
}

/* Header */
.magic-sec .magic-header {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.magic-sec .magic-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
}

.magic-sec .magic-header p {
    color: #d6e6f5;
    font-size: 15px;
    font-weight: 400;
}

/* Image Box */
.magic-sec .magic-img-box {
    overflow: hidden;
    margin-bottom: 25px;
}

.magic-sec .magic-img-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Zoom */
.magic-sec .magic-img-box:hover img {
    transform: scale(1.08);
}
/* ===============================
   EVENT CTA SECTION
================================ */

.event-cta-sec {
    background-color: #f2f3f5;
}

/* CTA Box */
.event-cta-sec .event-cta-box {
    background-color: #1769a6;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    padding: 57px 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Title */
.event-cta-sec .event-cta-content h2 {
    font-size: 34px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Description */
.event-cta-sec .event-cta-content p {
    color: #d7e6f5;
    font-size: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Buttons */
.event-cta-sec .event-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.event-cta-sec .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-cta-sec .primary-btn {
    background-color: #ffffff;
    color: #1769a6;
}

.event-cta-sec .primary-btn:hover {
    background-color: #e6eef6;
}

.event-cta-sec .secondary-btn {
    background-color: #f1f3f5;
    color: #333;
}

.event-cta-sec .secondary-btn:hover {
    background-color: #e2e6ea;
}

/* Divider */
.event-cta-sec .event-cta-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    width: 100%;
    margin-bottom: 25px;
}

/* Contact Info */
.event-cta-sec .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
}

.event-cta-sec .contact-item i {
    font-size: 14px;
}


/* ===============================
   CONTACT SECTION
================================ */

.contact-sec {
    background-color: #f3f4f6;
    padding-top: 30px;
}

/* Cards */
.contact-sec .contact-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: auto;
}

.contact-sec .contact-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Form */
.contact-sec .form-group {
    margin-bottom: 20px;
}

.contact-sec .form-group label {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

.contact-sec .form-group input,
.contact-sec .form-group textarea {
    width: 100%;
    border: none;
    background-color: #f3f4f6;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    outline: none;
}

.contact-sec .form-group input:focus,
.contact-sec .form-group textarea:focus {
    background-color: #e9ecef;
}

/* Submit Button */
.contact-sec .submit-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: var(--btn-color);
    transition: 0.3s ease;
}

.contact-sec .submit-btn:hover {
    opacity: 0.9;
}

/* Contact Info Side */
.contact-sec .contact-info-card .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-sec .info-icon {
    width: 45px;
    height: 45px;
    background: #016db536;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-sec .info-icon i {
    color: var(--btn-color);
    font-size: 16px;
}

.contact-sec .info-item h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-sec .info-item p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.contact-sec .info-item span {
    font-size: 12px;
    color: #888;
}
