.booking-wrapper {
    padding: 60px 0;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    background-color: #cfa93c0f;
}

.booking-form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b8914f 0%, #d4af37 100%);
}

.booking-header-title {
    text-align: center;
    margin-bottom: 15px;
}

.booking-header-title h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #b8914f 0%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.booking-header-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 400;
}

.booking-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    margin-top: 40px;
    position: relative;
    padding-left: 20px;
}

.booking-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #b8914f 0%, #d4af37 100%);
    border-radius: 2px;
}

.booking-section-title:first-of-type {
    margin-top: 0;
}

.booking-form-group {
    margin-bottom: 24px;
}

.booking-form-control,
.booking-form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    font-weight: 500;
}

.booking-form-control:hover,
.booking-form-select:hover {
    border-color: #d4d8dd;
}

.booking-form-control:focus,
.booking-form-select:focus {
    outline: none;
    border-color: #b8914f;
    box-shadow: 0 0 0 4px rgba(184, 145, 79, 0.1);
    background-color: #fffbf5;
}

.booking-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath fill='%23b8914f' d='M7 10L0 0h14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
    cursor: pointer;
}

.booking-frequency-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.booking-frequency-btn {
    padding: 16px 24px;
    border: 2px solid #e8ecef;
    background-color: #fff;
    color: #666;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-frequency-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(184, 145, 79, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.booking-frequency-btn:hover::before {
    width: 300px;
    height: 300px;
}

.booking-frequency-btn:hover {
    border-color: #b8914f;
    color: #b8914f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 145, 79, 0.2);
}

.booking-frequency-btn.active {
    background: linear-gradient(135deg, #b8914f 0%, #d4af37 100%);
    border-color: #b8914f;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(184, 145, 79, 0.3);
}

.booking-extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.booking-extra-item {
    text-align: center;
    padding: 24px 16px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    position: relative;
}

.booking-extra-item::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border: 2px solid #e8ecef;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.booking-extra-item:hover {
    border-color: #b8914f;
    background-color: #fffbf5;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(184, 145, 79, 0.15);
}

.booking-extra-item.selected {
    border-color: #b8914f;
    background: linear-gradient(135deg, #b8914f 0%, #d4af37 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(184, 145, 79, 0.3);
}

.booking-extra-item.selected::after {
    content: '';
    background: #041e3a;
    border-color: #fff;
    color: #b8914f;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.booking-extra-item.selected .booking-extra-icon img {*/
/*    filter: brightness(0) invert(1);*/
/*}*/


.booking-extra-item.selected .booking-extra-label {
    color: #fff;
}

.booking-extra-icon img {
    padding: 8px;
}

.booking-extra-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 145, 79, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.booking-extra-item:hover .booking-extra-icon {
    transform: scale(1.1) rotate(5deg);
}

.booking-extra-item.selected .booking-extra-icon {
    background: rgba(255, 255, 255, 0.2);
}



.booking-extra-label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.booking-info-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-top: 10px;
}

.booking-discount-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.booking-discount-input {
    flex: 1;
}

.booking-apply-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, #b8914f 0%, #d4af37 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(184, 145, 79, 0.3);
}

.booking-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 145, 79, 0.4);
}

.booking-apply-btn:active {
    transform: translateY(0);
}

.booking-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.booking-textarea:focus {
    outline: none;
    border-color: #b8914f;
    box-shadow: 0 0 0 4px rgba(184, 145, 79, 0.1);
    background-color: #fffbf5;
}

.booking-sidebar {
    position: sticky;
    top: 100px;
}

.booking-features-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.booking-feature-item {
    text-align: center;
    margin-bottom: 32px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.booking-feature-item:hover {
    background: rgba(184, 145, 79, 0.05);
    transform: translateY(-2px);
}

.booking-feature-item:last-child {
    margin-bottom: 0;
}

.booking-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 145, 79, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.booking-feature-item:hover .booking-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(184, 145, 79, 0.2);
}

.booking-feature-icon svg {
    width: 40px;
    height: 40px;
    fill: #b8914f;
}

.booking-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.booking-feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.booking-summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
}

.booking-summary-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f5f5f5;
    position: relative;
}

.booking-summary-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #b8914f 0%, #d4af37 100%);
}

.booking-summary-title {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #b8914f 0%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.booking-summary-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f5f5f5;
}

.booking-summary-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.booking-summary-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(184, 145, 79, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 12px;
}

.booking-summary-icon svg {
    width: 28px;
    height: 28px;
    fill: #b8914f;
}

.booking-summary-content {
    flex: 1;
}

