/* =============================================
   wedding.css
   Elegant wedding page styles inspired by River Place Venue
   ============================================= */
@import url('https://fonts.cdnfonts.com/css/aniyah-personal-use');

/* ---- GLOBAL RESETS FOR THIS PAGE ---- */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

.wedding-banner,
.wedding-intro,
.wedding-getstarted,
.wedding-availability,
.wedding-investment,
.wedding-tour-strip,
.wedding-whatsnext,
.wedding-venues-section {
    font-family: inherit;
}

/* =============================================
   STICKY CHECK AVAILABILITY BUTTON
   ============================================= */
.sticky-check-btn {
    position: fixed;
    right: -52px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background-color: #4a6741;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 0 0 6px 6px;
    z-index: 999;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.sticky-check-btn:hover {
    background-color: #2e3f2c;
    color: #fff;
}

/* =============================================
   BANNER
   ============================================= */
.wedding-banner {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.wedding-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 0;
}

.wedding-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.wedding-banner__content h1 {
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-family: inherit;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.wedding-banner__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
}

.wedding-banner__breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.wedding-banner__breadcrumb a:hover {
    color: #fff;
}

.wedding-banner__breadcrumb span {
    opacity: 0.7;
}

/* =============================================
   SHARED SECTION HELPERS
   ============================================= */
.wedding-section-sub {
    text-align: center;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7a8c6e;
    margin-bottom: 8px;
    font-weight: 600;
}

.wedding-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-top: 2rem;
    color: #2c2c2c;
    margin-bottom: 28px;
    line-height: 1.2;
    font-family: 'Aniyah Personal Use', cursive;
}

/* Shared CTA button */
.wedding-cta-btn {
    display: inline-block;
    padding: 13px 32px;
    background-color: #4a6741;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 2px solid #4a6741;
}

.wedding-cta-btn:hover {
    background-color: #2e3f2c;
    border-color: #2e3f2c;
    color: #fff;
    transform: translateY(-2px);
}

.wedding-cta-btn--outline {
    background: transparent;
    color: #4a6741;
}

.wedding-cta-btn--outline:hover {
    background: #4a6741;
    color: #fff;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.wedding-intro {
    padding: 80px 12px 60px;
    background: #fff;
}

.wedding-intro__inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.wedding-intro__title {
    font-size: 50px;
    font-weight: 400;
    color: #4b6a91;
    font-family: 'Aniyah Personal Use', cursive;
    margin-bottom: 10px;
    line-height: 1.2;
}

.wedding-intro__subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #7a8c6e;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: block;
}

.wedding-intro__subtitle::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: #e0e0e0;
    margin: 20px auto 0;
}

.wedding-intro__body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 36px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wedding-intro__body p {
    margin-bottom: 20px;
}

.wedding-intro__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.wedding-pill-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1.5px solid #4a6741;
    color: #4a6741;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    background: transparent;
}

.wedding-pill-btn:hover {
    background: #4a6741;
    color: #fff;
}

/* =============================================
   GET STARTED — 2-COLUMN
   ============================================= */
.wedding-getstarted {
    padding: 0;
    background: #ebf3f7;
    overflow: hidden;
}

.wedding-getstarted__row {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
}

.wedding-getstarted__left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.wedding-getstarted__content {
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.wedding-getstarted__right {
    flex: 1;
}

.wedding-getstarted__sub {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #4b6a91;
    font-weight: 500;
    margin-bottom: 25px;
}

.wedding-getstarted__title {
    font-size: 28px;
    font-weight: 400;
    color: #4b6a91;
    margin-bottom: 40px;
    line-height: 1.1;
    font-family: 'Aniyah Personal Use', cursive;
}

.wedding-getstarted__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wedding-getstarted__box {
    display: block;
    background: #fff;
    padding: 18px 20px;
    color: #4b6a91;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wedding-getstarted__box:hover {
    background: #4b6a91;
    color: #fff;
    transform: translateY(-2px);
}

.wedding-getstarted__img-wrap {
    width: 65%;
    margin-top: 3rem;
    height: 70%;
}

.wedding-getstarted__img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}

/* =============================================
   AVAILABILITY
   ============================================= */
