@font-face {
    font-family: "Amsterdam One";
    src: url("../fonts/amsterdam-one.ttf") format("truetype");
}

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Baskerville Serial", sans-serif;
    background: #fffaf4;
    transition: overflow 0.2s;
}

/* ---------- HEADER STYLES ---------- */
.site-header {
    background: #ffffff;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eef2f6;
}

.header-container {
    max-width: 1300px;
    margin: auto;
}

/* desktop navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.9rem 0;
}

.nav-left,
.nav-right {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
}

.nav-left li a,
.nav-right li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    color: #1e293b;
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
    white-space: nowrap;
     font-family: Baskerville;
}

.nav-left li a:hover,
.nav-right li a:hover {
    color: #2c7da0;
    transform: translateY(-1px);
}

/* logo image styling */
.logo-img {
    display: block;
    height: 60px;
    width: auto;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.85;
}

/* mobile header (visible only below 768px) */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
}

.mobile-header .logo-img {
    height: 60px;
}

.hamburger {
    background: transparent;
    border: none;
    font-size: 1.9rem;
    cursor: pointer;
    color: #1e2a3e;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    transition: background 0.2s;
    line-height: 1;
}

.hamburger:hover {
    background: #f1f5f9;
}

/* ---------- OFF‑CANVAS DRAWER (slides from left) ---------- */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: #ffffff;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: left 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.2rem;
}

.mobile-drawer.open {
    left: 0;
}

/* drawer header: logo + close button */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eef2f6;
}

.drawer-logo-img {
    height: 38px;
    width: auto;
}

.close-drawer {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #475569;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}

.close-drawer:hover {
    color: #1e293b;
}

/* drawer navigation links */
.drawer-nav {
    flex: 1;
}

.drawer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.drawer-nav ul li a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    display: block;
    padding: 0.4rem 0;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.drawer-nav ul li a:hover {
    color: #2c7da0;
    padding-left: 8px;
    border-left-color: #2c7da0;
}

/* hide drawer & overlay on desktop */
@media (min-width: 769px) {
    .drawer-overlay,
    .mobile-drawer {
        display: none;
    }
}

/* responsive breakpoint */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .drawer-nav ul li a {
        font-size: 1rem;
    }

    .mobile-drawer {
        width: 310px;
    }
}

/* accessibility focus */
.hamburger:focus-visible,
.close-drawer:focus-visible,
a:focus-visible {
    outline: 2px solid #2c7da0;
    outline-offset: 4px;
    border-radius: 4px;
}

/* HERO BANNER */
.hero-banner {
    position: relative;
    height: 90vh;
    background: url("../images/Banner-1.png") no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0 100px;
}

/* Content */
.hero-content {
    position: relative;
    color: white;
    max-width: 600px;
}

/* Title */
.hero-title {
     font-family: "Amsterdam One", cursive;
    font-size: 50px;
    line-height: 2.2;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Search box */
.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    width: 465px;
}

.search-box input {
    border: none;
    padding: 16px 20px;
    flex: 1;
    outline: none;
    font-size: 16px;
}

