.short-stay-why {
    background: #ffffff;
}

.short-stay-why h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
}

.short-stay-why .subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 50px;
}

.short-stay-why .card-row {
    row-gap: 30px;
}

.short-stay-why .why-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.short-stay-why .why-card:hover {
    transform: translateY(-5px);
}

.short-stay-why .icon {
    width: 45px;
    height: 45px;
    background: #e6fdff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.short-stay-why .icon i {
    color: var(--btn-color);
    font-size: 18px;
}

.short-stay-why h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--black-color);
}

.short-stay-why p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/* ===========================----------------------============================== */

.beautiful-venue {
    background: #fff;
}

.beautiful-venue h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
}

.beautiful-venue .subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 50px;
}

.beautiful-venue .venue-grid {
    align-items: stretch;
}

.beautiful-venue .inner-grid {
    row-gap: 20px;
}

.beautiful-venue .venue-item {
    border-radius: 14px;
    overflow: hidden;
    height: 200px;
}

.beautiful-venue .venue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.beautiful-venue .venue-item.large {
    height: 100%;
    min-height: 420px;
}

/* ======-------------------------------------============================================== */
.happy-couples {
    background: #ffffff;
}

.happy-couples h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
}

.happy-couples .subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 50px;
}

.happy-couples .testimonial-row {
    row-gap: 30px;
}

.happy-couples .testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.happy-couples .profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.happy-couples .profile img {
    width: 48px !important;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.happy-couples .profile h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.happy-couples .profile span {
    font-size: 12px;
    color: #888;
}

.happy-couples .rating {
    margin-bottom: 15px;
}

.happy-couples .rating i {
    color: #ffc107;
    font-size: 14px;
    margin-right: 2px;
}

.happy-couples .review {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ======-------------------------------------============================================== */

.memory-cta {padding: 0px 0px;}

.memory-cta .cta-box {
    position: relative;
    background: var(--btn-color);
    border-radius: 14px;
    padding: 50px 30px;
    text-align: center;
    overflow: hidden;
}

.memory-cta .cta-box::before,
.memory-cta .cta-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.memory-cta .cta-box::before {
    top: -60px;
    left: -60px;
}

.memory-cta .cta-box::after {
    bottom: -60px;
    right: -60px;
}

.memory-cta h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.memory-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==========================----------------------=========================== */

.planning-section {
    background: #fff;
}

.planning-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.planning-section .subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 60px;
}

.planning-row {
    align-items: flex-start;
}

/* Form */
.planning-form {
    background: #fff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.planning-form label {
    font-size: 13px;
    color: #555;
    display: block;
    margin-bottom: 6px;
}

.planning-form input,
.planning-form textarea {
    width: 100%;
    border: none;
    background: #f3f3f5;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 18px;
}

.planning-form textarea {
    min-height: 120px;
    resize: none;
}

.planning-form button {
    width: 100%;
    background: var(--btn-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Contact Info */
.contact-info {
    padding-left: 40px;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e6f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.info-item .icon i {
    color: var(--btn-color);
    font-size: 15px;
}

.info-item .text strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.info-item .text p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

