.lcoation-intro.calculatot-intors-secc .location-intro-image > img{
        height: 400px;
}
.lcoation-intro.calculatot-intors-secc .location-intro-image{
    padding:0;
}

.wedding-cost-calc-section{
    padding:5rem 0;
}

.wedding-cost-calc-section hr {
    margin: 2rem 0;
}

.cost-block-title {
    color: var(--secondary-color);
    font-size: 26px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.cost-block-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 26px;
    background: var(--primary-color);
    border-radius: 3px;
}

.cost-block-text {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}

.cost-block-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 12px;
}

.wedding-cost-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
}

.wedding-cost-table thead tr {
    background: var(--primary-color);
}

.wedding-cost-table thead th {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    text-align: left;
}

.wedding-cost-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.25s ease;
}

.wedding-cost-table tbody tr:last-child {
    border-bottom: none;
}

.wedding-cost-table tbody tr:hover {
    background: rgba(230, 0, 110, 0.05);
}

.wedding-cost-table tbody td {
    padding: 14px 20px;
    color: #333;
}

.wedding-cost-table tbody td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 767px) {
    .wedding-cost-table thead th,
    .wedding-cost-table tbody td {
        padding: 10px 12px;
        font-size: 14px;
    }
    
} 
.priority-booking-section {
   padding:5rem 0;
   background: #EDF3F8;
}
.priority-booking-section .row{
    row-gap:24px
}

.priority-card {
    
    border-radius: 0 0 14px 14px;
    overflow: visible;
    transition: transform 0.3s ease;
    height: 100%;
    text-align: center;
}
.priority-card:hover {
    transform: translateY(-6px);
}
.priority-img-wrap {
    position: relative;
    overflow: hidden;
    clip-path: url(#archClip);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    margin: 0 auto;
}
.priority-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.priority-card:hover .priority-img-wrap img {
    transform: scale(1.08);
}
.priority-card-body {
    padding: 22px 20px 24px;
    background: #fff;
    
}
.priority-card-title {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 10px;
}
.priority-card-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}
.priority-footer-note {
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
}