/* attractions */

:root {
    --text-light: rgba(255, 255, 255, 0.6);
    --text-lighter: rgba(255, 255, 255, 0.9);
    --spacing-s: 8px;
    --spacing-m: 16px;
    --spacing-l: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 64px;
}

.hero-section .head-sec {
    margin-bottom: var(--m30);
}

.hero-section {
    align-items: flex-start;
    display: flex;
    min-height: 100%;
    justify-content: center;
    background: var(--white-color);
}

.hero-section .card-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: var(--spacing-l);
    grid-row-gap: var(--spacing-l);
    max-width: var(--width-container);
    width: 100%;
}

@media(min-width: 540px) {
    .hero-section .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(min-width: 960px) {
    .hero-section .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-section .card {
    list-style: none;
    position: relative;
    border: none;
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
}

.hero-section .card:before {
    content: '';
    display: block;
    padding-bottom: 150%;
    width: 100%;
}

.hero-section .card__background {
    background-size: cover;
    background-position: center;
    border-radius: var(--spacing-l);
    bottom: 0;
    filter: brightness(0.75) saturate(1.2) contrast(0.85);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center;
    transform: scale(1) translateZ(0);
    transition:
        filter 200ms linear,
        transform 200ms linear;
}

.hero-section .card:hover .card__background {
    transform: scale(1.05) translateZ(0);
}

.hero-section .card-grid:hover>.card:not(:hover) .card__background {
    filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
}

.hero-section .card__content {
    left: 0;
    padding: var(--spacing-l);
    position: absolute;
    top: 0;
}

.hero-section .card__category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-s);
    text-transform: uppercase;
}

.hero-section .card__heading {
    color: var(--text-lighter);
    font-size: 1.9rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
    word-spacing: 0vw;
    text-transform: capitalize;
}

.hero-section .hero-btn a.main-btn {
    display: block;
    width: 150px;
    text-align: center;
    margin: auto;
}

.hero-btn {
    text-align: center;
    margin-top: 30px;
}

/* ========================================---------------------=============================== */


.opm-welcome-section {
    position: relative;
    background-color: rgb(15, 55, 98);
    overflow: hidden;
}

/* Subtle palm background */
.opm-welcome-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/plambg.webp');
    background-size: cover;
    opacity: 0.04;
    background-repeat: no-repeat;
}

/* Inner spacing */
.opm-welcome-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}

/* Vertical alignment WITHOUT bootstrap flex */
.opm-welcome-section .row {
    display: flex;
    align-items: center;
}

/* LEFT SIDE */
.opm-welcome-section .opm-left-content h2 {
    font-size: 37px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1.2;
    color: var(--white-color);
}

.opm-welcome-section .opm-right-content p {
    color: var(--white-color);
    font-size: 18px;
}

.opm-welcome-section .opm-left-content h5 {
    font-size: 14px;
    letter-spacing: 4px;
    margin-top: 20px;
    color: #333;
}


/* =========================---------------------=================================== */
.opulent-why-choose {
    position: relative;
    background: url("../images/lef.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.opulent-why-choose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(255, 255, 255, 0.8);

    z-index: 1;
}

.opulent-why-choose>* {
    position: relative;
    z-index: 2;
}

.opulent-why-choose .main-title {
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    color: #000;
}

.opulent-why-choose .main-title span {
    color: #000;
    font-weight: 700;
}

/* Ratings Card Styling */
.opulent-why-choose .ratings-card {
    background-color: #f8f8f8;
    padding: 30px;
    text-align: center;
}

.opulent-why-choose .ratings-header {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-align: left;
}

.opulent-why-choose .ratings-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.opulent-why-choose .rating-item {
    padding: 0;
    width: 33%;
}

.opulent-why-choose .rating-item.border-left {
    border-left: 1px solid #ddd;
}

.opulent-why-choose .rating-item img {
    margin-bottom: 0px;
    width: 140px;
}

.opulent-why-choose .airbnb-icon {
    font-size: 45px;
    color: #FF5A5F;
    margin-bottom: 10px;
}

.opulent-why-choose .vrbo-logo {
    font-size: 34px;
    font-weight: bold;
    color: #3d4a96;
    font-style: italic;
}

.opulent-why-choose .stars {
    color: #ffb400;
    font-size: 22px;
    margin: 5px 0;
}

.opulent-why-choose .rating-text {
    font-size: 13px;
    font-weight: 800;
    color: #000;
}

/* Features Grid Styling */
.opulent-why-choose .features-container {
    margin-top: 60px;
}

.opulent-why-choose .feature-box {
    display: flex;
    margin-bottom: 40px;
}

.opulent-why-choose .icon-side {
    min-width: 100px;
    font-size: 62px;
    color: var(--btn-hover);
    /* Accent Blue */
}

.opulent-why-choose .content-side h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #333;
}

.opulent-why-choose .content-side h4 strong {
    font-weight: 800;
    display: block;
}

.opulent-why-choose .content-side p {
    font-size: 15px;
    line-height: 1.6;
}

.opulent-why-choose .center-feature {
    margin-top: 20px;
}

/* ==================================-----------------------------------=============================== */

.legacy-luxury-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/gg.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.legacy-luxury-section .legacy-title {
    font-size: 53px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
    margin: 0;
    color: var(--white-color);
    margin: auto 0;
}

.legacy-luxury-section .legacy-content-wrapper {
    padding-left: 50px;
}

