/* ================= HEADER ================= */
.hero-navbar {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    padding: 0px;
}

.hero-navbar .nav-link {
    color: #E4E4E4;
    font-family: "Sarabun";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 8px;
}

.hero-navbar .nav-link.active {
    color: #CA9C5A;
}

.hero-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================= HERO SECTION ================= */
#hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Background slide */
#hero-section .carousel,
#hero-section .carousel-inner,
#hero-section .carousel-item {
    height: 100vh;
}

#hero-section .hero-bg {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* Overlay content */
#hero-section .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 140.01%);
    padding-bottom: 40px;
}

/* Text */
#hero-section h1 {
    color: #FFF;
    text-align: center;
    font-family: "Fraunces";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 127.3%;
}

#hero-section h1 span {
    color: #CA9C5A;
}

/* Buttons */
#hero-section .hero-buttons {
    margin: 30px 0;
}

#hero-section .hero-buttons .btn {
    padding: 12px 28px;
    margin: 5px;
}

/* ================= HERO STATS ================= */
#hero-section .hero-stats {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}

#hero-section .hero-stat {
    padding: 15px 10px;
    position: relative;
}

/* Vertical divider (desktop only) */
#hero-section .hero-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(255, 255, 255, 0.25);
}

#hero-section .hero-stat h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

#hero-section .hero-stat p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    #hero-section h1 {
        font-size: 26px;
    }

    #hero-section .hero-buttons .btn {
        width: 100%;
    }

    #hero-section .hero-stat::after {
        display: none;
    }

    #hero-section .hero-stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    #hero-section .hero-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* ================= ABOUT SECTION ================= */
#about-parkville {
    padding: 100px 0 0;
    background: #fff;
}

/* Left text */
#about-parkville .section-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    color: #A47839;
    text-transform: uppercase;
    font-family: "Fraunces";
}

#about-parkville .section-title {
    font-size: 32px;
    font-weight: 600;
    margin: 15px 0;
    font-family: "Fraunces";
}

#about-parkville .section-desc {
    color: var(--Text-Colour-3, #808080);
    font-family: "Sarabun";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 520px;
}

/* Info cards */
#about-parkville .info-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

#about-parkville .info-card img {
    width: 50px;
    height: 50px;
}

#about-parkville .info-card h5 {
    margin-bottom: 5px;
    color: #A47839;
    font-family: "Sarabun";
    font-size: 19.4px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#about-parkville .info-card p {
    margin: 0;
    color: var(--Text-Colour-3, #808080);
    font-family: "Sarabun";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

/* Image grid */
#about-parkville .image-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#about-parkville .image-large {
    grid-row: span 2;
}

#about-parkville img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* ================= ICON LOCATION BAR ================= */
#about-parkville .location-bar {
    background: #000;
    padding: 5px 0;
    margin-top: 20px;
}

#about-parkville .location-box {
    color: #fff;
    padding: 15px;
    position: relative;
}

#about-parkville .location-box img {
    width: 42px;
    height: auto;
}

#about-parkville .location-box p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Vertical divider (desktop only) */
#about-parkville .location-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.25);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    #about-parkville {
        padding: 60px 0;
    }

    #about-parkville .section-title {
        font-size: 24px;
    }

    #about-parkville .image-grid {
        margin-top: 40px;
    }

    #about-parkville .location-box::after {
        display: none;
    }

    #about-parkville .location-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    #about-parkville .location-box:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* ================= AMENITIES SECTION ================= */
#amenities-section {
    padding: 90px 0;
    background: #fff;
}

#amenities-section .amenities-title {
    color: var(--Text-Colour-2, #2B2B2B);
    text-align: center;
    font-family: "Fraunces";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 47px;
    margin-bottom: 60px;
}

/* Custom 5-column layout for desktop */
#amenities-section .col-md-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

#amenities-section .amenities-item {
    margin-bottom: 55px;
}

#amenities-section .amenities-item img {
    width: 80px;
    height: auto;
    margin-bottom: 12px;
}

#amenities-section .amenities-item p {
    color: #000;
    text-align: center;
    font-family: "Sarabun";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
    #amenities-section .col-md-2-4 {
        width: 33.333%;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 575px) {
    #amenities-section .col-md-2-4 {
        width: 50%;
    }

    #amenities-section {
        padding: 50px 0;
    }
}

/* ================= VILLA GALLERY ================= */
#villa-gallery .gallery-wrapper {
    height: 420vh;
}

