/*
Theme Name: Belize Property Compass
Theme URI: http://belizeadvisor.local
Author: Belize Property Compass Team
Description: Custom WordPress theme for Belize Property Compass, featuring modern design and property management features.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: belize-property
*/

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000; /* Fallback color */
}

.hero-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: 1;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, transparent 100%), 
                linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 2;
}
.hero-main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 1rem;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-main-content {
        padding: 2rem;
        gap: 3rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.hero-logo {
    width: auto;
    height: 60px;
    filter: invert(1);
    opacity: 0.95;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    display: block;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-logo {
        height: 80px;
        margin-bottom: 3rem;
    }
}

.hero-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Page Template */
.page-main {
    min-height: calc(100vh - 200px);
}

.page-header {
    background: linear-gradient(to right bottom, #f3f4f6, #e5e7eb);
    position: relative;
}

.page-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, white);
}

.page-content {
    position: relative;
    z-index: 1;
}

.page-content .prose {
    color: #1f2937;
}

.page-content .prose h2 {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-content .prose h2 {
        font-size: 1.875rem;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

.page-content .prose p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.page-content .prose ul {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
    list-style-type: disc;
}

.page-content .prose li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Team Styles */
.team-section {
    background: #fff;
    padding: 6rem 0;
}

.team-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.1);
}

.member-info {
    text-align: center;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 1rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-bio {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 auto 1rem;
    max-width: 90%;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #6b7280;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #2563eb;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer Styles */
.site-footer {
    background-color: #111827;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: '';
    position: absolute;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.site-footer::before {
    top: -20rem;
    left: -20rem;
}

.site-footer::after {
    bottom: -20rem;
    right: -20rem;
}

.site-footer h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.site-footer .social-links {
    display: flex;
    gap: 1rem;
}

.site-footer .social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.site-footer .social-links a:hover {
    color: rgb(251, 191, 36);
    transform: translateY(-2px);
}

.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu ul li a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-menu ul li a:hover {
    transform: translateX(4px);
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.newsletter-form input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form input[type="checkbox"]:checked {
    background-color: rgb(251, 191, 36);
    border-color: rgb(251, 191, 36);
}

@media (max-width: 767px) {
    .footer-menu {
        margin-bottom: 2rem;
    }

    .newsletter-form {
        margin-top: 1.5rem;
    }
}

/* Properties Section */
.properties-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #1e3a8a, #0f172a, #000000);
}

.properties-section::before,
.properties-section::after {
    content: '';
    position: absolute;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.properties-section::before {
    top: -16rem;
    left: -16rem;
}

.properties-section::after {
    bottom: -16rem;
    right: -16rem;
}

.properties-slider {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
}

.properties-slider .card {
    transform: translateY(0);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
}

.properties-slider .card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
}

.properties-slider .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
    transition: transform 0.3s ease;
}

.properties-slider .card:hover img {
    transform: scale(1.05);
}

.properties-slider .card .property-details {
    padding: 1.5rem;
}

.properties-slider .card .property-price {
    color: rgb(251, 191, 36);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.properties-slider .card .property-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.properties-slider .card .property-features {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.properties-slider .card .property-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.properties-slider .card .property-link:hover {
    color: rgb(251, 191, 36);
    gap: 0.5rem;
}

@media (max-width: 767px) {
    .properties-slider {
        margin: 0 -1rem;
        padding: 0 1rem 2rem;
    }

    .properties-slider .card {
        min-width: calc(100vw - 3rem);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .properties-slider .card {
        min-width: calc(50vw - 3rem);
    }
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Services Section */
.services-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #ffffff, #f1f5f9);
}

.services-section::before,
.services-section::after {
    content: '';
    position: absolute;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, rgba(30, 58, 138, 0) 70%);
    pointer-events: none;
}

.services-section::before {
    top: -20rem;
    left: -20rem;
}

.services-section::after {
    bottom: -20rem;
    right: -20rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 1rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.15);
}

.service-card .service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card .service-icon {
    position: absolute;
    top: -2rem;
    left: 1.5rem;
    background: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card .service-content {
    padding: 1.5rem;
    position: relative;
}

.service-card .service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1rem 0 0.75rem;
    background: linear-gradient(to right, #1e3a8a, #1e40af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card .service-description {
    color: rgba(30, 58, 138, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(30, 58, 138, 0.8);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.service-card .service-link:hover {
    color: rgb(251, 191, 36);
    gap: 0.75rem;
}

.select-contact-services option {
    background-color:#00127799;
}
.wpcf7-response-output {
    color: #fff;
}


