/* =========================================================
   GOSERVICE - CLEAN RESPONSIVE CSS
   Desktop + Tablet + Mobile
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: #082b5f;
    background: #ffffff;
    line-height: 1.5;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.hero-inner,
.section-inner,
.cta-inner {
    width: calc(100% - 40px);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #063b80;
    overflow: hidden;
}

.hero-inner {
    min-height: 390px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
}

.hero-copy {
    min-width: 0;
    padding: 55px 45px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #8fc4ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.hero-copy h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.04;
    font-weight: 800;
}

.hero-copy h1 span {
    color: #1684ff;
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 24px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.65;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    min-height: 44px;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-weight: 700;
    transition: .2s ease;
}

.btn.primary {
    background: #10d66b;
    color: #ffffff;
}

.btn.primary:hover {
    background: #0cbd5d;
    transform: translateY(-2px);
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,.8);
    color: #ffffff;
}

.btn.ghost:hover {
    background: rgba(255,255,255,.1);
}

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

/* HERO IMAGE */

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 390px;
    overflow: hidden;
}

.hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(
        90deg,
        rgba(3,38,84,0),
        rgba(3,38,84,.9)
    );
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

/* =========================================================
   GENERAL SECTION
   ========================================================= */

.section {
    width: 100%;
    margin: 0;
    padding: 65px 0;
}

.section-head {
    margin-bottom: 28px;
}

.section-head h2,
.section-intro h2 {
    margin: 7px 0 10px;
    color: #082b5f;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
}

.section-head p,
.section-intro p {
    margin: 0;
    color: #64748b;
    line-height: 1.65;
}

.eyebrow {
    display: inline-block;
    color: #0878ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background: #f5f9fd;
}

.services-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 35px;
    align-items: start;
}

.section-intro {
    padding-top: 5px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(20,60,100,.07);
    transition: .2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20,60,100,.12);
}

.service-image {
    width: 100%;
    height: 155px;
    overflow: hidden;
}

.service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 15px;
}

.service-icon {
    font-size: 19px;
}

.service-content h3 {
    margin: 6px 0;
    color: #082b5f;
    font-size: 15px;
}

.service-content p {
    margin: 0 0 10px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.55;
}

.detail-link {
    color: #0878ff;
    font-size: 11px;
    font-weight: 700;
}

/* =========================================================
   BENEFITS
   ========================================================= */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.benefit-card {
    min-width: 0;
    padding: 20px 10px;
    text-align: center;
    background: #f8fbff;
    border: 1px solid #e1ebf5;
    border-radius: 10px;
    transition: .2s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f3ff;
    font-size: 18px;
}

.benefit-card h3 {
    margin: 0 0 6px;
    color: #082b5f;
    font-size: 12px;
}

.benefit-card p {
    margin: 0;
    color: #64748b;
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
}