.legacy-luxury-section .legacy-description {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.legacy-luxury-section .legacy-btn {
    display: inline-block;
    background-color: var(--btn-color);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    border: none;
}

.legacy-luxury-section .legacy-btn:hover {
    background-color: var(--btn-color);
    color: #ffffff;
}

/* ======================================---------------------------================================ */

.income-analysis-section {
    background-color: #ffffff;
    color: #333;
}

.income-analysis-section .main-header h2 {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #000;
}

.income-analysis-section .info-content h3 {
    font-size: 23px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 25px;
}

.income-analysis-section .promo-card {
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

.income-analysis-section .promo-card img {
    width: 100%;
    height: auto;
    display: block;
}

.income-analysis-section .description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.income-analysis-section .form-wrapper {
    padding-left: 40px;
    border-left: 1px solid #d9d6d6;
}

.income-analysis-section .required-note {
    font-size: 12px;
    margin-bottom: 20px;
}

.income-analysis-section .field-group {
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 0;
}

.income-analysis-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.income-analysis-section .full-label {
    padding-left: 0;
}

.income-analysis-section .custom-input,
.income-analysis-section .custom-textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #cccccc;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s;
}

.income-analysis-section .custom-textarea {
    border-radius: 15px;
}

.income-analysis-section .custom-input:focus {
    border-color: #00acee;
}

.income-analysis-section .sub-label {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 4px;
    padding-left: 15px;
}

.income-analysis-section .btn-container {
    margin-top: 30px;
}

.income-analysis-section .submit-btn {
    background-color: var(--btn-color);
    color: #ffffff;
    border: none;
    padding: 12px 60px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.income-analysis-section .submit-btn:hover {
    background-color: var(--btn-hover);
}

/* ==================================-------------------====================================== */

.custom-analysis-section {
    background-color: #ffffff;
    padding-bottom: 10px;
}

.custom-analysis-section .analysis-header {
    text-align: center;
    margin-bottom: 60px;
}

.custom-analysis-section .analysis-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.custom-analysis-section .analysis-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-analysis-section .analysis-feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 30px;
}

.custom-analysis-section .analysis-feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 1;
    color: #333;
}

.custom-analysis-section .analysis-feature-list h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.custom-analysis-section .analysis-feature-list p {
    font-size: 15px;
    margin: 0;
}

.custom-analysis-section .analysis-visual-container {
    width: 100%;
    padding-bottom: 40px;
}

.custom-analysis-section .doc-preview img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.custom-analysis-section .summary-item {
    display: block;
    margin-bottom: 18px;
}

.custom-analysis-section .summary-item:last-child {
    margin-bottom: 0;
}

.custom-analysis-section .summary-item i {
    display: inline-block;
    width: 40px;
    font-size: 24px;
    color: #00acee;
    vertical-align: middle;
}

.custom-analysis-section .summary-item span {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

/* ==========================-------------------------------=================================== */
.market-insights-section {
    background-color: #ffffff;
}

.market-insights-section .insights-top-content {
    margin-bottom: 50px;
}

.market-insights-section .section-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #000;
}

.market-insights-section .section-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    max-width: 100%;
}

.market-insights-section .insight-card {
    background: #fff;
    margin-bottom: 40px;
}

.market-insights-section .image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
}

.market-insights-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-insights-section .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--btn-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.market-insights-section .image-overlay span {
    border: 1px solid var(--white-color);
    padding: 15px;
    color: var(--white-color);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.market-insights-section .card-body {
    padding: 0;
}

.market-insights-section .card-body h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    min-height: 75px;
}

.market-insights-section .card-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.market-insights-section .read-more-btn {
    display: inline-block;
    background-color: var(--btn-color);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.market-insights-section .read-more-btn:hover {
    background-color: var(--btn-hover);
    color: #ffffff;
}

/* Pricing Header */
.services-pricing-header {
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

/* .services-pricing-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
} */

.services-pricing-header .header-content {
    position: relative;
    z-index: 2;
}

.services-pricing-header h2 {
    font-size: 36px;
    font-weight: 800;
    /* letter-spacing: 5px; */
    margin-bottom: 10px;
}

.services-pricing-header p {
    font-size: 20px;
    font-weight: 900;
}

/* Pricing Detail */
.services-pricing-detail {
    padding: 100px 0;
    background: #fff;
}

.services-pricing-detail .pricing-subtitle {
    color: rgb(155, 50, 21);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    opacity: 1;
}

.services-pricing-detail .pricing-description {
    font-size: 15px;
    margin-bottom: 50px;
    color: #000000;
    line-height: 1.5;
    text-transform: capitalize !important;
    font-weight: 600;
}

.services-pricing-detail .grid-item h4 {
    color: #9b3215;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 1;
    text-transform: lowercase !important;
}

.services-pricing-detail .grid-item ol {
    padding-left: 20px;
}

.services-pricing-detail .grid-item li {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #000000;
    list-style: auto;
    font-weight: 600;
}

.services-pricing-detail .pricing-image-box {
    padding: 20px;
}

.services-pricing-detail .pricing-image-box img {

    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);

}

.services-pricing-detail .pricing-image-box img:hover {
    transform: translateY(-5px);
}

/* Contact CTA */
.services-contact-cta {
    background-color: #111;
    background-size: cover;
    background-position: center;
    padding: 130px 0;
    position: relative;
}

.services-contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 80%);
}

.services-contact-cta .container-fluid {
    position: relative;
    z-index: 2;
}

.services-contact-cta .cta-title {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    /* letter-spacing: 1px; */
}


.services-contact-cta .cta-subtitle {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    /* max-width: 90%; */
    font-weight: 500;
    text-transform: capitalize !important;
}

.services-contact-cta .cta-btn {
    background: #fff;
    color: #000;
    padding: 13px 29px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-contact-cta .cta-btn:hover {
    text-decoration: underline;
}

.services-contact-cta .cta-btn i {
    margin-right: 10px;
}