/* Reset and core */
/** {*/
/*    box-sizing: border-box;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*body {*/
/*    font-family: 'Poppins', sans-serif;*/
/*    line-height: 1.6;*/
/*    color: #0b214a;*/
/*}*/

/*a {*/
/*    color: inherit;*/
/*    text-decoration: none;*/
/*    cursor: pointer;*/
/*}*/

/*img {*/
/*    max-width: 100%;*/
/*}*/

/*ul {*/
/*    list-style: none;*/
/*}*/

/* Container */
/*.container {*/
/*    width: 90%;*/
/*    max-width: 1200px;*/
/*    margin: auto;*/
/*} */

/* Header */


/*.nav-container {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    padding: 1rem 0;*/
/*}*/

/* Logo */
/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    font-weight: 700;*/
/*    font-size: 1.3rem;*/
/*    color: #0b214a;*/
/*    gap: 0.3rem;*/
/*}*/

/*.logo-img {*/
/*    width: 50px;*/
/*    height: 50px;*/
/*}*/

/*.logo small {*/
/*    font-weight: 300;*/
/*    font-size: 0.85rem;*/
/*    color: #5e5e5e;*/
/*    line-height: 1.1;*/
/*}*/

/* Nav Menu */
/*nav {*/
/*    flex-grow: 1;*/
/*    margin-left: 2rem;*/
/*}*/

/*.nav-menu {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.nav-menu li {*/
/*    position: relative;*/
/*}*/

/* Main nav links */
/*.nav-menu > li > a {*/
/*    font-weight: 500;*/
/*    padding: 4px 12px;*/
/*}*/

/* Dropdown styles */
/*.dropdown,*/
/*.dropdown-mega {*/
/*    position: absolute;*/
    /*background: white;*/
    /*top: 100%;*/
    /*left: 0;*/
    /*min-width: 230px;*/
    /*border-radius: 10px;*/
    /*box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);*/
    /*padding: 1rem;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
    /*transition: all 0.3s ease;*/
/*    z-index: 100;*/
/*}*/

/* Show dropdown on parent hover */
/*.nav-menu > li:hover > .dropdown,*/
/*.nav-menu > li:hover > .dropdown-mega {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

/* Dropdown Explorer links */
/*.dropdown a {*/
/*    display: block;*/
/*    padding: 0.5rem 0;*/
/*    color: #0b214a;*/
/*    font-weight: 500;*/
/*    border-bottom: 1px solid #eee;*/
/*}*/

/*.dropdown a:last-child {*/
/*    border-bottom: none;*/
/*}*/



/* Mega Dropdown grid */
/*.dropdown-mega {*/
/*    width: 700px;*/
/*    padding: 2rem 3rem;*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 0rem;*/
/*}*/

/*.mega-col h5 {*/
/*    font-weight: 700;*/
/*    margin-bottom: 1rem;*/
/*    color: #b99730;*/
/*}*/

/*.mega-col a {*/
/*    padding: 0.25rem 0;*/
/*    font-weight: 500;*/
/*    color: #0b214a;*/
/*    display: block;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.mega-col a:hover {*/
/*    font-weight: 700;*/
/*    color: #b99730;*/
/*    padding-left: 0.5rem;*/
/*}*/

/* Header Right Controls */
/*.header-right {*/
/*    display: flex;*/
/*    gap: 1rem;*/
/*    align-items: center;*/
/*}*/

/*.lang-switcher {*/
/*    font-weight: 600;*/
/*    background: none;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    padding: 0.5rem;*/
/*    font-size: 1rem;*/
/*    color: #0b214a;*/
/*}*/

/*.btn {*/
/*    border-radius: 6px;*/
/*    font-weight: 700;*/
/*    cursor: pointer;*/
/*    border: none;*/
/*    padding: 0.5rem 1.3rem;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-signin {*/
/*    background: white;*/
/*    color: #0b214a;*/
/*    border: 2px solid #0b214a;*/
/*}*/

/*.btn-signin:hover {*/
/*    background: #0b214a;*/
/*    color: white;*/
/*}*/

