@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Baloo+2:wght@400..800&family=Baloo+Bhaijaan+2:wght@400..800&family=Butcherman&family=Cutive+Mono&family=Fredoka:wght@300..700&family=Gothic+A1&family=Gravitas+One&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&family=Luckiest+Guy&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nanum+Pen+Script&family=Nata+Sans:wght@100..900&family=Nosifer&family=Noto+Sans+NKo&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Paprika&family=Parisienne&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+VN+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Protest+Revolution&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik+Doodle+Shadow&family=Rubik+Spray+Paint&family=Sen:wght@400..800&family=Shadows+Into+Light&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Baloo+2:wght@400..800&family=Baloo+Bhaijaan+2:wght@400..800&family=Butcherman&family=Cutive+Mono&family=Fredoka:wght@300..700&family=Gothic+A1&family=Gravitas+One&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&family=Luckiest+Guy&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nanum+Pen+Script&family=Nata+Sans:wght@100..900&family=Nosifer&family=Noto+Sans+NKo&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Paprika&family=Parisienne&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+VN+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Protest+Revolution&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik+Doodle+Shadow&family=Rubik+Spray+Paint&family=Sen:wght@400..800&family=Shadows+Into+Light&display=swap');

:root {
    --primary-color: #046bb9;
    --secondary-color: #2375b4;
    --accent-color: #fcfcfc;
    --background-color: #ffffff;
    --text-color: #1c1c1c; 
    --border-radius: 10px;
    --card-bg: #2375b44f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    font-family: Nunito Sans, Arial, sans-serif;
    color: var(--text-color);
}

header {
    margin: 0;
    padding: 16px 28px;
    background-color: var(--background-color);
    border: 1px solid #eee;
    top: 0; left: 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a img {
    width: 150px;
    height: 50px;
    display: block;
    transition: filter 0.3s ease;
}

.logo a img:hover {
    filter: brightness(1.2);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

nav li a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-color);
    font-family: Nunito Sans, Arial, sans-serif;
    transition: color 0.3s;
}

nav li a:hover {
    color: var(--primary-color);
}


