body {
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
    background: #151515;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("./images/h-1.png") no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0 5%;
    color: #fff;
    overflow: hidden;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    z-index: 1;
}

/* TITLE */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* SPECS CONTAINER */
.hero-specs {
    position: absolute;
    bottom: 30px;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

/* SPEC ITEM */
.spec {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* ICON */
.spec img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

/* TEXT */
.spec-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* LABEL */
.spec .label {
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
    font-size: 14px;
    opacity: 0.7;
}

/* VALUE */
.spec h2 {
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
}

/* DIVIDER */
/* .spec:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255,255,255,0.3);
} */

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .spec h2 {
        font-size: 22px;
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

    .hero {
        height: 85vh;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-specs {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px 0;
    }

    .spec {
        width: 48%;
        /* ✅ 2 per row */
    }

    .spec::after {
        display: none;
        /* remove divider */
    }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {

    .hero {
        height: 100vh;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .spec img {
        width: 20px;
        height: 20px;
    }

    .spec h2 {
        font-size: 20px;
    }

    .spec .label {
        font-size: 14px;
    }
}

/* contact */
.enquire-section {
    background: #1c1c1c;
    padding: 80px 20px;
    color: #fff;
}

/* CONTAINER */
.container-c {
    max-width: 1000px;
    margin: 0 auto;
}

/* TITLE */
.title {
    font-size: 34px;
    font-weight: 500;
    color: #c48a6a;
    /* copper tone */
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* SUBTITLE */
.subtitle {
    color: #aaa;
    margin-bottom: 40px;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* FORM */
.enquire-form {
    width: 100%;
}

/* ROW */
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

/* GROUP */
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* LABEL */
.form-group label {
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group label span {
    color: red;
}

/* INPUT */
.form-group input {
    height: 50px;
    background: #dcdcdc;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}

/* CHECKBOX */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 40px;
}

.checkbox-group label {
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
}

/* BUTTON */
.submit-btn {
    width: 300px;
    height: 50px;
    background: #7a5a4a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

.submit-btn:hover {
    background: #926b57;
}

input[type="checkbox"] {
    appearance: auto;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

input::placeholder {
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* TABLET */
@media (max-width: 992px) {
    .title {
        font-size: 28px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .submit-btn {
        width: 100%;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 14px;
    }

    .form-group input {
        height: 45px;
    }
}

/* ABOUT SECTION */
.about-section {
    background: #151515;
    padding: 80px 0px 50px 0px;
    color: #ddd;
}

/* CONTAINER */
.container-a {
    max-width: 1110px;
    margin: 0 auto;
}

/* TITLE */
.about-title {
    text-align: center;
    color: #c48a6a;
    /* copper tone */
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* PARAGRAPHS */
.about-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* LINK TEXT */
.about-link {
    margin-top: 10px;
}

/* LINK STYLE */
.about-link a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.about-link a:hover {
    color: #c48a6a;
}

/* TABLET */
@media (max-width: 992px) {
    .about-title {
        font-size: 28px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px 20px 20px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-section p {
        font-size: 14px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .about-title {
        font-size: 20px;
    }

    .exterior-section {
        background: #151515;
        padding: 80px 20px !important;
        color: #fff;
    }
}



/* HIGHLIGHTS SECTION */
.highlights-section {
    background: #151515;
    padding: 50px 20px;
    color: #fff;
}

.container-h {
    max-width: 1110px;
    margin: auto;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

.section-title {
    text-align: center;
    color: #c48a6a;
    font-size: 32px;
    margin-bottom: 50px;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* DESKTOP GRID */
.highlights-wrapper {
    display: flex;
    gap: 30px;
}

/* CARD */
.highlight-card {
    flex: 1;
}

.highlight-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.highlight-card p {
    margin-top: 15px;
    color: #c48a6a;
    font-size: 14px;
    font-weight: 500;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* ========================= */
/* 📱 MOBILE SLIDER */
/* ========================= */
@media (max-width: 768px) {

    .highlights-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
    }

    .highlight-card {
        min-width: 85%;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }

    /* hide scrollbar */
    .highlights-wrapper::-webkit-scrollbar {
        display: none;
    }

    .highlights-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .highlight-card img {
        height: 220px;
    }
}

/* SECTION */
.exterior-section {
    background: #151515;
    padding: 50px 20px;
    color: #fff;
}

.container-e {
    max-width: 1110px;
    margin: auto;
}

/* TITLE */
.section-title {
    text-align: center;
    color: #c48a6a;
    font-size: 32px;
    margin-bottom: 50px;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* WRAPPER */
.exterior-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.exterior-image-box {
    position: relative;
    flex: 1;
}

.exterior-image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* TEXT */
.exterior-text {
    flex: 1;
}

.exterior-text h3 {
    color: #c48a6a;
    font-size: 26px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

.exterior-text p {
    color: #aaa;
    line-height: 1.6;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Arial, sans-serif;
}

/* CONTROLS */
.controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

/* BUTTON */
.controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #1a1a1a;
    color: #c48a6a;
    font-size: 20px;
    cursor: pointer;
}

.controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.controls1 button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #1a1a1a;
    color: #c48a6a;
    font-size: 20px;
    cursor: pointer;
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 768px) {

    .exterior-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .exterior-image-box img {
        height: 250px;
    }

    /* CONTROLS ON IMAGE */
    .controls {
        position: absolute;
        /* bottom: 15px; */
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.5);
        padding: 8px 3px;
        border-radius: 30px;
    }

    .controls1 {
        position: absolute;
        /* bottom: 240px; */
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.5);
        padding: 8px 3px;
        border-radius: 30px;
    }

    .controls button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .exterior-text {
        text-align: center;
    }

    .exterior-text h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .exterior-wrapper {
        display: flex;
        flex-direction: column;
    }

    /* 🔥 Force IMAGE to come first */
    .exterior-image-box {
        order: 1;
    }

    /* 🔥 TEXT goes below */
    .exterior-text {
        order: 2;
        text-align: center;
        /* optional */
    }
}

.m-30{
    margin-bottom: 30px;
}