.booking-summary-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.booking-summary-value {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.booking-summary-extras {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.booking-summary-extras li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    border-bottom: 1px dashed #f0f0f0;
}

.booking-summary-extras li:last-child {
    border-bottom: none;
}

.booking-summary-totals {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid #f5f5f5;
    background: linear-gradient(135deg, rgba(184, 145, 79, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
    padding: 24px;
    border-radius: 12px;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
}

.booking-summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e8ecef;
}

.booking-summary-row .label {
    color: #666;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
}

.booking-summary-row.total .label {
    font-size: 15px;
    color: #333;
}

.booking-summary-row .value {
    color: #333;
    font-weight: 700;
}

.booking-summary-row.total .value {
    background: linear-gradient(135deg, #b8914f 0%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 800;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-summary-extras li {
    animation: slideInUp 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .booking-frequency-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .booking-form-container {
        padding: 28px 20px;
    }

    .booking-header-title h2 {
        font-size: 32px;
    }

    .booking-frequency-buttons,
    .booking-extras-grid {
        grid-template-columns: 1fr;
    }

    .booking-discount-row {
        flex-direction: column;
    }

    .booking-apply-btn {
        width: 100%;
    }

    .booking-summary-row.total .value {
        font-size: 28px;
    }
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #b8914f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Skeleton Loading Animation */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton-item {
    opacity: 0.7;
}

.skeleton-box {
    background: linear-gradient(90deg, #f0f0f0 0px, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 200px 100%;
    animation: skeleton-shimmer 1.2s ease-in-out infinite;
}

.skeleton-item .booking-extra-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nice-select.open .list {
    height: 260px;
    overflow: scroll;
}


.orlando-locations-interactive {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.locations-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.locations-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}



.locations-subtitle {
    font-size: 18px;
    color: #666;
}

.orlando-map-container-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.orlando-locations-list-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    max-height: 700px;
    overflow-y: auto;
}

.orlando-locations-list-box::-webkit-scrollbar {
    width: 6px;
}

.orlando-locations-list-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.orlando-locations-list-box::-webkit-scrollbar-thumb {
    background: #c9a961;
    border-radius: 10px;
}

.locations-grid-columns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-name-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.location-name-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #c9a961;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.location-name-item:hover,
.location-name-item.active-location {
    background: white;
    border-color: #c9a961;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.2);
}

.location-name-item:hover::before,
.location-name-item.active-location::before {
    transform: scaleY(1);
}

.location-bullet-icon {
    width: 10px;
    height: 10px;
    background: #c9a961;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-name-item:hover .location-bullet-icon,
.location-name-item.active-location .location-bullet-icon {
    background: #5cb85c;
    transform: scale(1.3);
}

.location-name-text {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.orlando-interactive-map-area {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.map-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #e8f4f8;
}

.orlando-map-display {
    width: 100%;
    height: 600px;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}


@keyframes pulseMarker {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(201, 169, 97, 0.5);
    }

    50% {
        box-shadow: 0 4px 35px rgba(201, 169, 97, 0.8);
    }
}


.location-preview-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
    width: 90%;
}

.location-preview-popup.show-popup {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.popup-overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay-backdrop.show-backdrop {
    opacity: 1;
    pointer-events: all;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #e9ecef;
    color: #2c3e50;
    transform: rotate(90deg);
}

.popup-location-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.popup-location-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.popup-location-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 1199px) {
    .orlando-map-container-wrapper {
        gap: 40px;
    }

    .locations-main-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .orlando-locations-interactive {
        padding: 60px 0;
    }

    .orlando-map-container-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .orlando-locations-list-box {
        position: static;
        max-height: none;
    }

    .locations-main-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .orlando-locations-interactive {
        padding: 50px 0;
    }


    .locations-section-header {
        margin-bottom: 40px;
    }

    .locations-main-title {
        font-size: 32px;
    }

    .locations-subtitle {
        font-size: 16px;
    }

    .orlando-locations-list-box {
        padding: 25px;
    }

    .locations-grid-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .orlando-interactive-map-area {
        padding: 20px;
    }

    .orlando-map-display {
        height: 400px;
    }


    .location-preview-popup {
        padding: 20px;
    }

    .popup-location-image {
        height: 200px;
    }

    .popup-location-title {
        font-size: 24px;
    }
}

/* ---- Image label overlay ---- */
.map-location-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    color: #fff;
    padding: 50px 24px 22px;
    font-size: 20px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.map-location-label.visible {
    opacity: 1;
}

/* ---- Mobile Modal ---- */
.location-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    backdrop-filter: blur(3px);
}

.location-modal-backdrop.active {
    display: block;
}

.location-modal-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.9);
    z-index: 9999;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.location-modal-box.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.location-modal-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.location-modal-body {
    padding: 20px 24px 26px;
}

.location-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.location-modal-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.location-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.location-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* image fade on change */
.orlando-map-display.img-loading,
.palmbeach-map-display.img-loading {
    opacity: 0.45;
    transition: opacity 0.2s;
}

.palmbeach-locations-interactive {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.locations-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.locations-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.locations-subtitle {
    font-size: 18px;
    color: #666;
}

.palmbeach-map-container-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.palmbeach-locations-list-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    max-height: 700px;
    overflow-y: auto;
}

.palmbeach-locations-list-box::-webkit-scrollbar {
    width: 6px;
}

.palmbeach-locations-list-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.palmbeach-locations-list-box::-webkit-scrollbar-thumb {
    background: #c9a961;
    border-radius: 10px;
}

.locations-grid-columns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-name-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.location-name-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #c9a961;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.location-name-item:hover,
.location-name-item.active-location {
    background: white;
    border-color: #c9a961;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.2);
}

.location-name-item:hover::before,
.location-name-item.active-location::before {
    transform: scaleY(1);
}

.location-bullet-icon {
    width: 10px;
    height: 10px;
    background: #c9a961;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-name-item:hover .location-bullet-icon,
.location-name-item.active-location .location-bullet-icon {
    background: #5cb85c;
    transform: scale(1.3);
}

.location-name-text {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.palmbeach-interactive-map-area {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.map-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #e8f4f8;
}

.palmbeach-map-display {
    width: 100%;
    height: 600px;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}


@keyframes pulseMarker {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(201, 169, 97, 0.5);
    }

    50% {
        box-shadow: 0 4px 35px rgba(201, 169, 97, 0.8);
    }
}



.location-preview-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
    width: 90%;
}

.location-preview-popup.show-popup {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.popup-overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay-backdrop.show-backdrop {
    opacity: 1;
    pointer-events: all;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #e9ecef;
    color: #2c3e50;
    transform: rotate(90deg);
}

.popup-location-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.popup-location-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.popup-location-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 1199px) {
    .palmbeach-map-container-wrapper {
        gap: 40px;
    }

    .locations-main-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .palmbeach-locations-interactive {
        padding: 60px 0;
    }

    .palmbeach-map-container-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .palmbeach-locations-list-box {
        position: static;
        max-height: none;
    }

    .locations-main-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .palmbeach-locations-interactive {
        padding: 50px 0;
    }

    .locations-section-header {
        margin-bottom: 40px;
    }

    .locations-main-title {
        font-size: 32px;
    }

    .locations-subtitle {
        font-size: 16px;
    }

    .palmbeach-locations-list-box {
        padding: 25px;
    }

    .locations-grid-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .palmbeach-interactive-map-area {
        padding: 20px;
    }

    .palmbeach-map-display {
        height: 400px;
    }


    .location-preview-popup {
        padding: 20px;
    }

    .popup-location-image {
        height: 200px;
    }

    .popup-location-title {
        font-size: 24px;
    }
}


/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
    position: relative;
    overflow: hidden;
}