.cta-btns {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.cta-btns a {
    text-decoration: none;
}

.call-btn a {
    border-radius: 4px;
    padding: 8px 14px;
    background-color: var(--primary-color);
    color: #ffffff;
    transition: color 0.3s ease;
}

.call-btn a:hover {
    background-color: #1a6197;
}

.sign-up a {
    border: 1px solid #9b9a9a;
    border-radius: 4px;
    padding: 8px 14px;
    color: #046bb9;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sign-up a:hover {
    background-color: #2375b4;
    color: #fff;
}

.container {
    margin: 16px .5rem;
    padding: 16px;
}

.hero {
    margin: 8rem 0;
}

main {
    width: 100%;
    max-width: 1200px;
    display: inline;
}

.hero main::after {
    content: "";
    display: table;
    clear: both;
}

aside {
    float: left;
    width: 50%;
}

.herodesc p {
    color: #046bb9;
    font-size: 10px;
    font-weight: 400;
}

.herodesc h3 {
    margin-top: 20px;
    font-weight: 700;
    font-size: 2rem;
}

.herocard {
    margin: 3rem 0;
    padding: 1.5rem 0;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
}

.herosearch {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}

.herosearchbar {
    margin: 0;
    padding: 3px 6px;
    border: 2px solid #046bb9;
    border-radius: 10px;
}

.herosearchbar input {
    padding: 4px 10px;
    border: none;
    border-radius: 4px;
}

.herosearchbar input:focus {
    outline: none; 
}

.herosearchbar .fa-solid {
    color: #696868;
}

.herosearchbarlink ul {
    list-style: none;
    margin: 0;
    padding: 2px 0;
    display: flex;
    gap: 1.2rem;
}

.herosearchbarlink li a {
    margin: 3.5px 0;
    padding: 3px 8px;
    text-decoration: none;
    color: #3b3939;
    font-weight: 600;
    font-size: 14px;
    background: #f0eeee;
    border-radius: 1rem;
    /*border: 1px solid #1c1c1c;*/
    transition: color 0.2s ease, background 0.3s ease;
}

.herosearchbarlink a:hover {
    background: #046bb9;
    color: #fff;
}

.herosearchselection ul {
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
}

.herosearchselection select {
    border: 1px solid #046bb9;
    padding: 4px 2px;
    border-radius: 10px;
    width: 100%;
    max-width: fit-content;
}

.herosearchselection select:focus {
    outline: none;
}

.heroadvancedsearch {
    margin: 1rem;
    margin-left: 13rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.herosearchadvanced {
    background: #acd7f8;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 3px 6px;
    /*border: 1px solid #046bb9;*/
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.herosearchadvanced:hover {
    background: #8bb9d9;
}

.herosearchadvanced .fa-brands {
    padding: 3px 6px;
    font-size: 18px;
    color: #046bb9;
}

.herosearchadvanced p {
    font-weight: 500;
    font-size: 12px;
    color: #fff;
}

.heroadvancedsearch a {
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    background: #046bb9;
    color: #fff;
    width: 80px;
    font-size: 15px;
    font-weight: 500;
    padding: 3px 6px;
    transition: background 0.3s ease;
}

.heroadvancedsearch a:hover {
    background: #1a6197;
}

.heroimg {
    float: right;
    width: 50%;
}

.heroimg-slide {
    position: relative;
}

.heroimg-holder {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    box-shadow: 0 8px 32px 0 rgba(9, 170, 229, 0.12);
    border-radius: 20px;
    background: var(--card-bg);
    gap: 0;
    scroll-behavior: smooth;
}

.heroimg-holder img {
    width: 100%;
    height: 420px;
    flex: 1 0 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    scroll-snap-align: start;
}

.heroimg-holder::-webkit-scrollbar {
    display: none;
}

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

.heroimg-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.heroimg-nav a {
    font-size: 1.25rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #acd7f8;
    opacity: 0.75;
    transition: opacity ease 0.3s;
}

.heroimg-nav a:hover {
    opacity: 1;
}

.exploreproperty {
    margin: 5rem 0;
    padding: inherit;
}

.explorepropertydesc {
    text-align: center;
}

.explorepropertydesc p {
    color: #046bb9;
    font-size: 14px;
    margin-bottom: 10px;
}

.explorepropertydesc h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.explorepropertyfeaturelink ul {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.explorepropertyfeaturelink a {
    font-size: 14px;
    font-weight: 600;
    display: block;
    width: 90px;
    text-align: center;   
    padding: 3px 6px;
    border: 1px solid #f0eeee;
    border-radius: 10px;
    color: #696868;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.explorepropertyfeaturelink a:hover {
    color: #fff;
    background: #046bb9;
}

.explorepropertyfeaturegrid {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    flex: wrap;
} 

.explorepropertyfeaturecard {
    margin: 2rem;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: calc(auto + 30px);
    transition: transform 0.3s ease;
}

.explorepropertyfeaturecard:hover {
    box-shadow: 0 2px 10px rgba(9, 170, 229, 0.12);
    transform: translateY(-4px) scale(1);
}

.explorepropertyfeaturecard img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

.propertycarddesc {
    margin: 15px;
    padding: 4px;
    text-align: left;
}

.propertycarddesc h4 {
    font-size: 20px;
    font-weight: 700;
}

.propertycarddesc p {
    font-size: 12px;
    color: #5f5c5c;
}

.propertycardprofile {
    margin: 15px;
    padding: 4px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.propertycardprofile img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.propertycardprofile p {
    color: #046bb9;
    font-size: 20px;
    font-weight: 700;
}

.propertycardsubs {
    font-size: 12px;
    margin: 15px;
    padding: 4px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.propertycardsubs .fa-solid {
    color: #046bb9;
}

.discoverproperty {
    margin: 5rem 0;
    padding: inherit;
}

.discoverpropertydesc {
    text-align: center;
}

.discoverpropertydesc p {
    color: #046bb9;
    font-size: 14px;
    margin-bottom: 10px;
}

.discoverpropertydesc h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.discoverpropertyslidecontainer {
    position: relative;
    max-width: 650px;
    margin: 2rem auto;
    overflow: hidden;
}

.discoverpropertyslider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.discoverpropertycard {
    min-width: 100%;
    background: #fcfcfc;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #007bff;
    box-shadow: 0 2px 8px rgba(9, 170, 229, 0.12);
    transition: tranform 0.3s ease;
}

.discoverpropertycard img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.discovercarddesc {
    padding: 20px;
    text-align: left;
}

.discovercarddesc h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text-color);
}

.address {
    font-size: 14px;
    color: #046bb9;
    margin-bottom: 16px;
}

.discovercardfeatrues {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.discovercardfeatrues .fa-solid {
    color: #046bb9;
} 

.discovercardbrief {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.agent {
    display: flex;
    align-items: center;
    gap: 8px;
}

.agent img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.price {
    font-weight: 700;
    color: #046bb9;
    font-size: 18px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    margin: 0 10px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: color 0.3s ease, background 0.3s ease;
}

.arrow .left {
    left: -50px;
}

.arrow .right {
    right: -40px;
}

.arrow:hover {
    background: #2375b4;
    color: #fff;
}

.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0 6px;
    background-color: #acd7f8;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.dot .active,
.dot:hover {
    background-color: #007bff;
}

.team {
    margin: 5rem 0;
    padding: inherit;
}

.teamdesc {
    text-align: center;
}

.teamdesc p {
    color: #046bb9;
    font-size: 14px;
    margin-bottom: 10px;
}

.teamdesc h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.teamgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: start;
}

.teamcard {
    margin: 1rem;
    border-radius: 10px;
    width: 220px;
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.teamcard:hover {
    transform: translateY(-4px) scale(1);
}

.teamcard img {
    width: 200px;
    height: 200px;
    border: 10px solid #3481ab68;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.teamcard h3 {
    margin: 0.5rem 0 0.2rem;
    font-size: 1.1rem;
    color: #222;
}

.teamcard p {
    font-size: 0.9rem;
    color: #666;
}

.footer {
  background: #046bb9;
  color: #fff;
  padding: 3rem 2rem 1rem;
  font-family: Nunito Sans, Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e3f2fc;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #e3f2fc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #cce6ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
    nav {
        padding: 1rem 1.5rem;
    }

    aside {
        width: 100%;
        float: none;
    }

    .heroimg {
        width: 100%;
        float: none;
        margin-top: 2rem;
    }

    .explorepropertyfeaturegrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .teamgrid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .cta-btns {
        display: none;
    }

    .hero {
        margin: 6rem 0 2rem;
    }

    .container {
        margin: 8px 0.25rem;
        padding: 12px;
    }

    .herocard {
        max-width: 100%;
    }

    .herosearch {
        flex-direction: column;
        gap: 1rem;
    }

    .heroimg-holder img {
        height: 280px;
    }

    .explorepropertydesc h3 {
        font-size: 1.5rem;
    }

    .explorepropertyfeaturegrid {
        grid-template-columns: 1fr;
    }

    .explorepropertyfeaturecard {
        width: 100%;
        max-width: 100%;
    }

    .discoverpropertyslidecontainer {
        max-width: 100%;
    }

    .teamgrid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 16px;
    }

    .logo a img {
        width: 120px;
        height: 40px;
    }

    .hero {
        margin: 5rem 0 1rem;
    }

    .herodesc h3 {
        font-size: 1.5rem;
    }

    .explorepropertydesc h3,
    .discoverpropertydesc h3,
    .teamdesc h3 {
        font-size: 1.3rem;
    }

    .teamcard {
        width: 100%;
        margin: 0.5rem 0;
    }

    .teamcard img {
        width: 150px;
        height: 150px;
    }

    .heroimg-nav {
        bottom: 0.75rem;
    }

    .footer {
        padding: 2rem 1rem 0.5rem;
    }

    .footer-about h3 {
        font-size: 1.2rem;
    }
}