/* Sticky items */
#villa-gallery .sticky-item {
    position: sticky;
    top: 80px;
    height: calc(100vh - 120px);
    margin-bottom: 0px;
}

/* Carousel sizing */
#villa-gallery .carousel,
#villa-gallery .carousel-inner,
#villa-gallery .carousel-item {
    height: 100%;
}

#villa-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LABEL (match image style) */
#villa-gallery .label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    letter-spacing: 0.5px;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    font-family: "Fraunces";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 127.3%;
}

/* ================= FIXED ARROW ================= */
#villa-gallery .gallery-arrow {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Remove default bootstrap arrow */
#villa-gallery .carousel-control-next-icon {
    display: none;
}

/* Hover */
#villa-gallery .gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* SVG smoothness */
#villa-gallery .gallery-arrow svg {
    display: block;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    #villa-gallery .gallery-wrapper {
        height: 420vh;
    }

    #villa-gallery .sticky-item {
        position: sticky;
        top: 80px;
        height: calc(100vh - 100px);
        margin-bottom: 0;
    }

    #villa-gallery .label {
        font-size: 18px;
        bottom: 20px;
    }
}

/* ================= VILLA PLAN ================= */
#villa-plan.villa-plan {
    background: #fff;
}

#villa-plan .villa-tabs .nav-link {
    border: 1px solid #c9a25d;
    margin: 0 6px;
    color: #c9a25d;
    font-family: "Sarabun";
}

#villa-plan .villa-tabs .nav-link.active {
    background: #c9a25d;
    color: #fff;
}

#villa-plan .villa-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

#villa-plan .villa-img h2 {
    font-family: "Fraunces";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 47px;
}

#villa-plan .villa-img span {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #b88a44;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

#villa-plan .area-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

#villa-plan .area-box div {
    border: 1px solid #e0caa0;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
}

/* ================= PV9 SECTION ================= */
.pv9-section {
    background: url("./images/background_image.png");
    background-size: cover;
    color: #ffffff;
}

.pv9-section .pv9-subtext {
    font-size: 18px;
    opacity: 0.85;
}

.pv9-section .pv9-title {
    font-size: 36px;
    font-weight: 600;
}

.pv9-section .pv9-gold {
    color: #c8a96a;
}

.pv9-section .pv9-btn {
    border: 1px solid #c8a96a;
    color: #c8a96a;
    border-radius: 6px;
    background: transparent;
    transition: 0.3s ease;
}

.pv9-section .pv9-btn:hover {
    background: #c8a96a;
    color: #000;
}

/* ================= MASTER PLAN SECTION ================= */
.master-plan-section {
    background: #fff;
}

.master-plan-section .master-plan-img img {
    border-radius: 12px;
    width: 100%;
}

.master-plan-section .title {
    color: var(--Text-Colour-2, #2B2B2B);
    text-align: center;
    font-family: "Fraunces";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 47px;
}

.master-plan-section .dec {
    color: var(--Text-Colour-2, #2B2B2B);
    text-align: center;
    font-family: "Fraunces";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 47px;
}

.master-plan-section .master-features span {
    color: #F29D38;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 39px;
}

.master-plan-section .master-features .p {
    color: #000;
    font-family: "Sarabun";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

@media (max-width: 768px) {
    .master-plan-section .master-features {
        margin-top: 20px;
    }
}

/* ================= VILLA SPECIFICATION ================= */
.villa-specification {
    background: #000;
    padding: 70px 0;
    color: #fff;
}

.villa-specification h2 {
    font-weight: 600;
    font-family: "Fraunces";
}

.villa-specification .spec-box {
    background: #0f0f0f;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.villa-specification .spec-content h6 {
    color: #d2a45c;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: "Sarabun";
}

.villa-specification .spec-content p {
    font-size: 13px;
    color: #bbb;
    margin: 0;
    font-family: Poppins;
}

.villa-specification .spec-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #444;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

/* ================= LOCATIONS SECTION ================= */
#location.location-section {
    background: #0c0c0c;
    color: #fff;
    padding: 70px 0 250px;
}

#location .location-box {
    background: #1a1a1a;
    padding: 16px;
    border-radius: 8px;
}

#location .location-box h6 {
    color: #CEA161;
    font-family: "Sarabun";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

#location .location-box ul {
    list-style: none;
    padding: 0;
    color: #FFF;
}

#location .location-box li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #ddd;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* MAP */
#location .map-box {
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
}

