@import url("./custom.css");

h2 {
    font-size: 48px;
    font-weight: 600;
}

h5 {
    font-size: 16px;
    font-weight: 600;
}

.section-padding {
    padding: 60px 0;
}

.sticky-header {
    width: 100%;
    z-index: 2100;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}



.sticky-header.sticky,
.sticky-header.sticky .site-header {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--black) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    width: 100%;
}

.site-header .navbar {
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: all 0.3s ease;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.site-header,
.site-header .container-fluid {
    width: 100%;
    transition: all 0.3s ease;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.home .site-header {
    position: absolute;
    top: 0 !important;
    left: 0;
    z-index: 2105;
    margin: 0 !important;
}

body:not(.home) .site-header {
    position: relative;
    background: var(--black) !important;
    z-index: 2105;
}

.header-menu-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-logo-right {
    flex: 0 0 auto;
    text-align: right;
}

.header-logo-right img {
    max-height: 80px;
    width: auto;
}

.desktop-only {
    display: flex;
}

.navbar {
    background-color: transparent;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li a {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar-nav li.current-menu-item>a {
    color: var(--legacy-gold) !important;
}

.home .site-header .navbar-nav li a {
    color: var(--white);
}

.home .site-header .navbar-nav li a:hover {
    color: var(--legacy-gold);
}

.sticky-header.sticky .navbar-nav li a {
    color: var(--white);
}

.navbar-nav li a:hover {
    color: var(--legacy-gold);
}

.navbar-nav li {
    position: relative;
}

/* Dropdown Menu Styles */
.navbar-nav .sub-menu {
    position: absolute;
    top: 45px;
    left: 0;
    min-width: 200px;
    background-color: var(--black);
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-bottom: 2px solid var(--legacy-gold);
}

.navbar-nav li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .sub-menu li {
    margin: 0;
}

.navbar-nav .sub-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 16px;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.navbar-nav .sub-menu li a:hover {
    color: var(--legacy-gold) !important;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Dropdown Chevron */
.navbar-nav li.menu-item-has-children>a {
    position: relative;
    padding-right: 20px;
}

.navbar-nav li.menu-item-has-children>a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.3s ease;
}

.navbar-nav li.menu-item-has-children:hover>a::after {
    transform: translateY(-40%) rotate(225deg);
}

.navbar-toggler span {
    background-color: var(--legacy-gold);
}

#mobile-menu-button {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2001;
    position: relative;
}

#mobile-menu-button span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--legacy-gold);
    transition: all 0.3s ease;
}

#mobile-menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

#mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Full-screen Navigation Overlay */
.main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    z-index: 2000;
    transition: left 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
}

.main-navigation.active {
    left: 0;
}

.mobile-menu-container {
    width: 100%;
    padding: 40px;
    text-align: center;
}

.mobile-navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navbar-nav li {
    margin: 15px 0;
}

.mobile-navbar-nav li a {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.mobile-navbar-nav li.current-menu-item>a {
    color: var(--legacy-gold) !important;
}

.mobile-navbar-nav li a:hover {
    color: var(--legacy-gold);
}

/* Mobile Dropdown Menu Styles - Handled below via toggle */

.mobile-navbar-nav .sub-menu li {
    margin: 10px 0;
}

.mobile-navbar-nav .sub-menu li a {
    font-size: 16px;
    padding: 10px;
}

/* Mobile Dropdown Chevron */
.mobile-navbar-nav li.menu-item-has-children {
    position: relative;
    width: 100%;
}

.mobile-navbar-nav li.menu-item-has-children>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Remove original after chevron from mobile a tags */
.mobile-navbar-nav li.menu-item-has-children>a::after {
    display: none !important;
}

.sub-menu-toggle {
    position: absolute;
    right: 0;
    top: -10px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.sub-menu-toggle::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: -4px;
}

.mobile-navbar-nav li.menu-item-has-children.open>.sub-menu-toggle::after {
    transform: rotate(-135deg);
    margin-top: 5px;
}

.mobile-navbar-nav .sub-menu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.03);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: static;
    /* Override desktop absolute */
    transform: none;
    /* Override desktop transform */
}

