@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

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

:root {
    --container-space: 120px;

    --red: #AA292E;
    --red-dark: #7E1E22;
    --red-light: #C23035;
    --red-glow: rgba(170,41,46,0.18);
    --grey-dark: #141416;
    --grey-mid: #252528;
    --grey-card: #2E2E32;
    --grey-light: #8E8E93;
    --white: #FFFFFF;
    --silver: #C4C4C6;
    --off-white: #F5F5F5;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--off-white);
    color: var(--grey-dark);
    font-family: 'Barlow', sans-serif;
    margin-top: 20px;
    overflow-x: hidden;
}

/* ─ NAV ── */
nav {
    align-items: center;
    background: rgba(20,20,22,0.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(170,40,45,0.2);
    display: flex;
    justify-content: space-between;
    padding: 15px 120px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.nav-logo {
    align-items: center;
    display: flex;
    text-decoration: none;
}
.nav-logo img {
    filter: brightness(1.1);
    height: 45px;
    mix-blend-mode: screen;
    padding-bottom: 7px;
    padding-top: 5px;
    transition: filter 0.3s;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}
.nav-links a {
    color: var(--silver);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; 
    letter-spacing: 2px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
}
.nav-links a::after {
    background: var(--red);
    bottom: -5px;
    content: ''; 
    height: 2px; 
    left: 0;
    position: absolute;
    transition: width 0.3s;
    width: 0;
}
.nav-links a:hover {
    color: var(--white);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--white);
}
.nav-links a.active::after {
    width: 100%;
}
.nav-cta {
    background: var(--red);
    border: none;
    clip-path: polygon(
        8px 0%,
        100% 0%,
        calc(100% - 8px) 100%,
        0% 100%
    );
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 9px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
    background: var(--red-light);
    transform: translateY(-1px);
}

/* ── SECTION BASE ── */
section {
    padding: 80px var(--container-space);
}
.section-tag {
    align-items: center;
    color: var(--red);
    display: flex;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    gap: 12px;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.section-tag::before {
    background: var(--red);
    content: '';
    height: 2px;
    width: 26px;
}
.section-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    line-height: 1;
}
.section-h2 span {
    color: var(--red);
}

/* ── BUTTONS ── */
.btn {
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 2px;
    padding: 13px 34px;
    text-decoration: none;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--red);
    border: none;
    color: var(--white);
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--grey-mid);
    color: var(--grey-mid);
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}
.btn-white {
    background: var(--white);
    border: none;
    color: var(--red);
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-white:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

/* ── TICKER ── */
.ticker {
    background: var(--red);
    overflow: hidden;
    padding: 11px 0;
}

/* ── HERO ── */
.page-hero {
    background: var(--off-white);
    overflow: hidden;
    padding: 182px var(--container-space) 120px;
    position: relative;
}
.page-hero::before {
    background:
        linear-gradient(
            90deg,
            var(--off-white) 0%,
            rgba(248,248,248,.95) 20%,
            rgba(248,248,248,.75) 45%,
            rgba(248,248,248,.2) 70%,
            transparent 100%
        ),
        url('../img/office.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: '';
    inset: 0;
    opacity: 1;
    position: absolute;
    z-index: 0;
}
.page-hero > * {
    position: relative;
    z-index: 1;
}
.page-hero-accent {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(
        circle,
        var(--red-glow) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.page-hero-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
}
.page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: .92;
    letter-spacing: 2px;
    color: var(--grey-dark);
}
.page-hero h1 span {
    color: var(--red);
}
.page-hero p {
    margin-top: 22px;
    max-width: 650px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey-mid);
    font-weight: 400;
}

/* ── CONTACT ── */
#contact-main {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    background: var(--off-white);
    padding: 120px var(--container-space) 0;
}
.contact-sidebar {
    background: #e5e5e5;
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contact-block-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 3px; 
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-block-title::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--red);
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}
.contact-item-text label {
    display: block;
    margin-bottom: 4px;
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-dark);
}
.contact-item-text p,
.contact-item-text a {
    color: var(--grey-mid);
    text-decoration: none;
    line-height: 1.7;
    font-size: .88rem;
}
.branch-quick {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bq-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bq-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--red);
    width: 24px;
    flex-shrink: 0;
}
.bq-name {
    font-size: 0.8rem;
    color: var(--grey-mid);
    line-height: 1.3; 
}
.bq-dot {
    width: 6px;
    height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
}
.contact-form-wrap {
    background: var(--silver);
    padding: 60px 48px;
}
.form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.form-title span {
    color: var(--red);
}
.form-sub {
    font-size: 0.88rem;
    color: var(--grey-mid);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.65;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.form-group label {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-dark);
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: #1E1E21;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  transition: border-color .25s, background .25s;
}
.form-group textarea {
    resize: vertical;
    min-height: 47px;
    max-height: 350px;
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    width: 100%;
    background: #1E1E21;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--grey-light);
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    padding: 14px 16px;
    transition: border-color .25s, background .25s;
}
.form-group select:valid {
    color: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
    background: #232326;
    border-color: rgba(170,41,46,.6);
    outline: none;
}
.form-group select:focus {
    background: #232326;
    border-color: rgba(170,41,46,.6);
    outline: none;
}
.select::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    position: absolute;
    right: 15px;
    top: 40px;
    pointer-events: none;
    color: var(--grey-light);
}
.form-submit {
  margin-top: 10px;
  background: var(--red);
  border: none;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.form-submit:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}