.search-box button {
    background: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        padding: 0 20px;
        height: 30vh;
    }

    .hero-title {
        font-size: 25px;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* ================= ABOUT SECTION ================= */
.about-section {
   background: #f5f2ed;
    padding: 40px 20px 80px;
}

.about-container {
   max-width: 1300px;
    margin: auto;
}

/* Title */
.about-title {
    font-family: "Baskerville", serif;
    font-size: 67px;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 500;
    word-spacing: 8px;
    letter-spacing: 4px;
}

/* Text */
.about-text {
 font-family: "Baskerville", serif;
    font-size: 30px;
    line-height: 1.5;
    color: #1e293b;
    margin-bottom: 35px;
    padding-left: 254px;
    letter-spacing: 3px;
    word-spacing: 3px;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #cdb9a3;
    color: #1e293b;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 25px;
    font-family: "Baskerville", serif;
}

.about-btn:hover {
    background: #1e293b;
    color: #ffffff;
    transform: translateY(-2px);
}

.about-container {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

/* Laptop / Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .about-container {
        padding: 60px 50px;
    }

    .about-title {
        font-size: 30px;
    }

    .about-text {
        font-size: 20px;
    }
}

/* Tablet (≤ 768px) */
@media (max-width: 768px) {
    .about-section {
        padding: 70px 20px 40px;
    }

    .about-container {
        padding: 50px 30px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-text {
        font-size: 18px;
        line-height: 1.7;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .about-section {
        padding: 50px 15px 30px;
    }

    .about-container {
        padding: 35px 20px;
        border-radius: 8px;
    }

    .about-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}


/* ================= LUXURY SECTION ================= */

/* WRAPPER */
.luxury-wrapper {
    max-width: 1300px;
    margin: auto;
    /* display: flex;
    align-items: flex-start; */
}

/* LEFT TEXT BOX */
.luxury-text {
    width: 100%;
    margin-top: 50px;
     /* background: #cbb9a6; */
}

.luxury-text h2 {
   font-family: "Baskerville", serif;
    font-size: 67px;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 500;
    word-spacing: 8px;
    letter-spacing: 4px;
}

.luxury-text p {
   font-family: "Baskerville", serif;
    font-size: 30px;
    line-height: 1.8;
    color: #1e293b;
    margin-bottom: 35px;
    padding-left: 254px;
    letter-spacing: 3px;
    word-spacing: 3px;
}

/* RIGHT IMAGE */
.luxury-image {
    width: 100%;
    overflow: hidden;
}

/* IMAGE */
.luxury-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    animation: zoomInOut 8s ease-in-out infinite alternate;
}

/* ZOOM ANIMATION */
@keyframes zoomInOut {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

/* ================= RESPONSIVE ================= */

/* Large Tablets (≤ 1024px) */
@media (max-width: 1024px) {
    .luxury-text {
        width: 40%;
        padding: 30px 25px;
    }

    .luxury-image {
        width: 60%;
        margin-top: 60px;
    }

    .luxury-text h2 {
        font-size: 28px;
    }

    .luxury-text p {
        font-size: 18px;
    }

    .luxury-image img {
        height: 350px;
    }
}

/* Tablets (≤ 768px) */
@media (max-width: 768px) {

    .luxury-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .luxury-text,
    .luxury-image {
        width: 100%;
    }

    .luxury-image {
        margin-top: 0;
    }

    .luxury-text {
        padding: 25px 20px;
    }

    .luxury-text h2 {
        font-size: 24px;
    }

    .luxury-text p {
        font-size: 17px;
        line-height: 1.5;
    }

    .luxury-image img {
        height: auto;
        max-height: 320px;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {

    .luxury-text {
        padding: 20px 15px;
    }

    .luxury-text h2 {
        font-size: 20px;
    }

    .luxury-text p {
        font-size: 15px;
    }

    .luxury-image img {
        max-height: 250px;
    }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 80px 40px;
}

/* WRAPPER */
.contact-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

/* LEFT TEXT */
/* .contact-text {
    width: 40%;
    padding: 40px;
    margin-top: 10px;
} */

.contact-text h2 {
    font-family: "Baskerville", serif;
    font-size: 64px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 500;
}

.contact-text h3 {
    font-family: "Baskerville", serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.3;
}

.contact-text p {
        letter-spacing: 3px;
    font-size: 24px;
    color: #1e293b;
    word-spacing: 10px;
    font-weight: 500;
     font-family: "Baskerville", serif;
}



.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #1f1f1f;
    font-size: 24px;
    transition: 0.3s ease;
}

.option-item:hover {
    transform: translateX(10px);
}

.arrow {
    font-size: 30px;
    line-height: 1;
}

.or-text {
    text-align: center;
    font-size: 42px;
    font-style: italic;
    margin-bottom: 40px;
    color: #1f1f1f;
}

.requirements-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    text-decoration: none;
    color: #1f1f1f;
    transition: 0.3s ease;
}

.requirements-link:hover {
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .option-item {
        font-size: 24px;
    }

    .requirements-link {
        font-size: 28px;
    }

    .or-text {
        font-size: 32px;
    }
}

/* FORM BOX */
.contact-form {
    width: 40%;
    background: #ffffff;
    padding: 40px;
    border: 1px solid #aaa;
}

/* FORM GRID */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #1e293b;
}

.form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #444;
    outline: none;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

/* INPUTS */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #444;
    outline: none;
    font-size: 14px;
}

/* TEXTAREA */
textarea {
    resize: none;
}

/* BUTTON */
.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit button {
    display: inline-block;
    padding: 10px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid #1e293b;
    background: #bfa98e;
}

.form-submit button:hover {
    background: #1e293b;
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */

/* Large Tablets (≤ 1024px) */
@media (max-width: 1024px) {
    .contact-text {
        width: 35%;
        padding: 30px;
    }

    .contact-form {
        width: 55%;
        padding: 30px;
    }

    .contact-text h2 {
        font-size: 24px;
    }
}

/* Tablets (≤ 768px) */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .contact-text,
    .contact-form {
        width: 100%;
    }

    .contact-text {
        margin-top: 0;
        text-align: center;
    }

    .contact-form {
        padding: 25px 20px;
    }

    /* Stack form fields */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-text {
        padding: 20px 15px;
    }

    .contact-text h2 {
        font-size: 20px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .contact-form {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 13px;
        padding: 8px 10px;
    }

    .form-submit button {
        padding: 8px 30px;
        font-size: 14px;
    }
}

/* ================= LISTING ================= */

.listing-section {
    background: #f5f2ed;
    padding: 40px 20px 80px;
     font-family: "Cormorant Garamond", serif;
}

/* HEADER */
.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.listing-header h2 {
    font-family: "Baskerville", serif;
    font-size: 40px;
}

/* BUTTON */
.slider-btn {
    background: rgba(203, 185, 166, 0.7);
    backdrop-filter: blur(6px);
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.slider-btn:hover {
    transform: scale(1.1);
}

/* SLIDER */
.slider-container {
    overflow-x: auto;
    scroll-behavior: smooth;
     max-width: 1300px;
    margin: auto;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
}

/* ================= CARD ================= */

/* DESKTOP = 4 CARDS */
.listing-card {
    flex: 0 0 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
    scroll-snap-align: start;
}

.listing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.listing-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.listing-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.listing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent); */
    opacity: 0;
    transition: 0.4s;
}

.listing-card:hover::after {
    opacity: 1;
}

/* TEXT */
.listing-card p {
    margin: 12px;
    font-size: 25px;
    font-family: "Baskerville", serif;
    line-height: 1.5;
    color: #2d2d2d;
}

/* ================= PARTNERS ================= */

.partners-section {
    background: #f5f2ed;
    padding: 40px 20px 80px;
     font-family: "Cormorant Garamond", serif;
    text-align: center;
}

.partners-title {
    font-family: "Baskerville", serif;
    font-size: 55px;
    margin-bottom: 40px;
    color: #1e293b;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 55px;
    align-items: center;
}

.partners-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */

/* 3 CARDS */
@media (max-width: 1024px) {
    .listing-section {
        padding: 50px 30px;
    }

    .listing-card {
        flex: 0 0 calc((100% - 40px) / 3);
        max-width: calc((100% - 40px) / 3);
    }

    .listing-card img {
        height: 160px;
    }

    .partners-section {
        padding: 60px 40px;
    }

    .partners-title {
        font-size: 32px;
    }
}

/* 2 CARDS */
@media (max-width: 768px) {
    .listing-section {
        padding: 40px 20px;
    }

    .listing-header h2 {
        font-size: 22px;
    }

    .slider-btn {
        padding: 8px 10px;
        font-size: 14px;
    }

    .listing-card {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }

    .listing-card img {
        height: 140px;
    }

    .listing-card p {
        font-size: 15px;
    }

    .partners-section {
        padding: 50px 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* 1 CARD */
@media (max-width: 480px) {
    .listing-section {
        padding: 30px 15px;
    }

    .listing-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .listing-header h2 {
        font-size: 20px;
    }

    .slider-btn {
        align-self: flex-end;
    }

    .listing-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .listing-card img {
        height: 160px;
    }

    .listing-card p {
        font-size: 14px;
    }

    /* Partners */
    .partners-section {
        padding: 40px 15px;
    }

    .partners-title {
        font-size: 26px;
    }

    .partners-box {
        padding: 25px 15px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Animation */
@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= PARTNERS ================= */

/* BOX */
.partners-box {
    border: 1px solid #999;
    border-radius: 20px;
    padding: 40px 20px;
}

/* LOGOS */
.partners-grid img {
    width: 100%;
    max-height: 60px;
    object-fit: cover;
    transition: 0.3s ease;
}

/* HOVER 🔥 */
.partners-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */

/* Large Tablets (≤ 1024px) */
@media (max-width: 1024px) {
    .listing-section {
        padding: 50px 30px;
    }

    .listing-card {
        min-width: 260px;
        width: 260px;
    }

    .listing-card img {
        height: 160px;
    }

    .listing-card p {
        font-size: 16px;
    }

    .partners-section {
        padding: 60px 40px;
    }

    .partners-title {
        font-size: 32px;
    }
}

/* Tablets (≤ 768px) */
@media (max-width: 768px) {
    .listing-section {
        padding: 40px 20px;
    }

    .listing-header h2 {
        font-size: 22px;
    }

    .slider-btn {
        padding: 8px 10px;
        font-size: 14px;
    }

    .listing-card {
        min-width: 220px;
        width: 220px;
    }

    .listing-card img {
        height: 140px;
    }

    .listing-card p {
        font-size: 15px;
    }

    .partners-section {
        padding: 50px 20px;
    }

    .partners-grid {
        gap: 30px;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .listing-section {
        padding: 30px 15px;
    }

    .listing-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .listing-header h2 {
        font-size: 20px;
    }

    .slider-btn {
        align-self: flex-end;
    }

    .listing-card {
        min-width: 85%;
        width: 85%;
    }

    .listing-card img {
        height: 160px;
    }

    .listing-card p {
        font-size: 14px;
    }

    /* Partners */
    .partners-section {
        padding: 40px 15px;
    }

    .partners-title {
        font-size: 26px;
    }

    .partners-box {
        padding: 25px 15px;
    }

    .partners-grid {
        gap: 20px;
    }
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= TESTIMONIAL ================= */
.testimonial-section {
    background: #f5f2ed;
    padding: 40px 20px 80px;
      font-family: "Cormorant Garamond", serif;
    text-align: center;
}

.testimonial-title {
    font-family: "Baskerville", serif;
    font-size: 55px;
    margin-bottom: 50px;
}

/* WRAPPER */
.testimonial-wrapper {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

/* COMMON */
.layer {
    position: absolute;
    height: 100%;
}

/* ================= LEFT SIDE ================= */
.left-1 {
    width: 85%;
    background: #e9dccd;
    height: 471px;
    top: 181px;
    left: -140px;
    z-index: 1;
}

.left-2 {
    width: 90%;
    background: #cbb9a6;
    height: 547px;
    top: 105px;
    left: -80px;
    z-index: 2;
}

/* ================= RIGHT SIDE ================= */
.right-1 {
    width: 85%;
    background: #e9dccd;
    height: 471px;
    top: 181px;
    right: -140px;
    z-index: 1;
}

.right-2 {
    width: 90%;
    background: #cbb9a6;
    height: 547px;
    top: 105px;
    right: -80px;
    z-index: 2;
}

/* ================= MAIN ================= */
.testimonial-main {
    position: relative;
    background: #bfa98e;
    padding: 50px;
    z-index: 3;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: #f5f1ea;
    padding: 30px 25px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 45px;
    color: #bfa98e;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-family: "Baskerville", serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-card h5 {
    font-size: 18px;
    font-style: italic;
}

/* ================= RESPONSIVE ================= */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
    .testimonial-section {
        padding: 60px 20px;
    }

    .testimonial-title {
        font-size: 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-main {
        padding: 30px;
    }

    /* Reduce layer overflow */
    .left-1,
    .right-1 {
        width: 100%;
        left: -60px;
        right: -60px;
    }

    .left-2,
    .right-2 {
        width: 100%;
        left: -30px;
        right: -30px;
    }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
    .testimonial-section {
        padding: 40px 15px;
    }

    .testimonial-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .testimonial-main {
        padding: 20px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-card p {
        font-size: 15px;
    }

    .testimonial-card h5 {
        font-size: 14px;
    }

    .quote {
        font-size: 30px;
    }

    /* Hide heavy background layers on mobile */
    .layer {
        display: none;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 80px;
}

/* CONTAINER */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT */
.footer-left {
    max-width: 500px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.copyright {
    margin-bottom: 40px;
    font-size: 14px;
}

/* CONTACT */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 18px;
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 50%;
}

/* RIGHT */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 25px;
}

.social-icons i {
    cursor: pointer;
    transition: 0.3s;
    font-size: 28px;
}

.social-icons i:hover {
    color: #cbb9a6;
    transform: scale(1.2);
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    gap: 25px;
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #cbb9a6;
}

/* ================= RESPONSIVE ================= */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 40px;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-right {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
        gap: 15px;
    }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-logo {
        width: 140px;
    }

    .social-icons i {
        font-size: 24px;
    }

    .contact-item i {
        font-size: 16px;
        padding: 8px;
    }

    .footer-bottom {
        font-size: 12px;
        gap: 10px;
    }
}

/* buy page style / */

/* ================= BUY BANNER ================= */

/* .buy-banner {
    position: relative;
    background: url("/images/buy-banner.jpg") no-repeat center center/cover;
    width: 100%;
    height: 600px;

} */


.buy-banner {
    position: relative;
    background-image: url("/images/buy-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    min-height: 90vh;
}

/* DARK OVERLAY */
.buy-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}

/* CONTENT */
.buy-container {
    position: relative;
    z-index: 2;
    color: #fff;
   max-width: 1300px;
    margin: auto;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .buy-banner {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .buy-banner {
        height: 300px;
        padding: 15px;
    }

}

.buy-container {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* sall banner  */


.sell-banner {
    position: relative;
    background-image: url("/images/sell-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    min-height: 90vh;
}

/* DARK OVERLAY */
.sell-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}

/* CONTENT */
.sell-container {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1300px;
    margin: auto;
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .sell-banner {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .sell-banner {
        height: 300px;
        padding: 15px;
    }
}

.sell-container {
    animation: fadeUp 1s ease forwards;
}



/* Plots banner  */


.plots-banner {
    position: relative;
    background-image: url("/images/plots-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    min-height: 90vh;
}

/* DARK OVERLAY */
.plots-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}

/* CONTENT */
.plots-container {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1300px;
    margin: auto;
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .plots-banner {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .plots-banner {
        height: 300px;
        padding: 15px;
    }
}

.plots-container {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Maps banner  */

.maps-banner {
    position: relative;
    background-image: url("/images/map-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    min-height: 90vh;
}

/* DARK OVERLAY */
.maps-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}

/* CONTENT */
.maps-container {
    position: relative;
    z-index: 2;
    color: #fff;
     max-width: 1300px;
    margin: auto;
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .maps-banner {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .maps-banner {
        height: 300px;
        padding: 15px;
    }
}

.maps-container {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




 /*  ******************* services banner *******************  */

.services-banner {
    position: relative;
    background-image: url("/images/services-banner.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    min-height: 90vh;
}

/* DARK OVERLAY */
.services-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}

/* CONTENT */
.services-container {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1300px;
    margin: auto;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .services-banner {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .services-banner {
        height: 300px;
        padding: 15px;
    }

}

.services-container {
    animation: fadeUp 1s ease forwards;
}


 /*  ******************* blog banner *******************  */

.blog-banner {
    position: relative;
    background-image: url("/images/blog-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    min-height: 90vh;
}

/* DARK OVERLAY */
.blog-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}

/* CONTENT */
.blog-container {
    position: relative;
    z-index: 2;
    color: #fff;
     max-width: 1300px;
    margin: auto;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .blog-banner {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .blog-banner {
        height: 300px;
        padding: 15px;
    }

}

.blog-container {
    animation: fadeUp 1s ease forwards;
}


 /*  ******************* about banner *******************  */

.about-banner {
    position: relative;
    background-image: url("/images/about-us-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    min-height: 90vh;
}

/* DARK OVERLAY */
.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}

/* CONTENT */
/* .about-container {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
} */

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .about-banner {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .about-banner {
        height: 300px;
        padding: 15px;
    }

}

.services-container {
    animation: fadeUp 1s ease forwards;
}


/* interior-gallery  */

.interior-gallery {
    padding: 80px 0;
    background: #f5f2ed;
}

.gallery-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Top Large Image */
.gallery-item {
    overflow: hidden;
    border-radius: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Large Top Image */
.gallery-item.large {
    height: 420px;
    margin-bottom: 20px;
}

/* Bottom Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* Different Heights */
.gallery-item.small {
    height: 320px;
}

.gallery-item.medium {
    height: 320px;
}

/* Responsive */
@media (max-width: 768px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        height: 300px;
    }

    .gallery-item.small,
    .gallery-item.medium {
        height: 250px;
    }
}

/* sell page styling  */






/* ================= SELL PAGE ================= */

.sell-heading {
    font-size: 40px;
    font-family: "Amsterdam One", cursive;
    line-height: 1.5;
    letter-spacing: 3px;
    color: #1e293b;
}

.sell-desc {
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .sell-heading {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .sell-desc {
        font-size: 15px;
    }
}   


/* ================= VALUE SECTION ================= */

.value-section {
    background: #f5f2ed;
    padding: 40px 20px 80px;
     font-family: "Cormorant Garamond", serif;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.section-title {
    font-size: 60px;
    font-weight: 400;
    color: #1f1f1f;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.value-card {
    background: #f7f7f7;
    border: 1px solid #2f2f2f;
    border-radius: 30px;
    padding: 35px 25px 45px;
    text-align: center;
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.card-image {
    width: 260px;
    height: 260px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card h3 {
    font-size: 42px;
    font-weight: 400;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.value-card p {
    font-size: 20px;
    line-height: 1.4;
    color: #1f1f1f;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {

    .value-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 42px;
    }

    .value-card h3 {
        font-size: 34px;
    }

    .card-image {
        width: 220px;
        height: 220px;
    }
}

/* ================= PLOTS PAGE ================= */

.plots-heading {
    font-size: 40px;
    font-family: "Amsterdam One", cursive;
    line-height: 1.5;
    letter-spacing: 3px;
    color: #1e293b;
}

.plots-desc {
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .plots-heading {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .plots-desc {
        font-size: 15px;
    }
}


/* projects  */

.projects-section {
   background: #f5f2ed;
    padding: 40px 20px 80px;
      font-family: "Cormorant Garamond", serif;
}


.section-title {
    font-size: 60px;
    font-weight: 400;
    color: #111;
    margin-bottom: 30px;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.project-card {
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    margin-bottom: 12px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Typography */
.project-card h3 {
    font-size: 38px;
    font-weight: 400;
    color: #111;
    margin-bottom: 6px;
}

.location {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
}

.details,
.meta {
    font-size: 18px;
    line-height: 1.5;
    color: #222;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
}

.page-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    border-radius: 50%;
    font-size: 32px;
    font-family: "Cormorant Garamond", serif;
    cursor: pointer;
    transition: 0.3s ease;
}

.page-btn.active {
    background: #d6c5af;
}

.page-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 42px;
    }

    .project-card h3 {
        font-size: 30px;
    }

    .project-image {
        height: 220px;
    }
}



/* maps section  */

.maps-section {
   background: #f5f2ed;
    padding: 40px 20px 80px;
     font-family: "Cormorant Garamond", serif;
}

.maps-container {
    max-width: 1300px;
    margin: auto;
}

/* Header */
.maps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.maps-header h2 {
    font-size: 42px;
    font-weight: 400;
    color: #111;
}

.search-btn {
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.1);
}

/* Grid */
.maps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}

/* Map Card */
.map-card {
    width: 100%;
}

.map-image {
    width: 100%;
    height: 315px;
    overflow: hidden;
    margin-bottom: 10px;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Titles */
.map-card h3,
.map-link {
    font-size: 22px;
    font-weight: 400;
    color: #111;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.page-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: transparent;
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    cursor: pointer;
    transition: 0.3s ease;
}

.page-btn.active {
    background: #d8c4ab;
}

.page-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {

    .maps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .maps-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {

    .maps-grid {
        grid-template-columns: 1fr;
    }

    .map-image {
        height: 220px;
    }
}


.passion-banner {
    width: 100%;
    height: 450px;
    background: url("/images/passion-banner.jpg") no-repeat center center/cover;
}

/* Responsive */
@media (max-width: 992px) {

    .passion-banner {
        height: 320px;
    }
}

@media (max-width: 576px) {

    .passion-banner {
        height: 220px;
    }
}


.blogs-banner {
    width: 100%;
    height: 450px;
    background: url("/images/blogs-banner.jpg") no-repeat center center/cover;
}

/* Responsive */
@media (max-width: 992px) {

    .blogs-banner {
        height: 320px;
    }
}

@media (max-width: 576px) {

    .blogs-banner {
        height: 220px;
    }
}


.team-section {
    background: #f5f2ed;
    padding: 40px 20px 80px;
     font-family: "Cormorant Garamond", serif;
}

.team-container {
    max-width: 1300px;
    margin: auto;
}

/* Top Border */
.section-line {
    width: 100%;
    height: 1px;
    background: #8b8b8b;
    margin-bottom: 40px;
}

/* Heading */
.team-title {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.05;
    color: #111;
    margin-bottom: 50px;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 28px;
}

/* Card */
.team-card {
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Image */
.team-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 12px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Info */
.team-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.team-info h3 {
    font-size: 34px;
    font-weight: 400;
    color: #111;
}

/* Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-title {
        font-size: 52px;
    }
}

@media (max-width: 576px) {

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-title {
        font-size: 40px;
    }

    .team-image {
        height: 300px;
    }

    .team-info h3 {
        font-size: 26px;
    }
}

.space-section {
    background: #f5f2ed;
    padding: 60px 20px 80px;
    font-family: "Cormorant Garamond", serif;
}

.space-container {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.space-title {
    font-size: 78px;
    font-weight: 400;
    line-height: 1.05;
    color: #111;
    margin-bottom: 70px;
}

/* Content Layout */
.space-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Row */
.space-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: start;
    gap: 40px;
}

/* Left Label */
.space-label {
    font-size: 34px;
    color: #111;
    letter-spacing: 1px;
}

/* Right Text */
.space-text {
    font-size: 38px;
    line-height: 1.2;
    color: #111;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {

    .space-title {
        font-size: 56px;
    }

    .space-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .space-label {
        font-size: 28px;
    }

    .space-text {
        font-size: 30px;
    }
}

@media (max-width: 576px) {

    .space-section {
        padding: 40px 20px 60px;
    }

    .space-title {
        font-size: 42px;
    }

    .space-label {
        font-size: 24px;
    }

    .space-text {
        font-size: 24px;
    }
}

.insights-section {
    background: #f5f2ed;
    padding: 40px 20px 70px;
    font-family: "Cormorant Garamond", serif;
}

.insights-container {
    max-width: 1300px;
    margin: auto;
}

/* Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 18px;
    align-items: start;
}

/* Card */
.insight-card {
    transition: 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

/* Image */
.insight-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 10px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
    transition: 0.4s ease;
}

.insight-card:hover img {
    transform: scale(1.05);
}

/* Text */
.insight-card p {
    font-size: 18px;
    line-height: 1.25;
    color: #111;
}

/* Expand Area */
.expand-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 180px;
}

.expand-btn {
    border: none;
    background: transparent;
    font-size: 48px;
    font-family: "Cormorant Garamond", serif;
    cursor: pointer;
    color: #111;
    transition: 0.3s ease;
}

.expand-btn:hover {
    transform: translateY(5px);
}

/* Responsive */
@media (max-width: 992px) {

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-image {
        height: 220px;
    }

    .expand-btn {
        font-size: 38px;
    }
}

.market-article {
    background: #f5f2ed;
    padding: 60px 20px;
    font-family: "Cormorant Garamond", serif;
}

.article-container {
    max-width: 820px;
    margin: auto;
}

/* Title */
.article-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 400;
    text-align: center;
    color: #111;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* Meta */
.article-meta {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    color: #111;
}

/* Content */
.article-content {
    color: #111;
}

.article-content p {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.article-content ul {
    padding-left: 35px;
    margin-bottom: 35px;
}

.article-content li {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {

    .article-title {
        font-size: 48px;
    }

    .article-content p,
    .article-content li {
        font-size: 24px;
    }
}

@media (max-width: 576px) {

    .market-article {
        padding: 40px 20px;
    }

    .article-title {
        font-size: 34px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .article-content p,
    .article-content li {
        font-size: 20px;
    }
}

