@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


/* Highlights the current active page link */
.current-menu-item a, 
.current_page_item a {
    font-weight: 500;
    border-bottom: 2px solid #000000;
}

#custom-email-wrapper {
  position: relative;
  max-width: 420px;
}

#custom-email-wrapper input[type="email"] {
  width: 100%;
  padding: 14px 50px 14px 18px;
  border-radius: 12px;
  border: 2px solid #0e2a47;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}

#custom-email-wrapper i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #0e2a47;
  font-size: 18px;
  pointer-events: none;
}



/* ------ Real Estate Pagination --------- */



/* Container: Exactly 2 Columns */
.property-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 550px);
    gap: 60px;
    justify-content: center;
    padding: 50px 0;
    background: #fff;
}

/* Card Fixed Dimensions */
.property-card {
    width: 550px;
    height: 400px;
    position: relative;
}

.property-card-real-estate {
    width: 550px;
    height: 400px;
    position: relative;
}

.property-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.property-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.2s ease;
}

.property-card:hover .property-thumb {
    scale: 1.05;
}

/* Status Badge */
.property-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1e3a34; /* The FC Group Dark Green/Teal */
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* The Overlay Details Box */
.property-details-box {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    z-index: 5;
}

.property-title {
    margin: 0 0 5px 0;
    font-size: 20px;
    color: #222;
}

.property-location {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.property-location i {
    margin-right: 5px;
}

/* Meta Section: Price & Specs */
.property-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.price-text {
    font-weight: 700;
    font-size: 18px;
    color: #e67e22; /* Adjust to match your specific price color */
}

.specs {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #444;
}

.specs i {
    color: #999;
}

/* --- Filter Bar Styles --- */
.property-filter-bar {
    max-width: 1140px;
    margin: 0 auto 30px;
    padding: 20px;
    border-radius: 10px;
}

.property-filter-bar form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.property-filter-bar input, 
.property-filter-bar select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 200px;
}

.property-filter-bar button {
    background: #1e3a34;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.reset-filter {
    align-self: center;
    text-decoration: none;
    color: #777;
    font-size: 14px;
}

/* --- Pagination Styles (Matches Image) --- */
.property-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding-bottom: 50px;
    font-family: sans-serif;
}

.property-pagination .page-numbers {
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* The Dark Rounded Box for Active Page */
.property-pagination .page-numbers.current {
    background: #2d2d2d; /* Match the dark grey/black in your photo */
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
}

.property-pagination .prev, 
.property-pagination .next {
    font-weight: 500;
    color: #555;
}

.property-pagination .dots {
    color: #999;
}


/* Responsive Grid fix */
 .property-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 550px);
    gap: 60px;
    justify-content: center;
    padding: 20px 0;
} 



/* --------- Homepage Featured List ----------- */

.carousel-section {
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
    padding: 0;
}

/* Header Typography */
.section-title {  
    font-family: 'Roboto', sans-serif;
    font-weight: 500; 
    margin: 0; 
    color: #222;
}

.section-subtitle { 
    font-size: 18px;
    font-family: 'Roboto', sans-serif; 
    color: #666; 
    margin: 10px 0 0 0; 
}

/* Carousel Control Buttons */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding: 0;
}

.carousel-controls { display: flex; gap: 12px; }

.carousel-container {
    padding: 0;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.control-btn:hover {
    background: #1e3a34; /* FC Group Theme Color */
    color: #fff;
    border-color: #1e3a34;
}

/* Property Card Contents */
.property-title {
    font-size: 18px; 
    font-weight: 700;
    margin-bottom: 5px;
}

.property-location, .price-text, .specs {
    font-size: 18px;
}

/* Smooth Track Styling */
.property-carousel-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 50px 20px;
}

.property-carousel-track::-webkit-scrollbar { display: none; }

.carousel-item {
    flex: 0 0 350px;
    height: 450px;
}

.property-image-container -carousel{
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.property-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-details-box {
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 5;
}