.privacy-policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(189, 140, 8, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-policy-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189, 140, 8, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.privacy-header h1 {
    font-family: var(--Freshflow-font-two);
    font-size: 56px;
    font-weight: 700;
    color: var(--Freshflow-black);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.privacy-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--Freshflow-base) 0%, rgba(189, 140, 8, 0.3) 100%);
    border-radius: 2px;
}

.privacy-header p {
    font-family: var(--Freshflow-font);
    font-size: 18px;
    color: var(--Freshflow-gray);
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.privacy-content-wrapper {
    background: var(--Freshflow-white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 60px rgba(5, 23, 61, 0.08);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
}

.privacy-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--Freshflow-base) 0%, var(--Freshflow-primary) 100%);
    border-radius: 20px 20px 0 0;
}

.elementor-widget-container p {
    font-family: var(--Freshflow-font);
    font-size: 17px;
    line-height: 1.9;
    color: var(--Freshflow-black);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.elementor-widget-container p:nth-child(1) {
    animation-delay: 0.3s;
}

.elementor-widget-container p:nth-child(2) {
    animation-delay: 0.4s;
}

.elementor-widget-container p:nth-child(3) {
    animation-delay: 0.5s;
}

.elementor-widget-container p:nth-child(n+4) {
    animation-delay: 0.6s;
}

.elementor-widget-container p span {
    font-weight: 400;
}

/* Highlight important sections */
.elementor-widget-container p:nth-child(2) {
    background: linear-gradient(135deg, rgba(189, 140, 8, 0.08) 0%, rgba(189, 140, 8, 0.03) 100%);
    border-left: 4px solid var(--Freshflow-base);
    padding: 25px 30px;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.elementor-widget-container p:nth-child(2)::before {
    content: 'âš ';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    opacity: 0.15;
    color: var(--Freshflow-base);
}

/* Style section headings within paragraphs */
.elementor-widget-container p:has(span:contains("Information Gathering")),
.elementor-widget-container p:has(span:contains("Information Use")),
.elementor-widget-container p:has(span:contains("Information Protection")),
.elementor-widget-container p:has(span:contains("Access to Information")),
.elementor-widget-container p:has(span:contains("Information Retention")),
.elementor-widget-container p:has(span:contains("Cookies")),
.elementor-widget-container p:has(span:contains("Changes to this Policy")),
.elementor-widget-container p:has(span:contains("Third-Party Services")),
.elementor-widget-container p:has(span:contains("Marketing messages")),
.elementor-widget-container p:has(span:contains("Children's Privacy")),
.elementor-widget-container p:has(span:contains("International Transfers")),
.elementor-widget-container p:has(span:contains("Legal Compliance")),
.elementor-widget-container p:has(span:contains("Call Us")),
.elementor-widget-container p:has(span:contains("Modifications")) {
    position: relative;
    padding-left: 25px;
}

.elementor-widget-container p:has(span:contains("Information Gathering"))::before,
.elementor-widget-container p:has(span:contains("Information Use"))::before,
.elementor-widget-container p:has(span:contains("Information Protection"))::before,
.elementor-widget-container p:has(span:contains("Access to Information"))::before,
.elementor-widget-container p:has(span:contains("Information Retention"))::before,
.elementor-widget-container p:has(span:contains("Cookies"))::before,
.elementor-widget-container p:has(span:contains("Changes to this Policy"))::before,
.elementor-widget-container p:has(span:contains("Third-Party Services"))::before,
.elementor-widget-container p:has(span:contains("Marketing messages"))::before,
.elementor-widget-container p:has(span:contains("Children's Privacy"))::before,
.elementor-widget-container p:has(span:contains("International Transfers"))::before,
.elementor-widget-container p:has(span:contains("Legal Compliance"))::before,
.elementor-widget-container p:has(span:contains("Call Us"))::before,
.elementor-widget-container p:has(span:contains("Modifications"))::before {
    content: 'â–ª';
    position: absolute;
    left: 0;
    color: var(--Freshflow-base);
    font-size: 24px;
    line-height: 1.9;
}

/* Make section titles bold */
.elementor-widget-container p span:first-child {
    font-weight: 600;
    color: var(--Freshflow-black);
}

/* Contact information highlight */
.elementor-widget-container p:has(span:contains("Call Us")) {
    background: rgba(189, 140, 8, 0.05);
    border: 2px solid rgba(189, 140, 8, 0.2);
    padding: 25px 30px;
    border-radius: 12px;
    margin-top: 40px;
}

/* Last paragraph emphasis */
.elementor-widget-container p:last-child {
    background: linear-gradient(135deg, var(--Freshflow-secondary) 0%, rgba(242, 242, 255, 0.3) 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--Freshflow-primary);
    margin-top: 40px;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    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;
    }
}

/* Decorative elements */
.privacy-decorative-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(189, 140, 8, 0.1) 0%, rgba(189, 140, 8, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.privacy-decorative-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--Freshflow-base);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privacy-policy-section {
        padding: 80px 0;
    }

    .privacy-content-wrapper {
        padding: 50px 40px;
    }

    .privacy-header h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 60px 0;
    }

    .privacy-content-wrapper {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .privacy-header h1 {
        font-size: 36px;
    }

    .privacy-header p {
        font-size: 16px;
    }

    .elementor-widget-container p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .privacy-decorative-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-content-wrapper {
        padding: 30px 20px;
    }

    .elementor-widget-container p {
        font-size: 15px;
    }

    .elementor-widget-container p:nth-child(2) {
        padding: 20px;
    }
}