/*.btn-list {*/
/*    background: #b99730;*/
/*    color: white;*/
/*}*/

/*.btn-list:hover {*/
/*    background: #8b761e;*/
/*}*/

/* HERO */
.hero {
    background: linear-gradient(180deg, rgba(11,33,74,0.85), rgba(11,33,74,0.85)),
        url('https://images.unsplash.com/photo-1501183638714-3c2bcd3b1f9d?auto=format&fit=crop&w=1500&q=80')
        no-repeat center center/cover;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    max-width: 600px;
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: #b99730;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #8b761e;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: white;
    color: #0b214a;
}

/* Sections */
/*section {*/
/*    padding: 4rem 0;*/
/*}*/

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #7a8fab;
    font-weight: 500;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Featured Properties Section */
.property-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.property-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.property-card:hover {
    box-shadow: 0 7px 15px rgb(0 0 0 / 0.2);
}

.property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.property-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0b214a;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.property-content {
    padding: 1rem 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #0b214a;
}

.property-location {
    font-size: 0.9rem;
    color: #7a8fab;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/*.property-type {*/
/*    background-color: #e3d38a;*/
/*    color: #726517;*/
/*    font-weight: 700;*/
/*    padding: 2px 7px;*/
/*    border-radius: 12px;*/
/*    font-size: 0.75rem;*/
/*    width: max-content;*/
/*    margin-bottom: 0.8rem;*/
/*}*/

.property-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0b214a;
    margin-bottom: 0.6rem;
}

.property-info {
    font-size: 0.9rem;
    color: #7a8fab;
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

/*.btn-view {*/
/*    background-color: transparent;*/
/*    border: 1.5px solid #b99730;*/
/*    color: #b99730;*/
/*    border-radius: 6px;*/
/*    padding: 0.5rem;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    width: 100%;*/
/*}*/

/*.btn-view:hover {*/
/*    background-color: #b99730;*/
/*    color: white;*/
/*}*/

/* Services Section */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #b99730;
    margin-bottom: 1rem;
}

.service-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #0b214a;
}

.service-desc {
    font-weight: 500;
    color: #7a8fab;
    flex-grow: 1;
}

.explore-link {
    margin-top: 1rem;
    color: #b99730;
    font-weight: 600;
    text-decoration: none;
}

/* Testimonials Section */
.testimonials-section {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-cards {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease-in-out;
}

.testimonial-card {
    background: white;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    border-radius: 10px;
    flex: 0 0 330px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #b99730;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #555;
    min-height: 90px;
}

.client-name {
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #0b214a;
}

.client-location {
    color: #b99730;
    font-size: 0.85rem;
}

/* testimonial arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    background-color: rgba(11, 33, 74, 0.7);
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    border-radius: 5px;
    transform: translateY(-50%);
    user-select: none;
    z-index: 10;
}

.arrow-left {
    left: -10px;
}

.arrow-right {
    right: -10px;
}

/* Office Locations */
.office-locations {
    padding-bottom: 6rem;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.office-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.office-card h3 {
    color: #0b214a;
    margin-bottom: 0.7rem;
}

.office-card p {
    color: #7a8fab;
}

.office-card button {
    margin-top: auto;
}

/* Footer */

footer {
    background-color: #003466;
    color: white;
    padding: 3rem 1rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    color: #b99730;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p,
.footer-col a,
.footer-col li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: white;
}

.footer-col a:hover {
    color: #b99730;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    filter: brightness(0) invert(0.6) sepia(1) saturate(4) hue-rotate(35deg);
}

.newsletter input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    border: none;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    outline: none;
}

.newsletter button {
    width: 100%;
    background-color: #b99730;
    color: white;
    padding: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #8b761e;
}

hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* Responsive */

@media (max-width: 780px) {
    nav {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        background: white;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 33, 74, 0.15);
    }

    header.sticky-navigation nav {
        display: flex;
    }

    .dropdown,
    .dropdown-mega {
        position: static;
        box-shadow: none;
        padding: 0;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
    }

    .nav-menu > li:hover > .dropdown,
    .nav-menu > li:hover > .dropdown-mega {
        display: block;
    }
}