/* =============================================
   AVAILABILITY & CALENDAR
   ============================================= */
.wedding-availability {
    padding: 100px 0;
    background: #fff;
}

.wedding-availability__header {
    text-align: center;
    margin-bottom: 60px;
}

.wedding-availability__title {
    font-family: 'Aniyah Personal Use', cursive;
    font-size: 80px;
    color: #4b6a91;
    margin-bottom: 5px;
    line-height: 0.8;
}

.wedding-availability__subtitle {
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #7a8c6e;
    font-weight: 700;
    margin-top: 15px;
}

.wedding-availability__info {
    max-width: 960px;
    margin: 0 auto 60px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    text-align: center;
    font-weight: 300;
}

.info-block.center p {
    font-style: italic;
    margin-top: 50px;
    font-size: 16px;
    color: #444;
}

.info-block strong {
    color: #333;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Calendar Container */
.wedding-calendar-container {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.wedding-calendar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding-left: 20px;
}

.calendar-arrows {
    display: flex;
    gap: 20px;
}

.calendar-arrows button {
    background: none;
    border: none;
    font-size: 16px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px;
}

.calendar-arrows button:hover {
    color: #4b6a91;
    transform: scale(1.3);
}

.calendar-year {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
}

/* Grid for months */
.wedding-calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 80px;
    transition: all 0.5s ease;
}

.calendar-fade-in {
    animation: calendarFadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes calendarFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.month-container {
    width: 100%;
}

.month-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: left;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th {
    font-size: 10px;
    color: #bbb;
    font-weight: 400;
    text-transform: capitalize;
    padding-bottom: 12px;
    width: 14.28%;
    text-align: center;
}

.calendar-table td {
    font-size: 12px;
    color: #555;
    padding: 6px 0;
    text-align: center;
    position: relative;
    cursor: default;
    height: 36px;
}

.calendar-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 24px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    position: relative;
}

.calendar-day.booked {
    background: #9d9d9d;
    color: #fff;
    opacity: 0.8;
}

.calendar-day.booking {
    background: #fdf5e6;
    color: #d4a017;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px #f3e5ab;
    animation: pulseBooking 2s infinite ease-in-out;
}

@keyframes pulseBooking {
    0% {
        transform: scale(1);
        box-shadow: inset 0 0 0 1px #f3e5ab;
    }

    50% {
        transform: scale(1.05);
        box-shadow: inset 0 0 0 2px #f3e5ab, 0 0 10px rgba(212, 160, 23, 0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: inset 0 0 0 1px #f3e5ab;
    }
}


.calendar-day.booking::after {
    content: "";
    position: absolute;
    bottom: 2px;
    width: 4px;
    height: 4px;
    background: #d4a017;
    border-radius: 50%;
}

.calendar-day.available {
    border: 1px solid transparent;
}

.calendar-day.available:hover {
    background: #f4f7f9;
    color: #4b6a91;
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 106, 145, 0.12);
    border-color: #e2e8f0;
}

/* Legend */
.wedding-calendar-legend {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f5f5f5;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.legend-item .box {
    width: 20px;
    height: 14px;
    border-radius: 3px;
}

.legend-item .box.booked {
    background: #9d9d9d;
}

.legend-item .box.booking {
    background: #fdf5e6;
    border: 1px solid #f3e5ab;
}

.legend-item .box.available {
    border: 1px solid #e0e0e0;
}

/* New Actions Section (Line with Button) */
.wedding-availability__actions-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 80px;
    padding: 80px 0;
}

.availability-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #cbd5e1;
    z-index: 0;
}

