/* ==========================================================================
   BRANZ Property Portfolio - Brochure Style (1:1 Design)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@700&display=swap');

:root {
    --navy: #1a2942;
    --navy-light: #2c3e50;
    --gold: #bca871;
    --light-gold: #f9f6f0;
    --gray-text: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --red-alert: #e74c3c;
    --placeholder-bg: #e0e0e0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background-color: #fff;
}

.font-serif {
    font-family: "Noto Serif JP", serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Page Header */
.page-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 15px 20px;
    text-align: center;
}

.page-header__title {
    font-family: "Noto Serif JP", serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 10px 0;
}

/* Main Hero */
.main-hero {
    width: 100%;
}

.main-hero__img {
    width: 100%;
    height: auto;
    display: block;
}

/* LOCATION SECTION */
.location-section {
    background-color: var(--light-gold);
    padding: 40px 0;
}

.location-section__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}


/* SECTION BANNERS */

/* SECTION BANNERS */
.section-banner {
    width: 100%;
    padding: 14px 40px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--white);
}

.section-banner h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin: 0;
}

.section-banner__sub {
    font-size: 0.95rem;
    font-weight: 400;
}

.section-banner--navy {
    background-color: var(--navy);
}

.section-banner--gold {
    background-color: var(--gold);
}

