* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    overflow-x: hidden;
}

body {
    background-color: #f5f5f5;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 15%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.1) 45%, rgba(17,17,17,0.8) 75%, rgba(17,17,17,1) 100%), url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 2rem 4rem 2rem 4rem;
    display: flex;
    flex-direction: column;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a.active {
    color: #d78f19;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d78f19;
    border-radius: 2px;
}

.nav-links a:hover:not(.active) {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}



.signup-btn {
    background-color: #d78f19;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color: #c07e15;
}

/* Hero Content */
.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    margin-top: 5rem;
    padding-bottom: 4rem;
}



.hero-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.main-heading {
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 800px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.sub-heading {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 400px;
    text-align: left;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Search Container */
.search-container {
    background: rgba(80, 66, 54, 0.216);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(123, 110, 101, 0.388);
    border-radius: 24px;
    padding: 2rem;
    margin-top: -3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.search-header h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-group label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    color: white;
    outline: none;
    appearance: none; /* remove default arrow */
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.25);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-wrapper select option {
    background-color: #2a2a2a;
    color: white;
}

.select-wrapper {
    position: relative;
}

.dropdown-icon {
    position: absolute;
    right: 1rem;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    font-size: 0.8rem;
}

.button-wrapper {
    display: flex;
    align-items: flex-end;
}

.search-btn {
    background-color: #d78f19;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #c07e15;
}

/* Responsive design adjustments */
@media (max-width: 1024px) {
    .hero-text-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .search-fields {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Why Choose Us Section */
.why-section {
    background-color: #111111;
    color: white;
    padding: 8rem 4rem;
}

.why-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    margin-bottom: 5rem;
}

.why-title {
    flex: 0 0 42%;
}

.why-desc-container {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a3a3a3;
    margin-bottom: 2rem;
    max-width: 500px;
}

.why-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.why-img-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.why-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background-color: #212121;
    border-radius: 20px;
    padding: 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-card.primary {
    background-color: #d78f19;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.4;
}

/* About Us Section */
.about-section {
    background-color: #111111;
    color: white;
    padding: 7rem 4rem;
}

.about-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-left {
    flex: 1;
}

.section-label {
    display: block;
    color: #d78f19;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.about-heading {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-heading .highlight {
    color: #d78f19;
}

.about-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.about-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.about-description strong {
    color: white;
    font-weight: 600;
}

.house-icon {
    color: #d78f19;
    margin: 0 0.3rem;
}

.more-about-btn {
    display: inline-flex;
    align-items: center;
    background-color: #d78f19;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.more-about-btn:hover {
    background-color: #c07e15;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #d78f19;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

@media (max-width: 1024px) {
    .about-top {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Properties Section */
.properties-section {
    background-color: #111111;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    height: 100vh;
    max-height: 1080px;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.properties-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.properties-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 4rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.properties-title .section-label,
.services-left .section-label,
.why-title .section-label,
.about-left .section-label,
.blogs-title .section-label {
    display: block;
    color: #d78f19;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.properties-title .label-large,
.services-left .label-large,
.why-title .label-large,
.about-left .label-large,
.blogs-title .label-large {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-top: 0.3rem;
}

.properties-title .section-heading,
.services-left .section-heading,
.why-title .section-heading,
.about-left .section-heading,
.blogs-title .section-heading {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
}

.properties-title .section-heading .highlight,
.services-left .section-heading .highlight,
.why-title .section-heading .highlight,
.about-left .section-heading .highlight,
.blogs-title .section-heading .highlight {
    color: #d78f19;
}

.properties-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: #d78f19;
    color: white;
    text-decoration: none;
    padding: 0.4rem 1.2rem 0.4rem 0.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    background-color: #c07e15;
}

.view-more-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #d78f19;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

.slider-nav {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #d78f19;
    background: transparent;
    color: #d78f19;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #d78f19;
    color: #131313;
}

/* Slider */
.properties-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0 3rem;
    margin-top: -9rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
    align-items: flex-end;
    min-height: 620px;
    position: relative;
    z-index: 1;
}

.properties-slider::-webkit-scrollbar {
    display: none;
}

.property-card {
    flex: 0 0 340px;
    scroll-snap-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    opacity: 0.4;
    display: flex;
    flex-direction: column;
}

.card-image-container {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #222;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.property-card.active {
    opacity: 1;
}

.property-card.active .card-image-container {
    height: 440px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
    transition: transform 0.5s ease;
}

.property-card.active .card-bg {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15,15,15,0.98) 0%, rgba(15,15,15,0.8) 45%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.card-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-features {
    color: #a3a3a3;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.card-price {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    transition: margin-bottom 0.5s ease;
}

.view-details-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #1a1a1a;
    color: #d78f19;
    border: 0px solid transparent;
    padding: 0 0.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
}

.view-details-btn:hover {
    background-color: #d78f19;
    color: #1a1a1a;
}

.property-card.active .view-details-btn {
    opacity: 1;
    max-height: 50px;
    margin-top: 1.5rem;
    padding: 0.8rem;
    border: 1px solid #d78f19;
}

/* Services Section */
.services-section {
    background-color: #111111;
    padding: 8rem 4rem;
    color: white;
}

.services-container {
    display: flex;
    gap: 6rem;
    max-width: 1440px;
    margin: 0 auto;
}

.services-left {
    flex: 0 0 42%;
    position: relative;
    align-self: flex-start;
}

.services-bg {
    position: absolute;
    top: -4rem; /* Offset to cover section padding */
    left: -4rem;
    width: calc(100% + 4rem);
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.services-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

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

.services-right {
    flex: 1;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a3a3a3;
    margin: 2rem 0 3rem 0;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem 0;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.accordion-num {
    color: #d78f19;
    font-weight: 600;
    font-size: 1.2rem;
}

.accordion-title {
    color: #d78f19;
    font-weight: 600;
    font-size: 2rem;
    margin: 0;
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.accordion-inner {
    overflow: hidden;
    display: flex;
    gap: 2rem;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-top: 0;
}

.accordion-text {
    flex: 1;
}

.accordion-text p {
    color: #a3a3a3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.view-details-outline-btn {
    display: inline-block;
    padding: 0.6rem 2rem;
    border: 1px solid #d78f19;
    border-radius: 50px;
    color: #d78f19;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.view-details-outline-btn:hover {
    background-color: #d78f19;
    color: #111111;
}

.accordion-img-wrapper {
    flex: 0 0 220px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
}

.accordion-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Active State */
.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-item.active .accordion-inner {
    opacity: 1;
    padding-top: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #111111;
    color: white;
    padding: 2rem 4rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.testimonials-header .highlight {
    color: #d78f19;
}

.testimonials-slider-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-track {
    width: 100%;
    height: 480px;
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.testi-card {
    position: absolute;
    left: 50%;
    margin-left: -225px; /* Half of 450px width */
    width: 450px;
    height: 100%;
    background-color: #222222;
    border-radius: 24px;
    padding: 3rem 3rem 3.5rem 3rem;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    z-index: 1;
    border: 1px solid rgba(215, 143, 25, 0.15);
}

/* Dynamic positioning based on DOM order */
.testimonials-track .testi-card:nth-child(1) {
    transform: translateX(-110%) scale(0.85);
    opacity: 0.4;
    z-index: 1;
}

.testimonials-track .testi-card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 2;
    border: 1px solid rgba(215, 143, 25, 0.5);
    background-color: #242424;
}

.testimonials-track .testi-card:nth-child(3) {
    transform: translateX(110%) scale(0.85);
    opacity: 0.4;
    z-index: 1;
}

.testi-card-inner {
    display: flex;
    flex-direction: column;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testi-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(215, 143, 25, 0.2);
    margin-bottom: 2rem;
}

.testi-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(215, 143, 25, 0.5);
    transition: border-color 0.5s;
}

.testi-card.active .testi-img {
    border-color: #d78f19;
}

.testi-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testi-info h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.testi-role {
    font-size: 1rem;
    color: rgba(215, 143, 25, 0.6);
    transition: color 0.5s;
}

.testi-card.active .testi-role {
    color: #d78f19;
}

.testi-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.75rem;
    border-radius: 50px;
    margin-top: 0.5rem;
    width: max-content;
}

.testi-card.active .testi-badge {
    border-color: rgba(215, 143, 25, 0.4);
    color: #a3a3a3;
}

.testi-body {
    position: relative;
}

.testi-body p::before {
    content: "“";
    font-family: serif;
    font-size: 3rem;
    color: #666;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.testi-body p::after {
    content: "”";
    font-family: serif;
    font-size: 3rem;
    color: #666;
    line-height: 0;
    vertical-align: -0.8rem;
    margin-left: 0.3rem;
}

.testi-body p {
    color: #c9c9c9;
    font-size: 1.15rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testi-controls {
    display: flex;
    gap: 1.5rem;
}

.testi-controls button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d78f19;
    background: transparent;
    color: #d78f19;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testi-controls button:hover {
    background: #d78f19;
    color: #111111;
}

/* Blogs Section */
.blogs-section {
    background-color: #111111;
    color: white;
    padding: 3rem 4rem 8rem 4rem;
}

.blogs-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    margin-bottom: 5rem;
}

.blogs-title {
    flex: 0 0 42%;
}

.blogs-desc-container {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blogs-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a3a3a3;
    margin-bottom: 2rem;
}

.blogs-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

.blog-main-card {
    background-color: #1a1a1a;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-main-desc {
    color: #a3a3a3;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.blog-main-img-wrapper {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    min-height: 250px;
}

.blog-main-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    background-color: rgba(0,0,0,0.2);
}

.blog-tag.read-time {
    color: #d78f19;
    border-color: rgba(215, 143, 25, 0.3);
}

.blog-tag.date {
    color: #888;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-list-item {
    background-color: #1a1a1a;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.blog-list-img-wrapper {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-list-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-list-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin: 0;
}

.blog-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d78f19;
    background: transparent;
    color: #d78f19;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog-arrow-btn:hover {
    background: #d78f19;
    color: #111111;
}

.blog-secondary-card {
    background-color: #1a1a1a;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
}

.blog-secondary-img-wrapper {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-secondary-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-secondary-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-list-desc {
    color: #a3a3a3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    padding-right: 4rem; /* Make room for absolute button */
}

.absolute-btn {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
}

/* Footer Section */
.site-footer {
    background-color: #d78f19;
    color: #111111;
    padding: 6rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 250px; /* Increase this value to make the logo even larger */
}

.footer-logo img {
    width: 100%;
    filter: brightness(0); /* Make logo black */
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #111111;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.social-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn img {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.social-btn:hover img {
    opacity: 0.7;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: flex-end;
    gap: 5rem;
    flex: 1;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #111111;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column ul li a {
    color: #111111;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem 1rem 4rem;
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111111;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #111111;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 0.7;
}

.footer-image-container {
    width: 100%;
    margin-top: -14vw; /* Responsive negative margin to prevent overlap on medium screens */
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.footer-image-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    /* Nav & Search */
    .navbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        padding: 1.2rem 2rem;
        z-index: 999;
    }

    .hamburger {
        display: block;
        z-index: 1001;
        font-size: 1.8rem;
    }
    
    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #111111;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 6rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    .nav-right.active {
        right: 0;
    }
    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }
    .nav-actions {
        margin-top: 2rem;
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

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

@media (max-width: 1024px) {
    .properties-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .services-container {
        flex-direction: column;
        gap: 3rem;
    }

    .why-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .why-bottom {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-img-container {
        min-height: 500px;
    }

    .blogs-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

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

    .testimonials-track .testi-card:nth-child(1) {
        transform: translateX(-70%) scale(0.85);
    }

    .testimonials-track .testi-card:nth-child(3) {
        transform: translateX(70%) scale(0.85);
    }

}

@media (max-width: 1024px) and (min-width: 769px) {
    .properties-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .search-fields {
        grid-template-columns: 1fr;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 8rem 2rem 4rem 2rem;
        background-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.75) 25%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.5) 60%, rgba(17,17,17,0.9) 80%, rgba(17,17,17,1) 100%), url('images/bg.jpg');
    }
    .hero-text-wrapper {
        align-items: flex-start;
        text-align: left;
    }
    .main-heading {
        font-size: 2.5rem;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 1);
        text-align: left;
    }
    .sub-heading {
        max-width: 90%;
    }
    .hero-buttons {
        justify-content: flex-start;
    }

    /* Uniform Padding for Sections */
    .why-section, .about-section, .services-section, .testimonials-section {
        padding: 4rem 2rem;
    }
    .blogs-section {
        padding: 4rem 2rem 4rem 2rem;
    }

    /* Centralized Alignment for Tops/Headers */
    .why-top, .about-top, .properties-header, .services-header, .testimonials-header, .blogs-top {
        align-items: flex-start;
        text-align: left;
        flex-direction: column;
    }

    /* Standardized H2 Sizes */
    .why-heading, .about-heading, .properties-header h2, .services-header h2, .testimonials-header h2, .blogs-top h2 {
        font-size: 2.5rem;
    }

    /* Descriptions & Buttons */
    .why-desc, .about-description {
        font-size: 1.1rem;
        text-align: left;
    }
    .more-about-btn, .primary-btn, .secondary-btn {
        margin: 0;
    }

    /* Why Section specifics */
    .why-stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        padding: 2.5rem 2rem;
    }
    .stat-number {
        font-size: 3.5rem;
    }

    /* About Section specifics */
    .about-gallery {
        grid-template-columns: 1fr;
    }

    /* Properties specifics */
    .properties-section {
        height: auto;
        min-height: auto;
    }
    .properties-header {
        padding-left: 2rem;
        padding-right: 2rem;
        gap: 1.5rem;
    }
    .properties-slider {
        padding: 2rem 0;
        align-items: flex-end;
        min-height: 540px;
        margin-top: 0;
    }
    .property-card {
        flex: 0 0 280px;
    }
    .card-image-container {
        height: 340px;
    }
    .property-card.active .card-image-container {
        height: 380px;
    }
    
    /* Services specifics */
    .accordion-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .accordion-img-wrapper {
        flex: 0 0 auto;
        width: 100%;
    }

    /* Blogs specifics */
    .blog-list-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }
    .blog-list-desc {
        padding-right: 0;
    }
    .blog-list-img-wrapper {
        width: 100%;
        height: 200px;
    }
    .absolute-btn {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
    }

    /* Testimonials specifics */
    .testi-card {
        width: 90%;
        left: 5%;
        margin-left: 0;
        padding: 2rem;
        text-align: left;
    }
    .testi-person {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .testimonials-track {
        height: 680px;
    }
    .testimonials-track .testi-card:nth-child(1),
    .testimonials-track .testi-card:nth-child(3) {
        opacity: 0;
        pointer-events: none;
        transform: translateX(0) scale(0.8);
    }
    .testimonials-track .testi-card.active {
        transform: translateX(0) scale(1);
    }

    /* Footer specifics */
    .site-footer {
        padding: 4rem 0 0 0;
    }
    .footer-top, .footer-bottom {
        padding-left: 2rem;
        padding-right: 2rem;
        text-align: left;
        align-items: flex-start;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    .legal-links {
        justify-content: flex-start;
    }
    .footer-brand {
        align-items: flex-start;
    }
    .social-links {
        justify-content: flex-start;
    }
    .footer-image-container {
        margin-top: -4rem;
    }
}

/* --- Scroll Reveal Animations --- */
.reveal-el {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-el.is-visible {
    opacity: 1;
    transform: translateY(0);
}