/* ================= OFFER SECTION ================= */
#offer.offer-section {
    margin-top: -150px;
}

#offer .offer-wrapper {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

#offer .offer-image {
    width: 100%;
    height: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

#offer .offer-box {
    background: #7a5a2f;
    color: #fff;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#offer .offer-tag {
    font-size: 14px;
    opacity: 0.9;
}

#offer .offer-box h2 {
    font-size: 36px;
    font-weight: 700;
}

#offer .offer-box h6 {
    margin: 10px 0;
}

#offer .offer-size {
    margin-bottom: 22px;
}

#offer .offer-btn {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 10px 26px;
    border-radius: 6px;
    width: fit-content;
}

#offer .offer-btn:hover {
    background: #fff;
    color: #7a5a2f;
}

#offer .carousel-indicators {
    bottom: 15px;
}

#offer .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@media (max-width: 991px) {
    #offer.offer-section {
        padding: 40px 15px;
    }

    #offer .offer-image {
        min-height: 260px;
    }

    #offer .offer-box {
        text-align: center;
        align-items: center;
        padding: 35px 20px;
    }

    #offer .offer-box h2 {
        font-size: 28px;
    }
}

/* ================= FAQ CONTACT SECTION ================= */
#faq.faq-contact-section {
    padding: 80px 70px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

#faq .container {
    max-width: 1100px;
    margin: auto;
}

#faq h2 {
    font-family: "Fraunces";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 30px;
}

/* ===== FAQ Styles ===== */
#faq .faq-section .faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

#faq .faq-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    cursor: pointer;
}

#faq .faq-section .faq-answer {
    display: none;
    color: #494949;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-top: 8px;
}

#faq .faq-section .faq-item.active .faq-answer {
    display: block;
}

#faq .faq-section .faq-item.active .toggle {
    transform: rotate(45deg);
    font-weight: bold;
}

/* ===== Contact Form ===== */
#faq .contact-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#faq .contact-section input,
#faq .contact-section select,
#faq .contact-section textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

#faq .contact-section textarea {
    height: 100px;
    resize: none;
}

#faq .contact-section .input-group {
    display: flex;
    gap: 10px;
}

#faq .contact-section .input-group select {
    width: 80px;
}

#faq .contact-section button {
    background: linear-gradient(to right, #d2a043, #7d5312);
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#faq .contact-section button:hover {
    opacity: 0.9;
}

#faq .contact-section .input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

#faq .contact-section .input-group select {
    flex: 0 0 90px;
}

#faq .contact-section .input-group input[type="tel"] {
    flex: 1;
}

@media (max-width: 992px) {
    #faq.faq-contact-section {
        padding: 60px 20px;
    }

    #faq .row {
        display: flex;
        flex-direction: column;
    }

    #faq .faq-section,
    #faq .contact-section {
        width: 100%;
    }

    #faq .faq-section {
        margin-bottom: 40px;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: radial-gradient(circle at top left, #120b2b, #050012);
    color: #d1d1d1;
    padding: 70px 0 25px;
    font-size: 14px;
}

/* BRAND */
.site-footer .footer-brand img {
    width: 140px;
    margin-bottom: 18px;
}

.site-footer .footer-brand p {
    line-height: 1.7;
    opacity: 0.85;
}

/* TITLES */
.site-footer .footer-title {
    color: #caa46a;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Sarabun";
}

/* LINKS */
.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 10px;
    font-family: "Sarabun";
}

.site-footer .footer-links a {
    color: #d1d1d1;
    text-decoration: none;
    font-family: "Sarabun";
}

.site-footer .footer-links a:hover {
    color: #caa46a;
}

/* CONTACT */
.site-footer .footer-contact p {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.site-footer .footer-contact i {
    color: #caa46a;
    font-size: 16px;
}

/* SOCIAL */
.site-footer .footer-social {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.site-footer .footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.site-footer .footer-social .fb {
    background: #1877f2;
}

.site-footer .footer-social .ig {
    background: #e4405f;
}

.site-footer .footer-social .in {
    background: #0a66c2;
}

.site-footer .footer-social .x {
    background: #000;
}

/* BOTTOM */
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 35px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.site-footer .footer-bottom-links a {
    margin-left: 15px;
    color: #d1d1d1;
    text-decoration: none;
}

.site-footer .footer-bottom-links a:hover {
    color: #caa46a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .site-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .site-footer .footer-bottom-links a {
        margin: 0 8px;
    }
}