/* Custom CSS for Elite Global Properties */

/* Font Family Configuration */
body,
html {
    font-family: 'Poppins', sans-serif;
}

[x-cloak] {
    display: none !important;
}

/* Page Loader - Lightweight & Optimized */
.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f231a;
    z-index: 2000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__inner {
    text-align: center;
    color: #ffffff;
}

.page-loader__logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #AB985A;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(10px);
    animation: loader-fade 0.8s ease forwards;
}

.page-loader__text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    animation: loader-fade 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes loader-fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header transparency + sticky state */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky {
    position: fixed;
    background-color: rgba(23, 51, 37, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.site-header--solid {
    position: sticky;
    top: 0;
    background-color: #173325;
}

.site-header--solid.is-sticky {
    position: sticky;
    background-color: #173325;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Hamburger Menu Styles */
.hamburger-toggle {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hamburger-toggle:hover svg {
    transform: scale(1.1);
}

.hamburger-icon,
.close-icon {
    transition: all 0.3s ease;
    stroke-width: 2px;
}

.close-icon {
    right: 0;
    left: auto;
    position: absolute;
    top: 0;
}

.mobile-menu {
    opacity: 0;
    visibility: hidden;
    top: -111px !important;
    left: 0;
    right: 0 !important;
    height: 100vh;
    width: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    top: 0 !important;
}

.mobile-menu-overlay {
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.mobile-menu a {
    position: relative;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #AB985A;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-menu a:hover::after {
    width: 100%;
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-swiper {
    height: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #AB985A;
    border: none;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(171, 152, 90, 0.35);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: #9a8750;
    transform: translateY(-50%) scale(1.04);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    display: none;
}

.hero-swiper .swiper-button-prev {
    left: 1rem;
}

.hero-swiper .swiper-button-next {
    right: 1rem;
}

@media (max-width: 768px) {
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    scale: 0.9;
}

.modal.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0 ;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.7);  */
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #000;
}

/* Projects Carousel Styles */
.projects-carousel-wrapper {
    position: relative;
}

.section-lazy {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

.product-slider {
    position: relative;
}

.product-slide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(23, 51, 37, 0.12);
    border: 1px solid rgba(171, 152, 90, 0.12);
    align-items: center;
}

.product-slide__content {
    text-align: left;
}

.product-slide__tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #AB985A;
    font-weight: 600;
}

.product-slide__title {
    font-size: 2rem;
    font-weight: 700;
    color: #173325;
    margin-top: 0.75rem;
}

.product-slide__copy {
    color: #5a6c64;
    line-height: 1.7;
    margin-top: 1rem;
}

.product-slide__details {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.5rem;
    color: #173325;
    font-weight: 600;
}

.product-slide__actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-slide__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.product-slide__button--primary {
    background: #0f231a;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

.product-slide__button--primary:hover {
    background: #1fb858;
    transform: translateY(-1px);
}

.product-slide__button--ghost {
    background: transparent;
}

.product-slide__media {
    width: 100%;
}

.product-swiper__pagination {
    margin-top: 1.75rem;
    position: static;
}

.product-swiper__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(171, 152, 90, 0.35);
    opacity: 1;
    margin: 0 6px !important;
}

.product-swiper__pagination .swiper-pagination-bullet-active {
    background: #AB985A;
    box-shadow: 0 6px 16px rgba(171, 152, 90, 0.35);
}

@media (max-width: 1024px) {
    .product-slide {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .product-slide__media {
        order: -1;
    }
}

@media (max-width: 640px) {
    .product-slide {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .product-slide__title {
        font-size: 1.6rem;
    }
}

.projects-carousel {
    display: flex;
    will-change: transform;
}

.project-card {
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-2px);
}


.projects-nav-btn {
    position: relative;
    background: #AB985A;
    color: #ffffff;
    border: none;
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

.projects-nav-btn:hover {
    transform: scale(1.06);
    background: #9a8750;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.projects-nav-btn:active {
    transform: scale(0.98);
}

.projects-nav-btn:disabled {
    opacity: 0.45;
    cursor: default;
    box-shadow: none;
}

.projects-swiper .swiper-slide {
    height: auto;
}


.upcoming-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upcoming-header h2,
.upcoming-header p {
    text-align: left;
}

.trending-section {
    position: relative;
    margin-top: 4rem;
    background: linear-gradient(135deg, #0f231a 0%, #173325 100%);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    color: #f7f4ec;
    box-shadow: 0 30px 60px rgba(9, 18, 13, 0.35);
    overflow: hidden;
}

.trending-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(171, 152, 90, 0.15), transparent 50%);
    pointer-events: none;
}

.trending-section__header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    text-align: left;
}

.trending-section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: #AB985A;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trending-section__title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.trending-section__copy {
    color: rgba(247, 244, 236, 0.9);
    max-width: 38rem;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Trending block-style cards */
.trending-blocks {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
}

.trending-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(171, 152, 90, 0.1);
}

.trending-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(171, 152, 90, 0.3);
}

.trending-card__media {
    position: relative;
    flex: 0 0 48%;
    min-height: 280px;
    overflow: hidden;
}

.trending-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trending-card:hover .trending-card__image {
    transform: scale(1.05);
}

.trending-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(23, 51, 37, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trending-card:hover .trending-card__overlay {
    opacity: 1;
}

.trending-card__body {
    flex: 1;
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: flex-start;
    background: #ffffff;
}

.trending-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.trending-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #173325;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.trending-card__description {
    color: #5a6c64;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.trending-card__price {
    color: #AB985A;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.trending-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #AB985A;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(171, 152, 90, 0.25);
}

.trending-card__button:hover {
    background: #9a8750;
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(171, 152, 90, 0.35);
}

.trending-card__button-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.trending-card__button:hover .trending-card__button-icon {
    transform: translateX(4px);
}

/* Blog Insights Section */
.insights-section {
    margin-top: 4rem;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3.5rem 3rem;
    box-shadow: 0 22px 50px rgba(9, 18, 13, 0.12);
}

.insights-header {
    text-align: left;
    margin-bottom: 2.75rem;
}

.insights-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.7rem;
    color: #AB985A;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #173325;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.insights-copy {
    color: #5a6c64;
    max-width: 40rem;
    margin: 0;
    line-height: 1.7;
}

