/* Titip Jual Page Styles */

.titip-jual-page {
    font-family: 'Nexa', sans-serif;
}

/* Hero Section */
.titip-jual-hero {
    position: relative;
    padding: 80px 0;
    background: #fff;
    color: #212c68;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Animation for hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.titip-jual-page .container {
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: 'NexaHeavy', sans-serif;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #212c68;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #212c68;
}

.btn-cta {
    font-size: 16px;
    padding: 17px 40px 12px;
    border-radius: 50px;
    font-family: 'NexaHeavy';
    margin: 0 auto;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .titip-jual-page .container {
        padding: 24px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-content .hero-text {
        order: 2;
    }

    .hero-content .hero-image {
        order: 1;
    }

    .hero-image img {
        border-radius: 30px;
    }

    .btn-cta {
        font-size: 14px;
        padding: 13px 24px 8px;
    }
}

/* Why Choose Section */
.titip-jual-why-choose {
    padding: 80px 0;
    background: #212c68;
}

.section-title {
    font-family: 'NexaHeavy', sans-serif;
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.benefit-content {
    width: 100%;
}

.benefit-title {
    font-family: 'NexaHeavy', sans-serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

@media (max-width: 768px) {
    .titip-jual-why-choose {
        padding: 40px 0;
    }

    .benefit-description {
        display: none;
    }

    .benefit-title {
        font-size: 20px;
        text-align: center;
    }

    .benefits-grid .benefit-item:nth-child(1) {
        order: 1;
    }

    .benefits-grid .benefit-item:nth-child(2) {
        order: 5;
    }

    .benefits-grid .benefit-item:nth-child(3) {
        order: 2;
    }

    .benefits-grid .benefit-item:nth-child(4) {
        order: 3;
    }

    .benefits-grid .benefit-item:nth-child(5) {
        order: 4;
    }

    .benefits-grid .benefit-item:nth-child(6) {
        order: 6;
    }
}

/* Titip Jual CTA Button */
.btn-titip-jual-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #212c68;
    font-family: 'NexaHeavy', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: normal;
    padding: 17px 40px 12px;
    border-radius: 50px;
    margin: 0 auto;
}

.btn-titip-jual-cta:hover {
    transform: translateY(-2px);
}

.btn-titip-jual-cta:active {
    transform: translateY(0);
}

/* Network Section */
.titip-jual-network {
    padding: 80px 0;
    background: #fff;
}

.titip-jual-network .section-title {
    color: #212c68;
    font-size: 38px;
    font-weight: 700;
}

.network-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.network-map {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.network-map-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

.network-locations {
    margin-top: 30px;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    margin-bottom: 40px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    height: 20px;
    min-width: 77px;
    background: transparent;
    color: #212c68;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}

.location-link:hover {
    background: #ee213d;
    color: #fff;
    transform: translateY(-1px);
}

.location-link:active {
    transform: translateY(0);
}

.network-summary {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.summary-item {
    text-align: center;
}

.summary-number {
    display: block;
    font-family: 'NexaHeavy', sans-serif;
    font-size: 48px;
    color: #ee213d;
    line-height: 1;
}

.summary-label {
    display: block;
    font-size: 18px;
    color: #212c68;
    margin-top: 10px;
    font-weight: 600;
}

/* Sales Process Section */
.titip-jual-process {
    padding: 80px 0;
    background: #252E68;
}

.titip-jual-process h2,
.titip-jual-prices h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.process-step {
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #fff;
}

.step-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #2a5298;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {

    .titip-jual-process h2,
    .titip-jual-prices h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .step-number {
        font-size: 3rem;
    }

    .process-grid {
        gap: 24px;
    }

    .process-grid .process-step {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 24px;
    }

    .step-image {
        width: 100px;
        height: 100px;
        margin: 0;
    }

    .titip-jual-network .section-title {
        font-size: 24px;
    }

    .step-description {
        padding: 0;
        text-align: justify;
        flex: 1;
    }

    .process-grid {
        margin-bottom: 32px;
    }

}

/* Price Ranges Section */
.titip-jual-prices {
    padding: 80px 0;
    background: #fff;
}

.titip-jual-prices h2 {
    color: #212c68;
}

.price-item {
    background: #fff;
    padding: 0 4px;
    border-radius: 10px;
}

.price-item img {
    transition: filter 0.3s ease;
}

.price-item:hover img {
    filter: brightness(0.5);
}

.price-model {
    font-size: 24px;
    /* color: #212c68; */
    color: #000000;
    text-align: center;
    margin: 12px 0 4px 0;
    font-family: 'NexaHeavy';
}

.price-range {
    font-size: 16px;
    color: #000000;
    text-align: center;
}

.price-min,
.price-max {
    font-weight: 600;
    color: #212c68;
}

.price-separator {
    margin: 0 10px;
    color: #999;
}

.btn-link {
    color: #ee213d;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #212c68;
    text-decoration: underline;
}

.price-ranges-slider {
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .price-model {
        font-size: 16px;
    }

    .price-range {
        font-size: 12px;
    }

    .price-ranges-slider {
        margin-bottom: 16px;
    }
}

/* Contact Section */
.titip-jual-contact {
    padding: 50px 0;
    background: #212c68;
    color: #fff;
}

.titip-jual-contact .section-title {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: #ee213d;
}

.contact-details {
    flex: 1;
}

.contact-details a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ee213d;
}

.contact-details div {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-title,
.app-title {
    font-family: 'NexaHeavy', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.app-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-link:hover {
    transform: scale(1.05);
}

.app-link img {
    height: 50px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .titip-jual-hero {
        min-height: 450px;
        padding: 60px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }

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

@media (max-width: 768px) {
    .titip-jual-hero {
        min-height: 400px;
        padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .benefit-icon {
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .network-summary {
        flex-direction: column;
        gap: 30px;
    }

    .locations-grid {
        gap: 6px 10px;
    }

    .location-link {
        font-size: 12px;
        padding: 3px 10px;
        min-width: 70px;
        height: 18px;
    }

    .titip-jual-why-choose,
    .titip-jual-network,
    .titip-jual-process,
    .titip-jual-prices,
    .titip-jual-contact {
        padding: 32px 0;
    }
}

@media (max-width: 576px) {
    .titip-jual-hero {
        min-height: 350px;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-titip-jual-cta {
        font-size: 14px;
        padding: 13px 24px 8px;
    }

    .step-title {
        font-size: 18px;
    }

    .locations-grid {
        gap: 5px 8px;
    }

    .location-link {
        font-size: 11px;
        padding: 2px 8px;
        min-width: 60px;
        height: 16px;
    }

    .social-links {
        flex-direction: column;
    }

    .app-links {
        flex-direction: column;
    }
}


/* Map Section */
.map-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.section-title {
    text-align: center;
    color: white;
    font-size: 2.5em;
    margin-bottom: 50px;
    font-weight: 700;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16/9;
}

.map-container-mobile {
    display: none;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .map-container {
        display: none;
    }

    .map-container-mobile {
        display: block;
    }
}

/* Branch marker styles */
.branch {
    position: absolute;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.branch:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #fff !important;
}

/* Main branch (Cabang) - Red */
.branch.main {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
}

.branch.main:hover {
    background: linear-gradient(135deg, #2b2d42 0%, #1a1b2e 100%);
}

/* Hub branch - Dark gray/black */
.branch.hub {
    background: linear-gradient(135deg, #2b2d42 0%, #1a1b2e 100%);
    font-size: 10px;
}

.branch.hub:hover {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
}

/* Positioning for each branch */
/* Positioning for each branch */
.aceh {
    top: 16%;
    left: 0.7%;
}

.medan {
    top: 23%;
    left: 7.6%;
}

.pekanbaru {
    top: 29.1%;
    left: 0.4%;
}

.padang {
    top: 36%;
    left: 7.5%;
}

.batam {
    top: 31.1%;
    left: 15%;
}

.jambi {
    top: 40.1%;
    left: 15.2%;
}

.bengkulu {
    top: 47.6%;
    left: 12%;
}


.palembang {
    top: 48.5%;
    left: 20.5%;
}

.pangkalpinang {
    top: 42.8%;
    left: 21.6%;
}

.lampung {
    top: 55%;
    left: 13.6%;
}

.jakarta-raya {
    top: 59%;
    left: 18.9%;
    font-size: 8px;
}

.jakarta-tipar {
    top: 57%;
    left: 24.6%;
    font-size: 8px;
}

.bandung {
    top: 64.4%;
    left: 19.4%;
}

.cirebon {
    top: 61.9%;
    left: 26.1%;
    font-size: 6px !important;
}

.tegal {
    top: 66.5%;
    left: 26.9%;
    font-size: 6px !important;
}

.purwokerto {
    top: 66%;
    left: 31.7%;
    font-size: 6px !important;
}

.yogyakarta {
    top: 69.5%;
    left: 30%;
    font-size: 6px !important;
}

.semarang {
    top: 59.5%;
    left: 31%;
}

.surabaya {
    top: 62.5%;
    left: 39%;
}

.malang {
    top: 67%;
    left: 38%;
    font-size: 6px !important;
}

.kediri {
    top: 70%;
    left: 36%;
    font-size: 6px !important;
}

.jember {
    top: 70%;
    left: 40.5%;
    font-size: 6px !important;
}

.denpasar {
    top: 67%;
    left: 43%;
    font-size: 8px !important;
}

.mataram {
    top: 67%;
    left: 49.6%;
    font-size: 8px !important;
}

.kupang {
    top: 66.5%;
    left: 56%;
    font-size: 8px !important;
}

.pontianak {
    top: 33%;
    left: 25.5%;
}

.palangka-raya {
    top: 45%;
    left: 31%;
    font-size: 6px !important;
}

.sampit {
    top: 43%;
    left: 39%;
}

.banjarmasin {
    top: 51%;
    left: 35%;
}

.balikpapan {
    top: 37.5%;
    left: 36.5%;
}

.samarinda {
    top: 31%;
    left: 43%;
    font-size: 6px !important;
}

.berau {
    top: 34%;
    left: 45.5%;
}

.parepare {
    top: 52%;
    left: 45%;
}

.makassar {
    top: 55%;
    left: 53%;
}

.palopo {
    top: 44%;
    left: 50%;
}

.kendari {
    top: 47%;
    left: 56%;
}

.palu {
    top: 37%;
    left: 53%;
}

.gorontalo {
    top: 31.4%;
    left: 52%;
}

.manado {
    top: 28%;
    left: 60%;
}

/* Legend */
.legend {
    text-align: center;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    flex-direction: column;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.legend-item span {
    font-weight: 600;
    color: #212c68;
    font-size: 24px;
}

.legend-box {
    width: 60px;
    height: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.legend-box.main {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
}

.legend-box.hub {
    background: linear-gradient(135deg, #2b2d42 0%, #1a1b2e 100%);
}

.count-info {
    margin-top: 30px;
    text-align: center;
    color: #212c68;
    font-size: 40px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    row-gap: 40px;
    column-gap: 24px;
}

.titip-jual-network .summary-mobile {
    display: none;
}

.titip-jual-network .summary-mobile .grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.titip-jual-network .summary-mobile .grid-item {
    font-size: 12px;
    font-family: 'NexaHeavy';
    color: #212c68;
    text-align: center;
    display: flex;
}

.titip-jual-network .summary-mobile .grid-item a {
    width: 100%;
    padding: 7px 0 4px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.titip-jual-network .summary-mobile .branch-wrap .grid-item a {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #fff;
}

.titip-jual-network .summary-mobile .hub-wrap .grid-item a {
    background: linear-gradient(135deg, #2b2d42 0%, #1a1b2e 100%);
    color: #fff;
}

.summary-mobile .wrapper p {
    font-size: 16px;
    font-family: 'NexaHeavy';
    color: #212c68;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .branch {
        font-size: 11px;
        padding: 6px 12px;
    }

    .legend {
        gap: 20px;
    }

    .legend-item {
        font-size: 14px;
    }

    .legend, .count-info {
        display: none;
    }

    .titip-jual-network .summary-mobile {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
}