.wedding-tour-line-btn {
    position: relative;
    z-index: 1;
    background: #f1f5f9;
    padding: 18px 45px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.wedding-tour-line-btn span {
    font-size: 14px;
    letter-spacing: 5px;
    font-weight: 500;
    color: #4b6a91;
    font-family: inherit;
}

.wedding-tour-line-btn i {
    font-size: 14px;
    color: #4b6a91;
    transition: transform 0.3s ease;
}

.wedding-tour-line-btn:hover {
    background: #e2e8f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.wedding-tour-line-btn:hover i {
    transform: translateX(5px);
}

.mt-5 {
    margin-top: 3rem !important;
}


.wedding-availability__actions-wrap .fa-solid,
.fas {
    margin-left: 5rem;
}

/* =============================================
   INVESTMENT / INCLUSIONS
   ============================================= */
.wedding-investment {
    padding: 100px 12px;
    background: #fff;
}

.wedding-investment__title {
    font-family: 'Aniyah Personal Use', cursive;
    font-size: 42px;
    color: #4b6a91;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 400;
}

.wedding-investment__intro {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.wedding-investment__intro p {
    font-size: 15px;
    line-height: 2;
    color: #666;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.wedding-investment__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.investment-card {
    background: #f1f5f9;
    padding: 45px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-5px);
}

.investment-card h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 10px;
    color: #4b6a91;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.investment-card__prices p {
    font-size: 13px;
    letter-spacing: 4px;
    color: #4b6a91;
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.investment-card__prices p:last-child {
    margin-bottom: 0;
}

.wedding-investment__footer {
    text-align: center;
    margin-top: 50px;
}

.wedding-investment__btn {
    display: inline-block;
    background: #4b5e70;
    color: #fff;
    padding: 18px 45px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wedding-investment__btn:hover {
    background: #3a4b5a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* =============================================
   ALL INCLUSIVE SECTION
   ============================================= */
.wedding-all-inclusive {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.wedding-all-inclusive::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.wedding-all-inclusive .container {
    position: relative;
    z-index: 1;
}

.wedding-all-inclusive__content {
    background: rgba(255, 255, 255, 0.88);
    max-width: 480px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.all-inclusive-title {
    font-family: 'Aniyah Personal Use', cursive;
    font-size: 35px;
    color: #4b6a91;
    margin-bottom: 0px;
    font-weight: 400;
    line-height: 1;
}

.all-inclusive-subtitle {
    font-size: 13px;
    letter-spacing: 5px;
    color: #4b6a91;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 35px;
}

.all-inclusive-body p {
    font-size: 14px;
    line-height: 2.1;
    color: #555;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.3px;
}

/* =============================================
   WEDDING DETAILS TABS (NEW SECTION)
   ============================================= */
.wedding-details-tabs {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.wedding-details__nav {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.details-tab {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #999;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.details-tab:hover {
    color: #4b6a91;
}

.details-tab.active {
    color: #4b6a91;
}

.details-tab.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #4b6a91;
}

.wedding-details__content-wrap {
    position: relative;
}

.details-panel {
    display: none;
    animation: fadeInTab 0.5s ease forwards;
}

.details-panel.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.details-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.details-text {
    flex: 1;
    max-width: 550px;
}

.details-title {
    font-family: 'Aniyah Personal Use', cursive;
    font-size: 32px;
    color: #4b6a91;
    line-height: 68px;
    margin-bottom: 30px;
    font-weight: 400;
}

.details-intro {
    margin-bottom: 25px;
}

.details-intro p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    margin: 0;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.details-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
    position: relative;
    padding-left: 18px;
    line-height: 1.6;
    font-weight: 300;
}

.details-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #333;
    font-size: 20px;
    line-height: 1;
}

.details-footer {
    margin-top: 50px;
}

.view-next-btn {
    display: inline-block;
    background: #4b5e70;
    color: #fff;
    padding: 18px 45px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-next-btn:hover {
    background: #3a4b5a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.details-image {
    flex: 1;
    position: relative;
}

.details-image::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -100px;
    bottom: -40px;
    left: 40px;
    background: #f1f5f9;
    /* Light blue background as seen in SS */
    z-index: -1;
}

.details-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: 20px 20px 0 #fff;
    /* White border effect from SS */
}

/* =============================================
   WHAT'S NEXT SECTION
   ============================================= */
.wedding-whatsnext {
    padding: 120px 0;
    background: #f1f5f9;
    /* Light blue/grey background */
    overflow: hidden;
}

.wedding-whatsnext__row {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.wedding-whatsnext__text {
    flex: 1;
    text-align: center;
}

.whatsnext-title {
    font-family: 'Aniyah Personal Use', cursive;
    font-size: 40px;
    color: #4b6a91;
    margin-bottom: 25px;
    font-weight: 400;
}

.whatsnext-intro {
    font-size: 14px;
    line-height: 1.8;
    color: #4b6a91;
    margin-bottom: 45px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.whatsnext-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 55px;
    display: inline-block;
    text-align: left;
}

.whatsnext-checklist li {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #4b6a91;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsnext-checklist li i {
    color: #4b6a91;
    font-size: 18px;
    margin-left: 0 !important;
    /* Override global margin */
}

.whatsnext-footer {
    margin-top: 20px;
}

.schedule-now-btn {
    display: inline-block;
    background: #4b5e70;
    color: #fff;
    padding: 20px 55px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.schedule-now-btn:hover {
    background: #3a4b5a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.wedding-whatsnext__img {
    flex: 1;
    position: relative;
}

.wedding-whatsnext__img::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    bottom: -50px;
    right: -200px;
    background: #fff;
    /* White background block behind image */
    z-index: -1;
}

.wedding-whatsnext__img img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .wedding-whatsnext__row {
        flex-direction: column;
        gap: 80px;
        padding: 0 20px;
    }

    .wedding-whatsnext__img::before {
        right: -50px;
    }


}

/* =============================================
   SISTER VENUES PROPERTY GRID
   ============================================= */
.wedding-venues-section {
    padding: 80px 12px;
    background: #f8f6f3;
}

.wedding-venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.wedding-venue-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wedding-venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.wedding-venue-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wedding-venue-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.wedding-venue-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.wedding-venue-card:hover .wedding-venue-card__img-wrap img {
    transform: scale(1.08);
}

.wedding-venue-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 55%);
    transition: background 0.3s ease;
}

.wedding-venue-card:hover .wedding-venue-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.wedding-venue-card__body {
    padding: 24px 22px 22px;
    background: #fff;
}

.wedding-venue-card__line {
    width: 36px;
    height: 2px;
    background: #4a6741;
    margin-bottom: 12px;
}

.wedding-venue-card__title {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-family: inherit;
    line-height: 1.25;
}

.wedding-venue-card__cta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4a6741;
    transition: color 0.2s;
}