.mobile-navbar-nav li.menu-item-has-children.open>.sub-menu {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    padding: 10px 0;
}

.mobile-navbar-nav .sub-menu li a {
    padding: 10px 20px;
    font-size: 15px;
    text-align: center;
}

body.menu-open {
    overflow: hidden;
}

/* --- Home Page Banner --- */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.45); */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1,
.hero-content .hero-main-title {
    font-size: 68px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: var(--white);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-wrapper {
    display: inline-block;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    padding: 8px 0;
    margin-bottom: 30px;
}

.hero-content p.hero-subtitle {
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    padding: 0 5px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.hero-content p:not(.hero-subtitle) {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-search-form {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    margin-top: 30px;
}

.search-box {
    display: flex;
    background: #fff;
    border: 3px solid #EBC771;
    border-radius: 8px;
    overflow: hidden;
    align-items: stretch;
}

.select-wrapper {
    position: relative;
    padding: 0 10px;
    border-right: 2px solid #D1D1D1;
    display: flex;
    align-items: center;
}

.select-wrapper::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    position: absolute;
    right: 15px;
    pointer-events: none;
}

.select-wrapper select {
    border: none;
    padding: 15px 30px 15px 15px;
    font-size: 16px;
    color: #333;
    appearance: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    font-weight: 500;
}

.select-wrapper select:focus {
    box-shadow: none !important;
}

.search-box input {
    border: none;
    padding: 15px 25px;
    flex: 1;
    font-size: 16px;
    outline: none;
    color: #333;
}

.search-box input:focus {
    box-shadow: none !important;
}

.search-box input::placeholder {
    color: #999;
}

.search-submit-btn {
    background: #000;
    border: none;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 0 8px 8px 0;
}

.search-submit-btn i {
    color: var(--legacy-gold);
    font-size: 25px;
    margin-top: 3px;
}

.search-submit-btn:hover,
.search-submit-btn:focus-visible,
.search-submit-btn:active {
    background: var(--legacy-gold);
}

.search-submit-btn:hover i {
    color: var(--black);
}



/* --- Footer --- */

.site-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
    font-size: 16px;
}

.Footer h5 {
    color: var(--legacy-gold);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
}

.working-hours-content {
    line-height: 1.8;
}

.working-hours-content p {
    margin-bottom: 5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--legacy-gold);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.footer-menu li a:hover {
    color: var(--legacy-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 24px;
}

.social-icon {
    display: inline-flex;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon svg {
    width: 32px;
    height: 32px;
    transition: filter 0.3s ease;
}

.social-icon:hover svg {
    filter: brightness(1.2);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    width: 25px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--legacy-gold);
}

.contact-text {
    color: var(--white);
    text-decoration: none;
    line-height: 2;
}

a.contact-text:hover {
    color: var(--legacy-gold);
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
    font-size: 14px;
}

.footer-bottom .footer-dev-credit {
    color: rgba(255, 255, 255);
}

.footer-bottom a,
.footer-bottom .footer-dev-credit a:link,
.footer-bottom .footer-dev-credit a:visited {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.footer-bottom .footer-dev-credit a:hover {
    color: var(--legacy-gold) !important;
    text-decoration: none !important;
}

/* --- About --- */

.about {
    background-color: #E7D27D;
    color: var(--black);
}

.about-count-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-count-name {
    margin-top: 5px;
    font-weight: 600;
    margin-bottom: 0;
}

.about-count {
    font-size: 42px;
    font-weight: 600;
}

.about-divider {
    border-bottom: 2px solid var(--black);
}

/* .about-content-container,
.about-image {
    padding: 60px 0 0;
} */

.about-content-container p {
    margin-bottom: 40px;
}

.view-more {
    color: var(--legacy-gold);
    padding: 11px 20px;
    border: 2px solid var(--black);
    border-radius: 6px;
    font-weight: 600;
    display: block;
    text-align: center;
    width: fit-content;
    transition: background-color 0.3s ease;
    background-color: var(--black);
}

.view-more:hover {
    color: var(--black);
    background-color: var(--legacy-gold);
}

.view-more-dark {
    color: var(--legacy-gold);
    padding: 15px 25px;
    border: 2px solid var(--legacy-gold);
    border-radius: 6px;
    font-weight: 600;
    display: block;
    text-align: center;
    width: fit-content;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

.view-more-dark:hover {
    color: var(--black);
    background-color: var(--legacy-gold);
}

/* --- Services --- */

.services {
    background-color: var(--legacy-gold);
    background-blend-mode: multiply;
    color: var(--black);
}

.service-container h5 {
    text-align: center;
}

.service-container h2 {
    text-align: center;
}

.service-container p {
    margin-bottom: 30px;
    text-align: center;
}

.service-card {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
    min-height: 280px;
}

.service-card:hover {
    background-color: #000;
    color: var(--legacy-gold);
}

.service-card svg {
    width: 80px;
}

.service-card svg path {
    fill: currentColor;
}

.service-card:hover svg path {
    fill: var(--legacy-gold);
}

.service-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.service-card p {
    text-align: center;
}

.services .view-more {
    margin: 0 auto;
}

/* --- Property --- */

.property {
    background-color: var(--black);
}

.property h5 {
    color: var(--legacy-gold);
    text-align: center;
}

.property h2,
.property p {
    color: var(--white);
    text-align: center;
}

.property>.container>p,
.property>.container>div>p:not(.property-address):not(.property-category) {
    color: var(--white);
    text-align: center;
    width: 60%;
    margin: 0 auto 30px;
}

.nav-pills {
    border: 1px solid var(--legacy-gold);
    width: fit-content;
    margin: 0 auto;
    border-radius: 6px;
}

.nav-pills .nav-link {
    color: var(--legacy-gold);
    border-radius: 0;
    padding: 15px 45px;
    font-weight: 600;
}

.nav-pills .nav-link.active {
    background-color: var(--legacy-gold);
    color: #000;
}

/* --- Property Card --- */

.property-card {
    background-color: var(--white);
    margin: 5px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.property-btns,
.property-price a,
.property-card-img-wrap {
    position: relative;
    z-index: 2;
}

.property-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.property-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.property-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    color: var(--black);
    background-color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.property-card-body {
    padding: 16px;
    color: var(--black);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-category {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    display: block;
    margin-bottom: 4px;
}

.property-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.2;
}

.property-title {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 18px;
}

.property-address {
    display: flex !important;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
    color: #444 !important;
    margin: 0 0 12px 0 !important;
    width: 100% !important;
    text-align: left !important;
    line-height: 1.4;
}

.property-address svg {
    width: 15px;
}

.property-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
}

.property-feat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.property-feat-item svg {
    width: 20px;
}

.property-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}

.property-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    flex: 1 1 auto;
    min-width: 0;
    transition: opacity 0.2s ease;
}

.property-phone {
    background-color: var(--black);
    color: var(--legacy-gold) !important;
    border: 1px solid var(--black);
}

.property-email {
    color: #0048A5 !important;
    border: 1px solid #0048A5;
    background: transparent;
}

.property-whatsapp {
    color: #3C8802 !important;
    border: 1px solid #3C8802;
    background: transparent;
}

/* --- Testimonial --- */

.testimonial {
    position: relative;
    background-image: url('../image/testimonial-bg.png');
    background-color: rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    overflow: hidden;
}

.testimonial-header {
    margin-bottom: 40px;
}

.testimonial-header h5 {
    color: var(--legacy-gold);
    text-align: center;
}

.testimonial-header h2 {
    color: var(--white);
    text-align: center;
}

.testimonial-header p {
    color: var(--white);
    text-align: center;
    width: 60%;
    margin: 0 auto 10px;
}

.testimonial-swiper {
    padding-bottom: 50px !important;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    height: 100%;
    min-height: 260px;
    box-sizing: border-box;
    border-bottom: 5px solid var(--legacy-gold);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars .star {
    font-size: 22px;
    line-height: 1;
}

.testimonial-stars .star.filled {
    color: var(--legacy-gold);
}

.testimonial-stars .star.empty {
    color: var(--legacy-gold);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    flex: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--legacy-gold);
}

.testimonial-avatar-name span {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author-info p {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 0;
}

.testimonial-author-info span {
    font-size: 14px;
    color: #707070;
}

.testimonial-pagination {
    margin-top: 20px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--legacy-gold);
    width: 28px;
    border-radius: 5px;
    transition: width 0.3s ease;
}

/* --- Blog --- */

.blog {
    background-color: var(--legacy-gold);
}

.blog-header {
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h5 {
    color: var(--black);
}

.blog-header h2 {
    color: var(--black);
}

.blog-header p {
    width: 60%;
    margin: 0 auto 16px;
    color: var(--black);
}

/* Blog Swiper */
.blog-swiper {
    padding-bottom: 50px !important;
}

/* Blog Pagination */
.blog-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.blog-pagination .swiper-pagination-bullet-active {
    background: var(--black);
    width: 28px;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.blog-card-img-wrap {
    overflow: hidden;
    max-height: 220px;
}

.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-card-category {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.blog-card-date {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--legacy-gold);
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    flex: 1;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card-read-more i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.blog-card-read-more:hover {
    color: var(--legacy-gold);
    gap: 8px;
}

.blog-card-read-more:hover i {
    transform: translateX(3px);
}

.blog-single-cat {
    display: inline-block;
    background: var(--legacy-gold);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-single-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.blog-single-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.blog-single-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.blog-single-content {
    background: #fff;
}

.blog-single-body {
    font-size: 17px;
    line-height: 1.85;
    color: #333;
}

.blog-single-body h2,
.blog-single-body h3,
.blog-single-body h4 {
    font-weight: 700;
    margin: 36px 0 16px;
    color: var(--black);
}

.blog-single-body p {
    margin-bottom: 22px;
}

.blog-single-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.blog-single-body ul,
.blog-single-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.blog-single-body li {
    margin-bottom: 8px;
}

/* Tags */
.blog-single-tags {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-single-tags span {
    font-weight: 600;
    color: #333;
}

.blog-tag {
    background: var(--legacy-gold);
    color: var(--black);
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.blog-tag:hover {
    background: var(--black);
    color: var(--legacy-gold);
}

/* Archive body */
.blog-archive-body {
    background: var(--legacy-gold);
}

.blog-arc-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-arc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
}

.blog-arc-img-link {
    display: block;
    overflow: hidden;
}

.blog-arc-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 14px 14px 0 0;
    transition: transform 0.4s ease;
}

.blog-arc-card:hover .blog-arc-img {
    transform: scale(1.04);
}

.blog-arc-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Author + date */
.blog-arc-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.blog-arc-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #777;
}

.blog-arc-meta-item i {
    font-size: 12px;
}

/* Title */
.blog-arc-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.blog-arc-title a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-arc-title a:hover {
    color: var(--legacy-gold);
}

.search-no-results .view-more {
    margin: 20px auto 0;
}

/* ─────────────────────────────────────────────
   Blog Single Page
───────────────────────────────────────────── */

.blog-single-section {
    background: var(--legacy-gold);
}

/* Featured image */
.blog-single-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.blog-single-feat-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* Author / date / category meta row */
.blog-single-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--black);
}

.blog-single-meta-row span,
.blog-single-meta-row a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-single-cat-link {
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
}

.blog-single-cat-link:hover {
    color: var(--black);
}

/* H1 title */
.blog-single-h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 24px;
}

/* Body content */
.blog-single-body {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}

.blog-single-body h2,
.blog-single-body h3,
.blog-single-body h4 {
    font-weight: 700;
    margin: 32px 0 14px;
    color: var(--black);
}

.blog-single-body p {
    margin-bottom: 20px;
    color: var(--black);
}

.blog-single-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 16px 0;
}

.blog-single-body ul,
.blog-single-body ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.blog-single-body li {
    margin-bottom: 7px;
}

/* Prev/Next nav */
.blog-post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid #e5e5e5;
    gap: 16px;
}