.insights-featured {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.insights-featured__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insights-featured__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 15, 0.1) 0%, rgba(10, 20, 15, 0.85) 85%);
}

.insights-featured__content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2.75rem;
    color: #ffffff;
    max-width: 46rem;
}

.insights-featured__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.8rem 0 0.75rem;
}

.insights-featured__desc {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.insights-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(171, 152, 90, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.insights-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    border-color: rgba(171, 152, 90, 0.28);
}

.insights-card__media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.insights-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insights-card:hover .insights-card__image,
.insights-featured:hover .insights-featured__image {
    transform: scale(1.03);
}

.insights-card__body {
    padding: 1.75rem;
}

.insights-category {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    font-weight: 600;
    color: #AB985A;
}

.insights-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #173325;
    margin: 0.8rem 0 0.65rem;
}

.insights-card__desc {
    color: #5a6c64;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insights-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #7b8b84;
}

.insights-link {
    color: #173325;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.insights-link:hover {
    color: #AB985A;
}

/* Project Dialog Styles */
.project-dialog {
    backdrop-filter: blur(4px);
}

/* Call to Action Section */
.cta-section {
    position: relative;
    margin-top: 4rem;
    background: linear-gradient(135deg, #AB985A 0%, #c4a963 100%);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(171, 152, 90, 0.25);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15), transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button--primary {
    background: #173325;
    color: #ffffff;
    border-color: #173325;
}

.cta-button--primary:hover {
    background: #0f231a;
    border-color: #0f231a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 35, 26, 0.3);
}

.cta-button--secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

/* Featured Properties Section */
.featured-section {
    margin-top: 4rem;
    /* background: #ffffff; */
    border-radius: 1.5rem;
    padding: 3.75rem 3rem;
    /* box-shadow: 0 22px 50px rgba(9, 18, 13, 0.12); */
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle at 85% 15%, rgba(171, 152, 90, 0.12), transparent 55%); */
    pointer-events: none;
}