.form-note {
    font-size: 0.73rem;
    color: var(--grey-mid);
    margin-top: -4px;
}
.success-msg {
    display: none;
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
    padding: 14px 18px;
    color: #4CAF50;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ── CHANNELS ── */
#channels {
    background: var(--off-white);
    padding: 120px var(--container-space);
}
.ch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 40px;
}
.ch-card {
    background: var(--grey-dark);
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.3s, transform 0.3s;
}
.ch-card:hover {
    border-color: rgba(170,41,46,0.4);
    transform: translateY(-5px);
}
.ch-icon {
    font-size: 2rem;
    color: var(--grey-light);
}
.ch-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}
.ch-card p {
    font-size: 0.83rem;
    color: var(--silver);
    line-height: 1.6;
}
.ch-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
}
.ch-action:hover {
    gap: 12px;
    color: var(--red-light);
}
#maps{
    padding: 0 var(--container-space) 120px;
    background:var(--off-white);
}
.maps-header{
    max-width:700px;
    margin:0 auto 45px;
    text-align:center;
}
.maps-header p{
    margin-top:18px;
    color:var(--grey-mid);
    line-height:1.8;
}
.maps-wrapper{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}
.maps-wrapper iframe{
    width:100%;
    height:520px;
    border:none;
    display:block;
}