.blog-post-nav a {
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    max-width: 45%;
}

.blog-post-nav a:hover {
    color: var(--white);
}

/* ─────────────────────────────────────────────
   Blog Sidebar
───────────────────────────────────────────── */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-widget {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.blog-widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--legacy-gold);
}

/* Search widget */
.blog-search-wrap {
    display: flex;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.blog-search-input {
    flex: 1;
    border: none;
    padding: 11px 14px;
    font-size: 14px;
    outline: none;
    color: #333;
    background: transparent;
}

.blog-search-input::placeholder {
    color: #aaa;
}

.blog-search-btn {
    background: var(--black);
    color: var(--legacy-gold);
    border: none;
    padding: 0 18px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
}

.blog-search-btn:hover {
    background: var(--legacy-gold);
    color: var(--black);
}

/* Recent post item */
.blog-recent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: opacity 0.2s ease;
}

.blog-recent-item:last-child {
    border-bottom: none;
}

.blog-recent-item:hover {
    opacity: 0.75;
}

.blog-recent-thumb {
    width: 68px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-recent-thumb-placeholder {
    width: 68px;
    height: 58px;
    border-radius: 8px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 22px;
    flex-shrink: 0;
}

.blog-recent-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.blog-recent-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-recent-date {
    font-size: 12px;
    color: #999;
}

.blog-no-recent {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* --- Property Search Results Page --- */

.search-results-hero {
    background: var(--black);
    padding: 70px 0 40px;
    text-align: center;
}

.search-results-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.search-results-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.search-results-sub strong {
    color: var(--legacy-gold);
}

.search-refine-form .search-box {
    max-width: 680px;
    margin: 0 auto;
}

.search-results-body {
    background: var(--legacy-gold);
}

.search-results-count {
    font-size: 15px;
    color: #555;
    margin-bottom: 28px;
}

.search-no-results {
    padding: 60px 20px;
}

.search-no-results h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 18px 0 10px;
    color: var(--black);
}

.search-no-results p {
    color: var(--black);
    font-size: 16px;
}

/*   404 Page Styling  */

.error-404-section {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-404-title {
    font-size: 150px;
    font-weight: 900;
    color: var(--legacy-gold);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -5px;
}

.error-404-sub-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.error-404-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.error-404-search-form .search-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.error-404-search-form .form-select,
.error-404-search-form .form-control {
    border: none;
    height: 55px;
}

.page-banner {
    background-color: rgba(0, 0, 0, 0.45);
    background-image: url('../image/sub-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    background-blend-mode: multiply;
}

.inner-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 600;
}

.breadcrumb-wrap {
    font-size: 15px;
    color: var(--white);
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: var(--white);
    text-decoration: none;
}

/* --- Property Listing Page (For Sale / For Rent) --- */

.prop-listing-section {
    background: var(--legacy-gold);
}

/* Sidebar */
.prop-sidebar {
    background: var(--white);
    border-radius: 14px;
    padding: 8px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prop-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-left-color 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.prop-sidebar-item i {
    font-size: 14px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.prop-sidebar-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--black);
    border-left-color: var(--legacy-gold);
}

.prop-sidebar-item:hover i {
    opacity: 0.9;
}

.prop-sidebar-item.active {
    background: var(--black);
    color: var(--legacy-gold);
    font-weight: 600;
    border-left-color: var(--legacy-gold);
}

.prop-sidebar-item.active i {
    opacity: 1;
}

.prop-sidebar-count {
    margin-left: auto;
    background: rgba(0, 0, 0, 0.08);
    color: var(--black);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

.prop-sidebar-item.active .prop-sidebar-count {
    background: rgba(255, 255, 255, 0.18);
    color: var(--legacy-gold);
}

/* Divider between All Properties and category list */
.prop-sidebar-item:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 9px 9px 0 0;
    margin-bottom: 4px;
    padding-bottom: 16px;
}

.legal-container {
    background-color: var(--legacy-gold);
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════════
   PROPERTY SINGLE PAGE
═══════════════════════════════════════════════════════════ */

/* ── Hero section (gold bg) ─────────────────────────────── */
.prop-single-hero {
    background: var(--legacy-gold);
    padding: 40px 0;
    color: var(--black);
}

/* Top row: title group + contact buttons */
.prop-single-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    align-items: center;
}

.prop-single-badge {
    display: inline-block;
    background: var(--black);
    color: var(--legacy-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.prop-id {
    display: flex;
    gap: 20px;
}

.prop-single-address {
    font-size: 14px;
    color: var(--black);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Contact buttons */
.prop-single-contact-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.prop-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.prop-contact-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.prop-contact-wa {
    background: #25d366;
    color: #fff;
}

/* Price + feature strip */
.prop-single-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.prop-single-price {
    font-size: 26px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
}

.prop-single-price span {
    font-size: 26px;
    font-weight: 800;
}

.property-overview svg {
    width: 30px;
    margin-right: 16px;
}

/* Gallery grid */
.prop-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    border-radius: 14px;
    overflow: hidden;
}

.prop-gallery-main {
    cursor: pointer;
    overflow: hidden;
}

.prop-gallery-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.prop-gallery-main:hover .prop-gallery-main-img {
    transform: scale(1.03);
}

.prop-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.prop-gallery-thumb {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.prop-gallery-thumb:last-child {
    border-radius: 0 0 12px 0;
}

.prop-gallery-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.prop-gallery-thumb:hover .prop-gallery-thumb-img {
    transform: scale(1.05);
}

.prop-gallery-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    gap: 6px;
    pointer-events: none;
}

.prop-gallery-more-overlay i {
    font-size: 28px;
}

.prop-gallery-more-overlay span {
    font-size: 15px;
}

/* Lightbox */
.prop-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.prop-lightbox.active {
    display: flex;
}

.prop-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.prop-lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

.prop-lb-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
    object-fit: contain;
}

.prop-lb-close,
.prop-lb-prev,
.prop-lb-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.prop-lb-close:hover,
.prop-lb-prev:hover,
.prop-lb-next:hover {
    background: var(--legacy-gold);
    color: var(--black);
}

.prop-lb-close {
    top: -50px;
    right: 0;
}

.prop-lb-prev {
    left: -60px;
}

.prop-lb-next {
    right: -60px;
}

.prop-lb-counter {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    white-space: nowrap;
}

.property-title {
    text-align: left !important;
}

.prop-content-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.prop-description-section .prop-content-heading {
    border-bottom-color: var(--legacy-gold);
}

.prop-content-body {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}

.prop-content-body p {
    margin-bottom: 14px;
}

.prop-content-body ul,
.prop-content-body ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.prop-content-body li {
    margin-bottom: 6px;
}

.prop-content-section {
    margin-bottom: 30px;
}

.prop-content-section p,
.prop-content-section li,
.prop-content-section h5 {
    color: var(--black);
}

.prop-map iframe {
    height: 300px;
    width: 100%;
    border-radius: 8px;
}

.prop-content-container {
    background-color: #FFDB81;
    padding: 40px 0;
}

.prop-content-section {
    background: var(--legacy-gold);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.03);
}

.prop-content-section strong {
    display: block;
    font-size: 15px;
    color: var(--black);
    line-height: 1.4;
    font-weight: 600;
}

.prop-content-section span {
    color: var(--black);
    font-size: 14px;
}

.contact-form-wrapper {
    background-color: var(--black);
    padding: 20px 0;
    border-radius: 8px;
}

.contact-form-wrapper p,
.contact-form-wrapper a {
    color: var(--white);
    border-radius: 8px;
    margin-bottom: 0;
}

.contact-form-wrapper .view-more {
    margin: 0 auto;
}

.contact-form-wrapper .view-more:hover {
    border: 2px solid var(--legacy-gold);
}

.form-control:focus {
    box-shadow: none;
}

.form-control,
.form-select {
    padding: 12px;
}

.contact-page {
    background-color: var(--legacy-gold);
}

.contact-page h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}

.enquiry-title {
    padding-top: 20px;
    border-top: 2px solid var(--legacy-gold);
    margin-bottom: 15px !important;
}

.contact-page .contact-form-wrapper {
    color: var(--white);
    padding: 25px 20px 5px;
}

.contact-number {
    letter-spacing: 10%;
}

.contact-page .contact-form-wrapper h2 {
    padding: 0 0 10px 8px;
}

.contact-page .enquiry {
    background-color: var(--black);
    padding: 20px 30px 25px;
    border-radius: 8px;
}

.contact-page .enquiry p {
    display: flex;
}

.contact-map {
    margin: 50px 0 0;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
}

/* Contact Form 7 Custom Styling */
.wpcf7 select,
.wpcf7 .form-select {
    background-color: #343434;
    border: 1px solid #4e4e4e;
    color: #82600E;
    resize: none;
}

.wpcf7 select.has-value,
.wpcf7 .form-select.has-value {
    color: var(--legacy-gold) !important;
}

.wpcf7 .form-control,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    background-color: #343434;
    border: 1px solid #4e4e4e;
    color: var(--legacy-gold);
    resize: none;
}