.featured-section__header {
    position: relative;
    z-index: 1;
    text-align: left;
    margin-bottom: 2.75rem;
}

.featured-section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: #AB985A;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.featured-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #173325;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.featured-section__copy {
    color: #5a6c64;
    max-width: 42rem;
    margin: 0;
    line-height: 1.7;
}

.featured-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.featured-card {
    background: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(171, 152, 90, 0.14);
    box-shadow: 0 14px 32px rgba(9, 18, 13, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(9, 18, 13, 0.18);
    border-color: rgba(171, 152, 90, 0.35);
}

.featured-card__media {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.featured-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-card__image {
    transform: scale(1.05);
}

.featured-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(23, 51, 37, 0.9);
    color: #ffffff;
    padding: 0.45rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
}

.featured-card__body {
    padding: 2rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.featured-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.featured-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #173325;
    letter-spacing: -0.01em;
}

.featured-card__location {
    color: #AB985A;
    font-weight: 600;
    font-size: 0.95rem;
}

.featured-card__description {
    color: #5a6c64;
    line-height: 1.65;
}

.featured-card__button {
    align-self: flex-start;
    background: #AB985A;
    color: #ffffff;
    border: none;
    padding: 0.85rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 16px rgba(171, 152, 90, 0.25);
}

.featured-card__button:hover {
    background: #9a8750;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(171, 152, 90, 0.3);
}

/* Project Dialog Styles continuation */

.project-dialog-content {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 2.25rem;
    height: 2.25rem;
    margin-top: -1.125rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.swiper-button-next {
    right: 0.75rem;
}

.swiper-button-prev {
    left: 0.75rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.1rem;
    line-height: 1;
    color: currentColor;
}

.swiper-button-next::after {
    content: '>';
}

.swiper-button-prev::after {
    content: '<';
}

.swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.project-gallery-swiper {
    position: relative;
}

.project-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-gallery-swiper .swiper-button-next,
.project-gallery-swiper .swiper-button-prev {
    color: #AB985A;
}

.project-gallery-swiper .swiper-pagination-bullet-active {
    background-color: #AB985A;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 4rem;
    /* background: #ffffff; */
    border-radius: 1.5rem;
    padding: 3.75rem 3rem;
    /* box-shadow: 0 22px 50px rgba(9, 18, 13, 0.12); */
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle at 15% 85%, rgba(171, 152, 90, 0.08), transparent 50%); */
    pointer-events: none;
}

.testimonials-section__header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 2.75rem;
}

.testimonials-section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: #AB985A;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.testimonials-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #173325;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.testimonials-section__copy {
    color: #5a6c64;
    /* max-width: 42rem; */
    margin: 0;
    line-height: 1.7;
    text-align: center;
}

.testimonials-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(171, 152, 90, 0.2);
    box-shadow: 0 12px 28px rgba(9, 18, 13, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(9, 18, 13, 0.15);
    border-color: rgba(171, 152, 90, 0.4);
}

.testimonial-card__quote {
    display: flex;
    justify-content: flex-start;
}

.testimonial-card__quote-icon {
    width: 2rem;
    height: 2rem;
    color: #AB985A;
    opacity: 0.5;
}

.testimonial-card__text {
    color: #5a6c64;
    line-height: 1.7;
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(171, 152, 90, 0.15);
}

.testimonial-card__avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #AB985A;
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #173325;
}

.testimonial-card__role {
    font-size: 0.85rem;
    color: #AB985A;
    font-weight: 500;
}

/* Instagram Section */
.instagram-section {
    margin-top: 4rem;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3.75rem 3rem;
    box-shadow: 0 22px 50px rgba(9, 18, 13, 0.12);
}

.instagram-section__header {
    text-align: left;
    margin-bottom: 2.75rem;
}