.property-brochure {
    width: 100%;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.brochure-row {
    display: flex;
    gap: 50px;
    min-height: 500px;
}

.brochure-col--visual {
    flex: 1.4;
    min-width: 0;
}

.brochure-col--details {
    flex: 1;
    min-width: 0;
}

/* Visuals Column */
.branz-main-box,
.setiabudi-main-box,
.swissotel-main-box {
    position: relative;
    margin-bottom: 15px;
    background-color: #f0f0f0;
    height: auto;
    overflow: hidden;
}

.branz-hero-img,
.setiabudi-hero-img,
.swissotel-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Placeholder Styling */
.img-placeholder,
.img-placeholder-small,
.img-placeholder-other {
    background-color: var(--placeholder-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
    border: 1px dashed #ccc;
    aspect-ratio: 4 / 3;
}

.img-placeholder-small {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.img-placeholder-other {
    width: 220px;
    height: 150px;
    flex-shrink: 0;
}

.qr-placeholder {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
    color: #999;
}

/* Fallback Logos */
.fallback-logo,
.fallback-logo-blue {
    font-family: serif;
    font-weight: bold;
    line-height: 1.1;
}

.fallback-logo {
    color: #fff;
    font-size: 1.2rem;
}

.fallback-logo-blue {
    color: var(--navy);
    font-size: 1.2rem;
}

.fallback-logo-inline {
    font-weight: bold;
    font-size: 1rem;
}

/* BRANZ Visuals */
.branz-main-box {
    position: relative;
    margin-bottom: 15px;
}

.property-name-title {
    font-family: "Noto Serif JP", serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.property-name-title--blue {
    color: #003366;
    /* Specific navy/blue for Setiabudi/Swissotel if desired */
}

.property-desc-bottom {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* DETAILS COLUMN */
.details-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.details-title {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--navy);
    border-bottom: 1px solid var(--navy);
    padding-bottom: 2px;
}

.property-features-rounded {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    /* Right-aligned as requested */
    margin-bottom: 10px;
}

.feat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-icon img {
    width: 56px;
    height: 56px;
}

.feat-icon.placeholder-icon {
    font-size: 0.5rem;
    background: #ccc;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
}

/* MINI GALLERY */
.mini-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.mini-gallery-item {
    position: relative;
    height: auto;
    overflow: hidden;
}

.mini-gallery-img {
    width: 100%;
    height: auto;
    display: block;
}

.mini-gallery-item .caption {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-text);
    margin-top: 4px;
    background: #f0f0f0;
    padding: 2px 5px;
    display: inline-block;
}

/* FACILITY SUMMARY */
.facility-summary {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.summary-list {
    list-style: none;
    flex: 1;
}

.summary-list li {
    margin-bottom: 2px;
    position: relative;
    padding-left: 10px;
}

.summary-list li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.no-wrap {
    white-space: nowrap;
}

/* CONTACT AREA */
.contact-area {
    background-color: var(--light-gray);
    padding: 15px;
}

.contact-note {
    font-size: 1rem;
    margin-bottom: 10px;
}

.instagram-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-mini {
    width: 50px;
}

.insta-handle {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--navy);
    background-color: #384d7a;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
}

.insta-handle span {
    font-weight: normal;
}

.btn-detail-orange {
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    background-color: #e67e22;
    padding: 4px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-detail-orange:hover {
    background-color: #d35400;
}

/* SETIABUDI SPECIFICS */
.setiabudi-main-box {
    position: relative;
}

.logo-area-rounded {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-area-rounded img {
    width: 150px;
}

.property-desc-center {
    text-align: center;
    margin-top: 20px;
}

.desc-strong {
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.desc-normal {
    font-size: 0.85rem;
}

/* SWISSOTEL SPECIFICS */
.logo-area-square {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 5px;
}

.red-open-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--red-alert);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.red-open-badge .year {
    font-size: 0.6rem;
}

.red-open-badge .open {
    font-size: 1.1rem;
}

.benefit-badge {
    position: absolute;
    top: 105px;
    right: 15px;
    background: #fff;
    color: var(--red-alert);
    border: 1px solid var(--red-alert);
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

.swissotel-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    width: 100%;
    text-align: center;
}

.swissotel-mini-visuals {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.mini-visual-item {
    flex: 1;
}

.mini-visual-item img {
    width: 100%;
    height: auto;
    display: block;
}

.mini-visual-item .caption {
    font-size: 0.65rem;
    background: #ccc;
    padding: 1px 4px;
    color: #333;
}

.swissotel-contact-box {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 20px;
    text-align: left;
}

.contact-label {
    font-size: 1rem;
    color: var(--red-alert);
    font-weight: bold;
    margin-bottom: 2px;
}

.contact-row {
    display: flex;
    gap: 10px;
    margin: 0;
}

.contact-person {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 2px;
}

.contact-phone {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 2px;
}

.swissotel-logo-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #eee;
    padding-top: 5px;
    justify-content: flex-end;
}

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

.logo-p-swiss {
    height: 12px;
}

.logo-p-all {
    height: 12px;
}

/* OTHER PROPERTY SECTION */
.other-property-section {
    background-color: #ddd;
    padding: 40px 0;
}

.other-property__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.other-property__card {
    background: #fff;
}

.other-property__card h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    /* Significantly larger */
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.card-header {
    padding: 10px 15px;
    color: #fff;
}

.bg-residential {
    background-color: #8c8369;
}

.bg-office {
    background-color: #5d6d7e;
}

.bg-retail {
    background-color: #a04000;
}

.card-header .tag {
    font-size: 0.6rem;
    opacity: 0.8;
}

.card-header h4 {
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 5px 0;
    line-height: 1.2;
}

.card-header .address {
    font-size: 0.7rem;
    opacity: 0.9;
}

.card-content {
    display: flex;
    flex-direction: row;
    /* Changed to row for 2-column layout */
    padding: 20px;
    gap: 20px;
}

.card-content img,
.img-placeholder-other {
    width: 35%;
    /* Image takes 35% of width */
    height: auto;
    /* Auto height to maintain aspect ratio, or use fixed if needed */
    object-fit: cover;
    border-radius: 4px;
}

.card-desc {
    flex: 1;
    /* Text takes remaining space */
}

.card-desc p {
    font-size: 0.75rem;
    line-height: 1.5;
}

/* FOOTER */
.contact-footer {
    background-color: var(--white);
    padding: 30px 0;
    border-top: 2px solid var(--navy);
}

.contact-footer__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-lead p {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
}

.staff-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-contact-info .phone {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

.footer-contact-info .email {
    font-size: 0.9rem;
}

.staff-badge {
    border: 1px solid #000;
    padding: 5px 15px;
    text-align: center;
}

.staff-badge .label {
    display: block;
    font-size: 0.6rem;
    border-bottom: 1px solid #000;
}

.staff-badge .name {
    font-size: 1.4rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .brochure-row {
        flex-direction: column;
        min-height: auto;
    }

    .other-property__grid {
        grid-template-columns: 1fr;
    }

    .contact-footer__inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .location-section__header {
        flex-direction: column;
    }

    .card-content {
        flex-direction: column;
    }

    .card-content img,
    .img-placeholder-other {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .mini-gallery-item {
        height: auto;
        /* Responsive adjustment for mobile */
    }

    .branz-vertical-text {
        font-size: 1.5rem;
        right: 20px;
        bottom: 20px;
    }
}

/* ==========================================================================
   GLOBAL HEADER & FOOTER
   ========================================================================== */

/* Header */
.global-header {
    background-color: #002b74;
    color: var(--white);
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.global-header__logo img {
    height: 40px;
}

.global-header__nav {
    display: flex;
    gap: 20px;
    list-style: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.global-header__nav a {
    color: var(--white);
    text-decoration: none;
}

.global-header__right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-inquiry {
    background-color: #25d366;
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-inquiry img {
    height: 20px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
}

.lang-toggle img {
    height: 14px;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 60px 40px;
}

.contact-section__header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header-img {
    height: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

.contact-header-lines {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-header-lines .line-left,
.contact-header-lines .line-right {
    width: 80px;
    height: 1px;
    background-color: #002b74;
}

.contact-intro-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-intro-text {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.contact-section__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-box {
    border: 1px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
}

.contact-box__header {
    background-color: #002b74;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group label span {
    color: red;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.form-hint {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.form-submit-area {
    text-align: center;
    padding-top: 10px;
}

.btn-submit {
    background-color: #002b74;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}

.contact-box--right {
    display: flex;
    flex-direction: column;
}

.contact-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.contact-info__phone {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
}

.contact-info__phone img {
    height: 60px;
}

.contact-info__email {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
    text-decoration: none;
}

.staff-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.staff-card img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}

.staff-card__info {
    font-size: 1.1rem;
}

.staff-card__name {
    font-size: 1.8rem;
    font-weight: bold;
}

.contact-message-box {
    background-color: #e8f4fd;
    border-radius: 15px;
    padding: 20px;
    margin: 0 15px 15px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Corporate Footer */
.corporate-footer {
    background-color: #f5f5f5;
    padding: 40px;
}

.corporate-footer__nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    list-style: none;
}

.corporate-footer__nav a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.corporate-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.corp-logo-item {
    text-align: center;
}

.corp-logo-item span {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 5px;
    color: #666;
}

.corp-logo-item img {
    height: 40px;
}

.copyright-bar {
    background-color: #002b74;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.8rem;
}

/* Hamburger Menu Styles */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
.hamburger-btn span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}
.hamburger-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Adjustments for Header/Footer */
@media (max-width: 768px) {
    .page-header,
    .location-section__inner,
    .section-banner,
    .property-brochure,
    .other-property__grid,
    .contact-footer__inner,
    .contact-section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .branz-main-box,
    .setiabudi-main-box,
    .swissotel-main-box {
        height: auto;
    }

    .branz-hero-img,
    .setiabudi-hero-img,
    .swissotel-hero-img {
        object-fit: contain;
    }

    .global-header {
        padding: 10px;
        flex-direction: row; /* change to row to keep logo and hamburger together */
        flex-wrap: wrap;
        gap: 10px;
    }

    .global-header__right {
        order: 2;
        margin-left: auto;
    }

    .hamburger-btn {
        display: flex;
    }

    .global-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #002b74;
        flex-direction: column;
        padding: 20px;
        align-items: center;
        gap: 15px;
    }

    .global-header__nav.active {
        display: flex;
    }

    .contact-section__inner {
        grid-template-columns: 1fr;
    }

    .contact-info__phone {
        font-size: 2rem;
    }

    .staff-card {
        flex-direction: column;
        text-align: center;
    }

    .corporate-footer__nav {
        display: none;
    }

    .corporate-logos {
        gap: 20px;
    }
}