.wpcf7 .form-control:focus,
.wpcf7 .form-select:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    background-color: #343434;
    border-color: #979797;
    color: var(--legacy-gold);
    box-shadow: none;
    outline: none;
}

/* Maintain background when typing/autocomplete */
.wpcf7 .form-control:-webkit-autofill,
.wpcf7 .form-select:-webkit-autofill,
.wpcf7 input:-webkit-autofill,
.wpcf7 textarea:-webkit-autofill,
.wpcf7 select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #343434 inset !important;
    -webkit-text-fill-color: var(--legacy-gold) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.wpcf7 .form-control::placeholder,
.wpcf7 .form-select::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 .form-select::placeholder {
    color: #82600E;
}

.under-construction {
    background-color: var(--legacy-gold);
    color: var(--black);
    padding: 120px 0;
}

.under-construction p,
.under-construction h4 {
    text-align: center;
}

.under-construction p i {
    font-size: 64px;
}

.under-construction h4 {
    font-size: 36px;
    margin: 15px 0;
}

/* Captcha Styling */
.captcha-display-container {
    background-color: #343434 !important;
    border: 1px solid #4e4e4e !important;
    justify-content: space-between;
}

.refresh-btn {
    background-color: transparent !important;
    border: none !important;
    color: var(--legacy-gold) !important;
    cursor: pointer;
    font-size: 18px;
    padding: 0 10px;
}

#captchaCanvas {
    background: #343434;
    border-radius: 4px;
}

#captchaInput::placeholder {
    color: #82600E;
}

#captchaInput:focus {
    background-color: #343434;
    border-color: #979797;
    color: var(--legacy-gold);
    box-shadow: none;
    outline: none;
}

#refreshCaptcha:hover {
    color: var(--legacy-gold) !important;
    transition: all 0.3s ease;
}

#captchaError {
    font-weight: 500;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent;
    color: #46b450;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 0.5em 2em;
    padding: 0.2em 1em;
}

.legal-container a {
    color: var(--black);
}

.legal-container a:hover {
    color: var(--white);
}
.wpcf7-not-valid-tip, #captchaError{
    color:#fff!important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    border:none!important;
}