/* =========================================================
   KONTAK - PT SEDULUR MAKMUR SEJAHTERA
   ========================================================= */

:root {
    --contact-blue: #2563eb;
    --contact-blue-dark: #1d4ed8;
    --contact-green: #10b981;

    --contact-dark: #0f172a;
    --contact-text: #334155;
    --contact-muted: #64748b;

    --contact-light: #f8fafc;

    --contact-border: rgba(15, 23, 42, .08);

    --contact-shadow:
        0 18px 45px rgba(15, 23, 42, .08);
}


/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(37, 99, 235, .14),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(16, 185, 129, .10),
            transparent 30%
        ),
        #f8fafc;
}


.contact-hero-bg {
    position: absolute;

    inset: 0;

    pointer-events: none;
}


.contact-hero-bg::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -220px;
    top: -280px;

    border-radius: 50%;

    border:
        95px solid
        rgba(37, 99, 235, .05);
}


.contact-hero-bg::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    bottom: -270px;

    border-radius: 50%;

    border:
        75px solid
        rgba(16, 185, 129, .05);
}


.contact-hero-inner {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 70px 18px;
}


.contact-hero-content {
    max-width: 760px;
}


.contact-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--contact-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-hero h1 {
    margin: 0 0 16px;

    color: var(--contact-dark);

    font-size: 56px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.contact-hero h1 span {
    color: var(--contact-blue);
}


.contact-hero p {
    max-width: 650px;

    margin: 0;

    color: var(--contact-text);

    font-size: 18px;

    line-height: 1.8;
}


.contact-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 26px;

    color: var(--contact-muted);

    font-size: 14px;
}


.contact-breadcrumb a {
    color: var(--contact-blue);

    text-decoration: none;

    font-weight: 700;
}


.contact-breadcrumb strong {
    color: var(--contact-dark);
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    padding: 90px 18px;

    background: #fff;
}


.contact-container {
    max-width: 1200px;

    margin: 0 auto;
}


.contact-heading {
    max-width: 720px;

    margin: 0 auto 45px;

    text-align: center;
}


.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--contact-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-heading h2 {
    margin: 0 0 15px;

    color: var(--contact-dark);

    font-size: 38px;

    line-height: 1.2;

    letter-spacing: -.7px;
}


.contact-heading h2 span {
    color: var(--contact-blue);
}


.contact-heading p {
    margin: 0;

    color: var(--contact-muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT INFORMATION GRID
   ========================================================= */

.contact-info-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    max-width: 1000px;

    margin: 0 auto;
}


/* =========================================================
   CONTACT CARD
   ========================================================= */

.contact-card {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    min-height: 190px;

    padding: 25px;

    border:
        1px solid
        var(--contact-border);

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 12px 30px
        rgba(15, 23, 42, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.contact-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 40px
        rgba(15, 23, 42, .10);
}


.contact-icon {
    flex: 0 0 auto;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, .10),
            rgba(16, 185, 129, .10)
        );

    color: var(--contact-blue);

    font-size: 11px;

    font-weight: 800;
}


.contact-card-content {
    min-width: 0;
}


.contact-card-label {
    display: block;

    margin-bottom: 4px;

    color: var(--contact-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.contact-card h3 {
    margin: 0 0 8px;

    color: var(--contact-dark);

    font-size: 19px;

    line-height: 1.3;
}


.contact-card p {
    margin: 0;

    color: var(--contact-muted);

    font-size: 13px;

    line-height: 1.7;
}


.contact-card a {
    display: inline-block;

    margin-top: 10px;

    color: var(--contact-blue);

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        color .2s ease;
}


.contact-card a:hover {
    color: var(--contact-blue-dark);
}


/* =========================================================
   WHATSAPP CTA
   ========================================================= */

.contact-whatsapp {
    padding: 70px 18px;

    background:
        linear-gradient(
            135deg,
            #f0fdf4,
            #eff6ff
        );
}


.contact-whatsapp-inner {
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 40px 45px;

    border-radius: 25px;

    background: #fff;

    border:
        1px solid
        var(--contact-border);

    box-shadow:
        0 15px 40px
        rgba(15, 23, 42, .06);
}


.whatsapp-content {
    max-width: 720px;
}


.whatsapp-content h2 {
    margin: 0 0 10px;

    color: var(--contact-dark);

    font-size: 30px;

    line-height: 1.25;
}


.whatsapp-content h2 span {
    color: var(--contact-blue);
}


.whatsapp-content p {
    margin: 0;

    color: var(--contact-muted);

    font-size: 14px;

    line-height: 1.7;
}


.whatsapp-button {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #10b981,
            #059669
        );

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 12px 25px
        rgba(16, 185, 129, .20);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.whatsapp-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 30px
        rgba(16, 185, 129, .27);
}


.whatsapp-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 28px;

    height: 28px;

    border-radius: 9px;

    background:
        rgba(255, 255, 255, .18);

    font-size: 9px;
}