.instagram-section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: #AB985A;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.instagram-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #173325;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.instagram-section__copy {
    color: #5a6c64;
    max-width: 42rem;
    margin: 0;
    line-height: 1.7;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.instagram-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.instagram-card:hover {
    transform: scale(1.03);
}

.instagram-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-card:hover .instagram-card__image {
    transform: scale(1.08);
}

.instagram-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(171, 152, 90, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-card:hover .instagram-card__overlay {
    opacity: 1;
}

.instagram-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #ffffff;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0f231a 0%, #173325 100%);
    color: rgba(247, 244, 236, 0.9);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 15%, rgba(171, 152, 90, 0.1), transparent 50%);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(171, 152, 90, 0.2);
}

.footer-column__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #AB985A;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-column__text {
    color: rgba(247, 244, 236, 0.9);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social__link {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(171, 152, 90, 0.15);
    border-radius: 50%;
    color: #AB985A;
    transition: all 0.3s ease;
}

.footer-social__link:hover {
    background: #AB985A;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-social__link svg {
    width: 1.125rem;
    height: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(247, 244, 236, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #AB985A;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(247, 244, 236, 0.9);
}

.footer-contact__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: #AB985A;
    margin-top: 0.15rem;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter__input {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(171, 152, 90, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter__input::placeholder {
    color: rgba(247, 244, 236, 0.5);
}

.footer-newsletter__input:focus {
    border-color: #AB985A;
    background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter__button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    background: #AB985A;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-newsletter__button:hover {
    background: #9a8750;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(171, 152, 90, 0.3);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(247, 244, 236, 0.7);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal__divider {
    color: rgba(247, 244, 236, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-controls {
        padding: 0.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .project-dialog-content {
        flex-direction: column;
        max-height: 95vh;
    }
    
    .project-dialog-content > div:first-child {
        height: 40vh;
    }
    
    .project-dialog-content > div:last-child {
        height: 60vh;
    }
    
    .project-indicators {
        margin-top: 1rem;
    }
    
    .projects-carousel-wrapper {
        margin-bottom: 2rem;
    }

    .projects-nav-btn {
        display: none;
    }

    .upcoming-header h2,
    .upcoming-header p {
        text-align: center;
    }

    .upcoming-controls {
        display: none;
    }

    .trending-section {
        padding: 3rem 1.5rem;
    }

    .trending-section__header {
        margin-bottom: 2.5rem;
    }

    .trending-section__title {
        font-size: 2rem;
    }

    .trending-section__copy {
        font-size: 0.95rem;
    }

    .trending-card {
        flex-direction: column;
    }

    .trending-card__media {
        flex: 0 0 auto;
        min-height: 250px;
    }

    .trending-card__body {
        padding: 2rem 1.5rem;
    }

    .trending-card__title {
        font-size: 1.5rem;
    }

    .trending-card__description {
        font-size: 0.9rem;
    }

    .trending-card__price {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .trending-card__button {
        width: 100%;
    }

    .insights-section {
        padding: 2.75rem 1.5rem;
    }

    .insights-title {
        font-size: 2rem;
    }

    .insights-featured {
        min-height: 300px;
    }

    .insights-featured__content {
        padding: 2rem 1.75rem;
    }

    .insights-featured__title {
        font-size: 1.6rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insights-card__media {
        height: 200px;
    }

    .cta-section {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
    }

    .cta-title {
        font-size: 1.875rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        margin-bottom: 2.5rem;
    }

    .cta-button {
        width: 100%;
    }

    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .featured-section {
        padding: 3rem 1.5rem;
    }

    .featured-section__title {
        font-size: 2rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card__media {
        height: 210px;
    }

    .featured-card__body {
        padding: 1.75rem;
        text-align: left;
    }

    .featured-card__button {
        align-self: flex-start;
        width: 100%;
    }

    .testimonials-section {
        padding: 3rem 1.5rem;
    }

    .testimonials-section__title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .instagram-section {
        padding: 3rem 1.5rem;
    }

    .instagram-section__title {
        font-size: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