.wedding-venue-card:hover .wedding-venue-card__cta {
    color: #2e3f2c;
}

/* =============================================
   READY TO GET STARTED FORM
   ============================================= */
.ready-form {
    padding: 100px 0;
    background: #fcfcfc;
}

.ready-form__title {
    font-family: 'Aniyah Personal Use', cursive;
    font-size: 52px;
    color: #333;
    margin-bottom: 50px;
    font-weight: 400;
}

.ready-form .form-ready {
    max-width: 1100px;
}

.ready-form .form-group {
    margin-bottom: 25px;
}

.ready-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.ready-form input[type="text"],
.ready-form input[type="email"],
.ready-form input[type="tel"],
.ready-form input[type="number"],
.ready-form select,
.ready-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-size: 14px;
    color: #333;
    border-radius: 0;
    transition: all 0.3s ease;
}

.ready-form input::placeholder {
    color: #aaa;
}

.ready-form input:focus,
.ready-form select:focus,
.ready-form textarea:focus {
    outline: none;
    border-color: #4b6a91;
    box-shadow: 0 0 0 3px rgba(75, 106, 145, 0.05);
}

.ready-form .form-note {
    font-size: 14px;
    color: #666;
    margin-top: -10px;
    margin-bottom: 25px;
    font-weight: 300;
}

.group-label {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-group.horizontal {
    flex-direction: row;
    gap: 25px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.radio-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin: 0;
    position: relative;
    cursor: pointer;
    background: #fff;
}

.radio-group input[type="radio"]:checked {
    border-color: #4b6a91;
    background: #4b6a91;
    box-shadow: inset 0 0 0 4px #fff;
}

.radio-group span {
    font-size: 14px;
    color: #333;
}

.other-input {
    margin-top: 10px;
    padding: 10px 15px !important;
}

.msg-footer {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 300;
}

.ready-form__submit {
    background: #4a6741;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ready-form__submit:hover {
    background: #3a5233;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .ready-form {
        padding: 60px 0;
    }

    .ready-form__title {
        font-size: 40px;
        text-align: center;
    }

    .ready-form__col {
        margin-bottom: 40px;
    }
}