#hq-map {
    background: var(--off-white);
    padding: 0;
}
.map-placeholder {
    width: 100%;
    height: 320px;
    background: var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    repeating-linear-gradient(
        0deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.018) 40px,
        rgba(255,255,255,0.018) 41px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.018) 40px,
        rgba(255,255,255,0.018) 41px
    );
}
.map-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.map-inner h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
}
.map-inner h3 span {
    color: var(--red);
}
.map-inner p {
    color: var(--grey-mid);
    font-size: 0.88rem;
    margin-top: 8px;
}
.map-inner a {
    display: inline-block;
    margin-top: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid rgba(170,41,46,0.4);
    padding: 7px 18px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.map-inner a:hover {
    background: var(--red);
    color: var(--white);
}
.map-icon {
    font-size: 3rem;
    color: var(--grey-dark);
    margin-bottom: 15px;
}
.maps-header .section-tag{
    justify-content: center;
}
.maps-header .section-tag::after{
    content: "";
    width: 26px;
    height: 2px;
    background: var(--red);
}

/* ── FOOTER ── */
footer {
    background: #0A0A0C;
    border-top: 5px solid rgba(170,41,46,0.18);
    padding: 55px var(--container-space) 25px;
}
.footer-top {
    border-bottom: 1px solid var(--grey-light);
    display: grid;
    gap: 48px;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    padding-bottom: 44px;
}
.footer-logo-img {
    display: block;
    filter: brightness(1.1);
    height: 55px;
    mix-blend-mode: screen;
    opacity: 0.85;
    width: auto;
}
.footer-tagline {
    color: var(--silver);
    font-size: .8rem;
    font-weight: 750;
    line-height: 1.5;
    margin-top: 25px;
    max-width: 200px;
    opacity: 0.85;
}
.footer-address {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    margin-top: 5px;
}
.footer-address i {
    color: var(--red-dark);
    margin-top: 3px;
}
.footer-address p {
    color: var(--grey-light);
    font-size: 0.85rem;
    line-height: 1.72;
    margin: 0;
    max-width: 290px;
}
.footer-col h5 {
    color: var(--red);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.footer-col ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
    list-style: none;
}
.footer-col ul li {
    align-items: flex-start;
    color: var(--grey-light);
    display: flex;
    font-size: 0.82rem;
    gap: 10px;
    line-height: 1.4;
}
.footer-col ul li a {
    color: var(--grey-light);
    font-size: 0.84rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--white);
}
.footer-col ul li i {
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
}
.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    align-items: center;
    background: var(--grey-mid);
    border-radius: 25%;
    color: var(--silver);
    display: flex;
    font-size: 1.5rem;
    height: 50px;
    justify-content: center;
    text-decoration: none;
    transition:
        background 0.5s ease,
        color 0.3s ease,
        transform 0.25s cubic-bezier(.22, 1, .35, 1);
    width: 50px;
    text-decoration: none;
}
.footer-socials a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-5px);
}


/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    } to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── HAMBURGER MENU (disamakan dengan halaman lain) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 200;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--silver);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown list */
.mobile-menu {
    background: rgba(14,14,16,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(170,40,45,0.2);
    display: flex;
    flex-direction: column;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    z-index: 150;
}
.mobile-menu.open {
    max-height: 420px;
    opacity: 1;
    padding: 6px 20px 16px;
}
.mobile-menu a {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--silver);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 14px 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--red);
}
.mobile-menu .mobile-cta {
    background: var(--red);
    border: none;
    border-bottom: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-top: 12px;
    padding: 13px 24px;
    text-align: center;
    text-decoration: none;
}

/* ── RESPONSIVE ── */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
    :root {
        --container-space: 48px;
    }
    nav {
        padding: 12px 48px;
    }
    section {
        padding: 60px 48px;
    }
    .page-hero {
        padding: 150px 48px 90px;
    }
    #contact-main {
        grid-template-columns: 340px 1fr;
        padding: 100px 48px 0;
    }
    .contact-sidebar {
        padding: 48px 32px;
    }
    .contact-form-wrap {
        padding: 48px 32px;
    }
    #channels {
        padding: 90px 48px;
    }
    #hq-map {
        padding: 0;
    }
    footer {
        padding: 55px 48px 25px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-logo-img {
        height: 44px;
    }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {
    :root {
        --container-space: 20px;
    }
    nav {
        padding: 12px 20px;
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    section {
        padding: 60px 20px;
    }

    /* Hero */
    .page-hero {
        padding: 110px 20px 60px;
    }
    .page-hero h1 {
        font-size: clamp(2.6rem, 11vw, 4rem);
    }
    .page-hero p br {
        display: none;
    }

    /* Contact main */
    #contact-main {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .contact-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 40px 20px;
    }
    .contact-form-wrap {
        padding: 40px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Channels */
    #channels {
        padding: 60px 20px;
    }
    .ch-grid {
        grid-template-columns: 1fr;
    }

    /* Map */
    .map-placeholder {
        height: 260px;
    }
    .map-inner h3 {
        font-size: 1.3rem;
    }

    /* Footer */
    footer {
        padding: 44px 20px 0;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-logo-img {
        height: 38px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding: 20px 0;
    }
    .footer-socials a {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

/* ── SMALL MOBILE (≤ 400px) ── */
@media (max-width: 400px) {
    .page-hero h1 {
        font-size: clamp(2.2rem, 12vw, 3rem);
    }
    .bq-name {
        font-size: 0.75rem;
    }
}