/* =========================================
   ENHANCED MEGA MENU STYLING (Card Style)
   ========================================= */

@media (min-width: 1200px) {

    /* 1. Widen Main Dropdown & Sub-dropdowns */
    .main-menu .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul {
        min-width: 320px !important;
        /* Adjusted for better fit */
        padding: 15px !important;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    }

    /* Target specific child dropdown for Services flyout */
    .main-menu .main-menu__list>li>ul>li>ul.child_dropdown,
    .stricky-header .main-menu__list>li>ul>li>ul.child_dropdown {
        position: absolute;
        top: 0 !important;
        left: 100% !important;
        min-width: 300px !important;
        margin-left: 5px;
        z-index: 100 !important;
        background: #ffffff;
        border-radius: 12px;
        padding: 15px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
        display: none;
    }

    .main-menu .main-menu__list>li>ul>li:hover>ul.child_dropdown,
    .stricky-header .main-menu__list>li>ul>li:hover>ul.child_dropdown {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: scaleY(1) !important;
    }

    /* 2. Level 2 Items (Parents) - Styling & Arrow */
    .main-menu .main-menu__list>li>ul>li>a {
        font-weight: 600;
        color: #333;
        padding: 12px 20px;
        border-radius: 8px;
        margin-bottom: 5px;
        transition: all 0.3s ease;
        display: flex;
        justify-content: space-between;
        /* Push arrow to right */
        align-items: center;
    }

    /* Disable default ::before arrow to fix alignment issues */
    .main-menu .main-menu__list>li>ul>li>a::before,
    .stricky-header .main-menu__list>li>ul>li>a::before {
        display: none !important;
    }

    /* Use ::after for the arrow to ensure it's on the RIGHT side - ONLY for items with dropdown class */
    .main-menu .main-menu__list>li>ul>li.dropdown>a::after,
    .stricky-header .main-menu__list>li>ul>li.dropdown>a::after {
        content: "\f105";
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        margin-left: auto;
        /* Push to far right */
        font-size: 14px;
        color: #999;
        transition: all 0.3s ease;
    }

    .main-menu .main-menu__list>li>ul>li:hover>a,
    .stricky-header .main-menu__list>li>ul>li:hover>a {
        background-color: #f8f9fa;
        color: #b8914f;
        /* Gold text on hover */
    }

    .main-menu .main-menu__list>li>ul>li:hover>a::after {
        color: #b8914f;
        /* Gold arrow on hover */
    }

    /* 3. Level 3 Items (The Cards) & SCROLLING */
    .main-menu .main-menu__list>li>ul>li>ul.child_dropdown,
    .stricky-header .main-menu__list>li>ul>li>ul.child_dropdown {
        /* SCROLLING SUPPORT */
        max-height: 500px;
        /* Increased height */
        overflow-y: auto;
        /* Enable vertical scroll */

        /* Custom Scrollbar Styles */
        scrollbar-width: thin;
        scrollbar-color: #b8914f #f0f0f0;
    }

    /* Webkit Scrollbar Styling (Chrome/Safari) */
    .main-menu .main-menu__list>li>ul>li>ul.child_dropdown::-webkit-scrollbar {
        width: 6px;
    }

    .main-menu .main-menu__list>li>ul>li>ul::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 4px;
    }

    .main-menu .main-menu__list>li>ul>li>ul::-webkit-scrollbar-thumb {
        background-color: #b8914f;
        border-radius: 4px;
    }

    /* Card Styling */
    .main-menu .main-menu__list>li>ul>li>ul.child_dropdown>li>a {
        display: flex;
        align-items: center;
        background: #ffffff;
        /* Card Background */
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        padding: 7px 8px;
        margin-bottom: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
        color: #333 !important;
        /* Ensure visibility */
    }

    .main-menu .main-menu__list>li>ul>li>ul>li:last-child>a {
        margin-bottom: 0;
    }

    /* Hover Effect for Cards */
    .main-menu .main-menu__list>li>ul>li>ul>li>a:hover {
        border-color: #b8914f;

        transform: translateY(-2px);
        /* Slight lift */
        box-shadow: 0 5px 15px rgba(184, 145, 79, 0.15);
    }



    /* Icon Container in Card */
    .main-menu .main-menu__list>li>ul>li>ul>li>a span:first-child {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(184, 145, 79, 0.1);
        /* Light Gold BG for Icon */
        border-radius: 10px;
        margin-right: 15px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }



    /* Icon Styling */
    .main-menu .main-menu__list>li>ul>li>ul>li>a span:first-child img {
        width: 40px;
        height: 40px;
        object-fit: contain;

        /* Gold Filter */
        transition: all 0.3s ease;
    }



    /* Text Styling */
    .main-menu .main-menu__list>li>ul>li>ul>li>a span:last-child {
        font-size: 13px;
        font-weight: 600;
        color: #000;
        transition: color 0.3s ease;
    }

    /* Hide Default Arrow for Level 3 items */
    .main-menu .main-menu__list>li>ul>li>ul>li>a::before,
    .main-menu .main-menu__list>li>ul>li>ul>li>a::after {
        display: none !important;
    }
}