.process-item {
    min-width: 0;
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.process-number {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0878ff;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.process-item h3 {
    margin: 2px 0 4px;
    color: #082b5f;
    font-size: 12px;
}

.process-item p {
    margin: 0;
    color: #64748b;
    font-size: 10px;
    line-height: 1.45;
}

/* =========================================================
   PORTFOLIO
   ========================================================= */

.portfolio-section {
    background: #ffffff;
}

.portfolio-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.portfolio-card {
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce8f3;
    border-radius: 12px;
}

.portfolio-image {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.portfolio-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 5px 9px;
    border-radius: 20px;
    background: #0878ff;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.portfolio-content {
    padding: 13px;
}

.portfolio-content h3 {
    margin: 0 0 4px;
    color: #082b5f;
    font-size: 14px;
}

.portfolio-content p {
    margin: 0;
    color: #64748b;
    font-size: 11px;
}

.portfolio-empty {
    padding: 30px;
    border: 1px dashed #cbd8e5;
    border-radius: 10px;
    color: #64748b;
}

/* =========================================================
   AREA
   ========================================================= */

.area-section {
    background: #eef7ff;
}

.area-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.area-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.area-list span {
    padding: 7px 12px;
    background: #ffffff;
    border: 1px solid #d9e8f6;
    border-radius: 20px;
    color: #24466b;
    font-size: 11px;
    font-weight: 600;
}

.area-map {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.area-map img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    width: 100%;
    padding: 0 20px 45px;
    background: #eef7ff;
}

.cta-inner {
    min-height: 105px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-radius: 14px;
    background: linear-gradient(100deg,#063b80,#075ebd);
}

.cta-inner h2 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 21px;
}

.cta-inner p {
    margin: 0;
    color: rgba(255,255,255,.8);
    font-size: 12px;
}

.btn.whatsapp {
    flex-shrink: 0;
    background: #10d66b;
    color: #ffffff;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-copy {
        padding-right: 25px;
    }

    .services-layout {
        grid-template-columns: 240px 1fr;
        gap: 20px;
    }

    .service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 25px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .hero-inner,
    .section-inner,
    .cta-inner {
        width: calc(100% - 28px);
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 40px 0 30px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-copy p {
        font-size: 14px;
    }

    .hero-visual {
        min-height: 280px;
    }

    .hero-visual img {
        min-height: 280px;
    }

    .hero-overlay {
        width: 100px;
        padding: 20px 12px;
        font-size: 12px;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 210px;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 25px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-heading {
        display: block;
    }

    .portfolio-heading .btn {
        margin-top: 15px;
    }

    .area-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .area-map img {
        height: 210px;
    }

    .cta-inner {
        width: calc(100% - 28px);
        display: block;
        padding: 25px;
        text-align: left;
    }

    .cta-inner .btn {
        width: 100%;
        margin-top: 18px;
    }
}

/* =========================================================
   HP KECIL
   ========================================================= */

@media (max-width: 420px) {

    .hero-copy h1 {
        font-size: 31px;
    }

    .actions {
        flex-direction: column;
    }

    .actions .btn {
        width: 100%;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 190px;
    }

    .portfolio-image {
        height: 190px;
    }
    
/* =========================================================
   GOSERVICE FINAL - MATCH REFERENCE
   JANGAN HAPUS CSS LAMA
   OVERRIDE INI DILETAKKAN PALING BAWAH
   ========================================================= */

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box !important;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.hero-inner,
.section-inner,
.cta-inner {
    width: min(1180px, calc(100% - 40px)) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #063b80 !important;
    overflow: hidden !important;
}

.hero-inner {
    min-height: 390px !important;
    display: grid !important;
    grid-template-columns: 1.05fr 0.95fr !important;
    gap: 0 !important;
    align-items: stretch !important;
}

.hero-copy {
    min-width: 0 !important;
    width: 100% !important;
    padding: 50px 35px 45px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.hero-copy h1 {
    margin: 0 0 18px !important;
    color: #fff !important;
    font-size: clamp(38px, 4vw, 58px) !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
}

.hero-copy h1 span {
    color: #1684ff !important;
}

.hero-copy p {
    max-width: 620px !important;
    margin: 0 0 24px !important;
    color: rgba(255,255,255,.9) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.trust-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    margin-top: 20px !important;
}

/* HERO FOTO HD */

.hero-visual {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 390px !important;
    overflow: hidden !important;
}

.hero-visual img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 390px !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* sisi kanan LAPTOP / PC / NETWORK / CCTV */

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 145px !important;
    padding: 40px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 12px !important;
    background: linear-gradient(
        90deg,
        rgba(3,38,84,0),
        rgba(3,38,84,.9)
    ) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    width: 100% !important;
    background: #f5f9fd !important;
}

.services-layout {
    display: grid !important;
    grid-template-columns: 330px minmax(0,1fr) !important;
    gap: 28px !important;
    align-items: start !important;
}

.section-intro {
    min-width: 0 !important;
    padding-top: 5px !important;
}

.section-intro h2 {
    font-size: 32px !important;
    line-height: 1.1 !important;
}

.service-cards {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 14px !important;
    min-width: 0 !important;
}

.service-card {
    width: 100% !important;
    min-width: 0 !important;
    background: #fff !important;
    border: 1px solid #dbe7f3 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.service-image {
    width: 100% !important;
    height: 150px !important;
    overflow: hidden !important;
}

.service-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

/* =========================================================
   KEUNGGULAN
   ========================================================= */

.benefit-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(6,minmax(0,1fr)) !important;
    gap: 12px !important;
}

.benefit-card {
    min-width: 0 !important;
    text-align: center !important;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(6,minmax(0,1fr)) !important;
    gap: 15px !important;
}

.process-item {
    min-width: 0 !important;
}

/* =========================================================
   PORTFOLIO
   ========================================================= */

.portfolio-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
    gap: 16px !important;
}

.portfolio-image {
    width: 100% !important;
    height: 190px !important;
    overflow: hidden !important;
}

.portfolio-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

/* =========================================================
   AREA
   ========================================================= */

.area-layout {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
}

.area-map {
    width: 100% !important;
}

.area-map img {
    width: 100% !important;
    height: 250px !important;
    display: block !important;
    object-fit: cover !important;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    width: 100% !important;
}

.cta-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 25px !important;
}

/* =========================================================
   TABLET
   HANYA BERUBAH SAAT LAYAR BENAR-BENAR KECIL
   ========================================================= */

@media (max-width: 850px) {

    .hero-inner {
        grid-template-columns: 1fr !important;
    }

    .hero-copy {
        padding: 45px 25px 35px !important;
    }

    .hero-visual {
        min-height: 320px !important;
    }

    .hero-visual img {
        min-height: 320px !important;
    }

    .services-layout {
        grid-template-columns: 1fr !important;
    }

    .service-cards {
        grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    }

    .benefit-grid {
        grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    }

    .process-grid {
        grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }

    .area-layout {
        grid-template-columns: 1fr !important;
    }

    .cta-inner {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hero-inner,
    .section-inner,
    .cta-inner {
        width: calc(100% - 28px) !important;
        max-width: none !important;
    }

    .hero-copy {
        padding: 38px 0 30px !important;
    }

    .hero-copy h1 {
        font-size: 34px !important;
    }

    .hero-copy p {
        font-size: 14px !important;
    }

    .actions {
        flex-direction: column !important;
    }

    .actions .btn {
        width: 100% !important;
    }

    .hero-visual {
        min-height: 260px !important;
    }

    .hero-visual img {
        min-height: 260px !important;
    }

    .hero-overlay {
        width: 100px !important;
        padding: 20px 12px !important;
        font-size: 12px !important;
    }

    .service-cards {
        grid-template-columns: 1fr !important;
    }

    .service-image {
        height: 190px !important;
    }

    .benefit-grid {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }

    .portfolio-image {
        height: 220px !important;
    }

    .area-layout {
        grid-template-columns: 1fr !important;
    }

    .area-map img {
        height: 200px !important;
    }

    .cta-inner {
        width: calc(100% - 28px) !important;
    }
}

@media (max-width: 420px) {

    .hero-copy h1 {
        font-size: 30px !important;
    }

    .benefit-grid {
        grid-template-columns: 1fr !important;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-overlay {
        display: none !important;
    }
}