/* =========================================================
   GOOGLE MAP
   ========================================================= */

.contact-map-section {
    padding: 90px 18px;

    background: #fff;
}


.contact-map-container {
    max-width: 1200px;

    margin: 0 auto;
}


.contact-map-heading {
    max-width: 700px;

    margin: 0 auto 30px;

    text-align: center;
}


.contact-map-heading h2 {
    margin: 0 0 12px;

    color: var(--contact-dark);

    font-size: 36px;

    line-height: 1.2;
}


.contact-map-heading h2 span {
    color: var(--contact-blue);
}


.contact-map-heading p {
    margin: 0;

    color: var(--contact-muted);

    font-size: 14px;

    line-height: 1.7;
}


.contact-map {
    overflow: hidden;

    border-radius: 25px;

    border:
        1px solid
        var(--contact-border);

    box-shadow:
        var(--contact-shadow);

    background: #f8fafc;
}


.contact-map iframe {
    display: block;

    width: 100%;

    min-height: 450px;

    border: 0;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.contact-bottom {
    padding: 70px 18px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #172554
        );
}


.contact-bottom-inner {
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.contact-bottom .contact-label {
    color: #60a5fa;
}


.contact-bottom h2 {
    max-width: 700px;

    margin: 0 0 10px;

    color: #fff;

    font-size: 32px;

    line-height: 1.25;
}


.contact-bottom h2 span {
    color: #60a5fa;
}


.contact-bottom p {
    max-width: 650px;

    margin: 0;

    color:
        rgba(255, 255, 255, .70);

    font-size: 14px;

    line-height: 1.7;
}


.contact-product-button {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 14px 20px;

    border-radius: 14px;

    background: #fff;

    color: var(--contact-blue);

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.contact-product-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, .20);
}


.contact-product-button span {
    font-size: 18px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .contact-info-grid {
        grid-template-columns: 1fr;

        max-width: 700px;
    }


    .contact-whatsapp-inner,
    .contact-bottom-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-hero {
        min-height: 330px;
    }


    .contact-hero-inner {
        padding: 55px 18px;
    }


    .contact-hero h1 {
        font-size: 40px;
    }


    .contact-hero p {
        font-size: 15px;

        line-height: 1.7;
    }


    .contact-breadcrumb {
        margin-top: 20px;
    }


    .contact-section,
    .contact-map-section {
        padding: 60px 12px;
    }


    .contact-heading h2 {
        font-size: 29px;
    }


    .contact-heading p {
        font-size: 14px;
    }


    .contact-info-grid {
        gap: 14px;
    }


    .contact-card {
        min-height: auto;

        padding: 20px;

        gap: 14px;
    }


    .contact-icon {
        width: 45px;

        height: 45px;
    }


    .contact-card h3 {
        font-size: 17px;
    }


    .contact-card p {
        font-size: 12px;
    }


    .contact-whatsapp {
        padding: 55px 12px;
    }


    .contact-whatsapp-inner {
        padding: 30px 22px;

        border-radius: 20px;
    }


    .whatsapp-content h2 {
        font-size: 26px;
    }


    .whatsapp-button {
        width: 100%;

        justify-content: center;
    }


    .contact-map-heading h2 {
        font-size: 29px;
    }


    .contact-map iframe {
        min-height: 350px;
    }


    .contact-bottom {
        padding: 60px 15px;
    }


    .contact-bottom h2 {
        font-size: 27px;
    }


    .contact-product-button {
        width: 100%;

        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .contact-hero h1 {
        font-size: 34px;
    }


    .contact-label,
    .section-label {
        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .contact-heading h2 {
        font-size: 26px;
    }


    .contact-card {
        padding: 18px;
    }


    .contact-card h3 {
        font-size: 16px;
    }


    .contact-card p {
        font-size: 12px;
    }


    .whatsapp-content h2 {
        font-size: 24px;
    }


    .contact-bottom h2 {
        font-size: 25px;
    }

}