/* =========================================
   MOBILE MENU RESETS (Below 1200px)
   ========================================= */
@media (max-width: 1199px) {

    /* Reset Dropdown Widths & Positioning */
    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul {
        min-width: auto !important;
        width: 100% !important;
        position: static !important;
        padding: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        border-radius: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        display: none;
        /* Let JS toggle display block */
        transform: none !important;
    }

    /* Ensure displayed when toggled */
    .main-menu .main-menu__list>li.expanded>ul,
    .main-menu .main-menu__list>li>ul>li.expanded>ul {
        display: block !important;
    }

    /* Items Styling Reset */
    .main-menu .main-menu__list>li>ul>li>a,
    .main-menu .main-menu__list>li>ul>li>ul>li>a {
        padding: 10px 15px !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        display: flex;
        align-items: center;
        margin-bottom: 0 !important;
        color: #fff !important;
        /* Assuming dark mobile menu bg */
    }

    /* Simplify Icons */
    .main-menu .main-menu__list>li>ul>li>ul>li>a span:first-child {
        width: 30px !important;
        height: 30px !important;
        background: transparent !important;
        margin-right: 10px !important;
    }

    .main-menu .main-menu__list>li>ul>li>ul>li>a span:first-child img {
        width: 20px !important;
        height: 20px !important;
        /* Make icons white */
    }

    /* Text Color */
    .main-menu .main-menu__list>li>ul>li>ul>li>a span:last-child {
        color: #fff !important;
        font-weight: 500 !important;
    }

    /* Arrows - Use default theme arrows handling, reset custom */
    .main-menu .main-menu__list>li>ul>li>a::after {
        display: none !important;
    }

    /* Level 2 items */
    .main-menu .main-menu__list>li>ul>li>a {
        justify-content: flex-start !important;
        color: #fff !important;
    }

    .mobile_span {
        display: none;
    }
}

/* ==========================================================================
   PREMIUM HERO SECTION (VIDEO BACKGROUND)
   ========================================================================== */
/* ==========================================================================
   PREMIUM HERO SECTION (CONSOLIDATED & RESPONSIVE)
   ========================================================================== */
.premium-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    padding: 100px 20px 0;
    /* Header offset */
}

.premium-hero__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.premium-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.premium-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.premium-hero .container {
    position: absolute;
    z-index: 2;
    max-width: 1000px !important;
    margin: 0 auto !important;
    bottom: 15px;
}

.premium-hero__content {
    width: 100% !important;
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-hero__title {
    font-size: clamp(34px, 8vw, 72px) !important;
    /* Fluid typography */
    line-height: 1.1 !important;
    font-weight: 500 !important;
    margin-bottom: 25px !important;
    letter-spacing: -2px !important;
    color: #fff !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.premium-hero__text {
    font-size: clamp(16px, 2.5vw, 20px) !important;
    line-height: 1.6 !important;
    margin-bottom: 45px !important;
    font-weight: 400 !important;
    max-width: 650px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #eee !important;
}

.premium-hero__btn-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.premium-hero__btn {
    padding: 18px 45px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 30px rgba(184, 145, 79, 0.3) !important;
    transition: all 0.3s ease !important;
}

.premium-hero__btn:hover {
    box-shadow: 0 15px 35px rgba(184, 145, 79, 0.45) !important;
    transform: translateY(-2px);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f9e29c 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

@media (max-width: 991px) {
    .premium-hero {
        min-height: 500px;
        height: 80vh;
    }
}

@media (max-width: 767px) {
    .premium-hero {
        height: auto;
        min-height: 600px;
        padding: 140px 20px 100px;
        /* Increased bottom padding */
    }

    .premium-hero .container {
        position: relative !important;
        /* Switch to relative for better flow on mobile */
        bottom: 0 !important;
        padding: 0 !important;
    }

    .premium-hero__title {
        font-size: clamp(28px, 10vw, 42px) !important;
        line-height: 1.2 !important;
        letter-spacing: -1px !important;
        margin-bottom: 20px !important;
    }

    .premium-hero__text {
        font-size: 16px !important;
        margin-bottom: 35px !important;
        line-height: 1.5 !important;
    }

    .premium-hero__btn-box {
        gap: 15px !important;
    }

    .premium-hero__btn {
        padding: 16px 30px !important;
        font-size: 14px !important;
        width: 100%;
        /* Full width button on small mobile for better UX */
        max-width: 280px;
    }
}

/* ==========================================================================
   TRANSPARENT NAVIGATION OVERLAY
   ========================================================================== */
.main-header {
    background: transparent !important;
}

.main-header .main-menu__top {
    background-color: rgb(4 30 58) !important;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header .main-menu__wrapper:before {
    display: none;
}

.main_menu_logo {
    display: flex;
    align-items: center;
}

/* .main-header .main-menu__logo img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
} */

/* Top bar text colors */
.main-header .main-menu__contact-list li .text p,
.main-header .main-menu__contact-list li .text p a,
.main-header .main-menu__top-social-title {
    color: #ffffff !important;
}

.main-header .main-menu__contact-list li .icon i {
    color: #d4af37 !important;
}

.main-header .main-menu__top-social-box {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Main menu text colors */
.main-header .main-menu__list>li>a {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-header .main-menu__list>li.dropdown>a:after {
    color: #ffffff !important;
}

.main-header .main-menu__list>li.current>a,
.main-header .main-menu__list>li:hover>a {
    color: #d4af37 !important;
}

/* Sticky Header Adjustments */
.stricky-header.stricked-menu.main-menu {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.stricky-header.stricked-menu.main-menu .main-menu__list>li>a {
    color: #041e3a !important;
    text-shadow: none;
}

.stricky-header.stricked-menu.main-menu .main-menu__list>li.dropdown>a:after {
    color: #041e3a !important;
}

.stricky-header.stricked-menu.main-menu .main-menu__logo img {
    filter: none;
}

/* Modern Stats Section */
.premium-stats-modern {
    background: #ffffff !important;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

.stats-content-wrapper {
    padding: 100px 5% !important;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.modern-stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle outer border */
}

/* Minimalist Stat Card */
.stat-card {
    padding: 20px !important;
    position: relative;
    border: none !important;
    background: transparent !important;
    transition: all 0.4s ease !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Internal Dividers */
.stat-card:nth-child(1),
.stat-card:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.stat-card:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.stat-card:hover {
    background: rgba(212, 175, 55, 0.01) !important;
}

.stat-card__header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
}

/* Simple Icon - No box */
.stat-card__icon-box {
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 10px;
}

.stat-card__number-wrapper {
    display: flex !important;
    align-items: baseline !important;
    gap: 2px !important;
}

.stat-card__number {
    font-size: 36px !important;
    font-weight: 400 !important;
    /* Elegant light weight for premium feel */
    color: #041e3a !important;
    line-height: 1 !important;
    letter-spacing: -3px !important;
    font-family: var(--Freshflow-font-two, 'Inter', sans-serif) !important;
}

.stat-card__suffix {
    font-size: 24px !important;
    font-weight: 400 !important;
    color: #d4af37 !important;
    margin-left: 5px;
}

.stat-card__title {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #041e3a !important;
    letter-spacing: 4px !important;
    /* Wide tracking for high-end look */
    margin-bottom: 5px !important;
    display: block !important;
}

.stat-card__text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #000 !important;
    margin: 0 !important;
    font-weight: 400;
    max-width: 250px;
}

/* Premium Image Column */
.premium-stats__image-box {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

.premium-stats__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Overrides */
@media (max-width: 1399px) {
    .stat-card__number {
        font-size: 36px !important;
    }
}

@media (max-width: 991px) {
    .stat-card__header {
        gap: 0px !important;
        margin-bottom: 5px !important;
    }

    .stat-card__number {
        font-size: 26px !important;
    }

    .stat-card__suffix {
        font-size: 16px !important;
    }

    .stat-card__title {
        font-size: 10px !important;
    }

    .stat-card__text {
        font-size: 10px !important;
    }

    .stat-card__icon-box {
        font-size: 26px !important;
    }

    /* .stat-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .stat-card:last-child {
        border-bottom: none !important;
    }

    .premium-stats__image-box {
        min-height: 400px;
    } */
}

@media (max-width: 767px) {
    .stats-content-wrapper {
        padding: 60px 20px !important;
    }

    .stat-card__number {
        font-size: 30px !important;
    }

    .stat-card {
        padding: 20px !important;
    }
}

/* ==========================================================================
   MODERN ABOUT SECTION (INTERLOCKING)
   ========================================================================== */
.modern-about {
    background: #efebeb !important;
    overflow: hidden;
    padding: 0 !important;
}

.modern-about__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.modern-about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modern-about__content {
    padding: 100px 60px !important;
}

.modern-about__tagline {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #d4af37 !important;
    /* Gold */
    letter-spacing: 2px !important;
    margin-bottom: 15px !important;
    display: inline-block !important;
}


.modern-about__heading {
    color: #153456;
    font-size: 36px;
    line-height: 47px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.03em;
    margin-top: 10px;
}

.modern-about__description {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #041e3a !important;
    margin-bottom: 35px !important;
    font-weight: 500 !important;
}

.modern-about__list {
    margin: 0 !important;
    padding: 0 !important;
}

.modern-about__list li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #041e3a !important;
    margin-bottom: 15px !important;
}

.modern-about__list li i {
    color: #d4af37 !important;
    /* Gold */
    font-size: 20px !important;
}

.modern-about .thm-btn {
    padding: 15px 35px !important;
    font-weight: 700 !important;
    border-radius: 5px !important;
}

@media (max-width: 1200px) {
    .modern-about__content {
        padding: 60px 40px !important;
    }

    .modern-about__heading {
        font-size: 38px !important;
    }
}

@media (max-width: 991px) {
    .modern-about__image-wrapper {
        min-height: 400px;
    }

    .modern-about__content {
        padding: 40px 40px !important;
    }

    .modern-about__heading {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .modern-about__content {
        padding: 30px 40px !important;
    }

    .modern-about__heading {
        font-size: 28px !important;
    }

    .modern-about__description {
        font-size: 15px !important;
        margin-bottom: 25px !important;
    }
}

/* ==========================================================================
   MOBILE MENU PREMIUM ENHANCEMENTS
   ========================================================================== */
.mobile-nav__content {
    background: linear-gradient(180deg, #041e3a 0%, #062c54 100%) !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-nav__close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav__close:hover {
    background: #d4af37;
    color: #041e3a;
    transform: rotate(90deg);
}

.mobile-nav__content .main-menu__list>li>a {
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
}

.mobile-nav__content .main-menu__list>li>a:hover,
.mobile-nav__content .main-menu__list>li.current>a {
    background: rgba(212, 175, 55, 0.1) !important;
    color: #d4af37 !important;
    padding-left: 25px !important;
}

/* Submenu Enhancements */
.mobile-nav__content .main-menu__list>li>ul {
    background: rgba(0, 0, 0, 0.2) !important;
    margin: 0 !important;
    padding: 10px 0 !important;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
    padding: 12px 30px !important;
    font-size: 14px !important;
    opacity: 0.8;
}

.mobile-nav__content .main-menu__list>li>ul>li>a:hover {
    opacity: 1;
    color: #d4af37 !important;
    background: transparent !important;
}

/* Contact Info in Mobile Menu */
.mobile-nav__contact li {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav__contact li i {
    background-color: #d4af37 !important;
    color: #041e3a !important;
}

.mobile-nav__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav__social a:hover {
    background: #d4af37;
    color: #041e3a !important;
    transform: translateY(-3px);
}

/* Hamburger Toggler Improvement */
.mobile-nav__toggler {
    color: #ffffff !important;
    font-size: 24px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sticky Navbar Hammer Menu Toggler */
.anchor-sticky-active .mobile-nav__toggler {
    color: #041e3a !important;
    text-shadow: none;
}

/* ==========================================================================
   Logo Enhancements (User Request: Bigger and Shifted Left)
   ========================================================================== */
.main-menu__logo img {
    max-height: 150px;
    /* Increased for premium feel */
    width: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.main-menu__left {
    /* margin-left: -40px; */
    /* Shift to the left as requested */
    transition: all 0.4s ease;
}

/* Transition for sticky header */
.stricky-fixed .main-menu__logo img {
    max-height: 70px;
}

.main-menu .main-menu__wrapper .container-fluid {
    padding-left: 120px !important;
    padding-right: 180px !important;
}



@media (max-width: 1199px) {

    .main-menu .main-menu__wrapper .container-fluid {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }


    .main-menu__logo img {
        max-height: 120px;
    }

    .mobile-nav__content .main-menu__list>li>ul>li>a {
        padding: 12px 10px !important;
    }
}

@media (max-width: 767px) {
    .main-menu__logo img {
        max-height: 60px;
    }

    .main-menu .main-menu__wrapper .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}


.premium-feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.premium-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--thm-primary);
}

.premium-feature-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(var(--thm-primary-rgb), 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.premium-feature-card:hover .icon-box {
    background: var(--thm-primary);
}

.premium-feature-card .icon-box img {
    width: 35px;
    transition: all 0.3s ease;
}

/* .premium-feature-card:hover .icon-box img {
                                    filter: brightness(0) invert(1);
                                } */
.premium-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--thm-black);
}

.premium-feature-card p {
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    color: #000;
}

/* -----------------------------------------------
   CTA Premium Section
----------------------------------------------- */
.cta-premium {
    overflow: hidden;
}

/* Left Image */
.cta-premium__image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
}

.cta-premium__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-premium__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 30, 58, 0.35) 0%, rgba(4, 30, 58, 0.1) 100%);
}

/* Right Form Panel */
.cta-premium__form-wrap {
    padding: 70px 60px;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*border-left: 4px solid var(--anchor-primary-gold, #C4A24C);*/
}

/* Header */
.cta-premium__tagline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--anchor-primary-gold, #C4A24C);
    margin-bottom: 14px;
}

.cta-premium__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--Freshflow-black, #153456);
    margin-bottom: 12px;
}

.cta-premium__title span {
    color: var(--anchor-primary-gold, #C4A24C);
}

.cta-premium__subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Inputs */
.cta-premium__input {
    width: 100%;
    padding: 14px 18px;
    background: #f8f8f8;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.cta-premium__input:focus {
    border-color: var(--anchor-primary-gold, #C4A24C);
    background: #fffdf5;
    box-shadow: 0 0 0 3px rgba(196, 162, 76, 0.12);
}

.cta-premium__textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
.cta-premium__submit {
    margin-top: 4px;
}

/* Contact Items */
.cta-premium__contacts {
    margin-top: 36px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid #eee;
}

.cta-premium__contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    background: #f8f8f8;
    border-radius: 12px;
    border: 1.5px solid #eee;
    transition: all 0.3s ease;
}

.cta-premium__contact-item:hover {
    border-color: var(--anchor-primary-gold, #C4A24C);
    background: #fffdf5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 162, 76, 0.12);
}

.cta-premium__contact-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--anchor-primary-gold, #C4A24C), #D4AF37);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 20px;
}

.cta-premium__contact-item p {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 0 3px;
}

.cta-premium__contact-item strong {
    font-size: 14px;
    color: var(--Freshflow-black, #153456);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-premium__image-wrap {
        min-height: 350px;
    }

    .cta-premium__form-wrap {
        padding: 50px 30px;
        border-left: none;
        border-top: 4px solid var(--anchor-primary-gold, #C4A24C);
    }

    .cta-premium__title {
        font-size: 28px;
    }

    .cta-premium__contacts {
        flex-direction: column;
    }
}

/* ==========================================================================
   WHY CHOOSE FOUR (ABOUT PAGE) RESPONSIVE FIXES
   ========================================================================== */
@media (max-width: 1500px) {
    .why-choose-four__left {
        margin-left: -50px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 1199px) {
    .why-choose-four {
        padding: 100px 0 !important;
        background-color: #041e3a;
    }

    .why-choose-four__bg {
        width: 100% !important;
        opacity: 0.15;
    }

    .why-choose-four__left {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 50px;
    }

    .why-choose-four__right {
        padding-left: 15px !important;
        padding-top: 0 !important;
        margin-left: 0 !important;
        text-align: center;
    }

    .why-choose-four__right .section-title {
        text-align: center !important;
    }

    .why-choose-four__right .section-title__tagline-box {
        justify-content: center !important;
    }

    .why-choose-four__img-box {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .why-choose-four__img {
        max-width: 45%;
        flex: 1 1 45%;
    }

    .why-choose-four__img img {
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 767px) {
    .why-choose-four {
        padding: 60px 0 !important;
    }

    .why-choose-four__img {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .why-choose-four__img--two {
        margin-top: -20px;
    }

    .section-title__title {
        font-size: 28px !important;
    }
}

/* ==========================================================================
   ABOUT MELKY GRID (STABLE LAYOUT)
   ========================================================================== */
.about-melky-grid {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.about-melky-grid {
    position: relative;
    /* padding: 80px 0; */
    background-color: #fff;
    overflow: hidden;
}

.about-melky-grid__images {
    padding: 20px 60px;
    /* Padding for images to stay off the left edge */
    height: 100%;
}

.about_melky {
    color: var(--Freshflow-extra) !important;
}

.about-melky-grid__img-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-melky-grid__img-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-melky-grid__img-item:hover img {
    transform: scale(1.05);
}

.about-melky-grid__content {
    background-color: #041e3a;
    padding: 80px 60px;
    border-radius: 0;
    /* Flush right, no radius as requested */
    height: auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Background pattern for blue box */
.about-melky-grid__content::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/backgrounds/why-choose-four-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
    background-size: cover;
}

.about-melky-grid__text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 1199px) {
    .about-melky-grid__images {
        padding: 40px 15px;
    }

    .about-melky-grid__content {
        padding: 60px 30px;
        min-height: auto;
    }
}

@media (max-width: 1024px) {
    .about_page_sec_1 {
        display: none;
    }
}

@media (max-width: 991px) {
    .about-melky-grid__content {
        text-align: center;
    }

    .about-melky-grid__content .section-title {
        text-align: center !important;
    }

    .about-melky-grid__content .section-title__tagline-box {
        justify-content: center !important;
    }
}

@media (max-width: 767px) {
    .about-melky-grid__images {
        padding: 30px 15px;
    }

    .about-melky-grid__content {
        padding: 40px 20px;
    }
}