/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f3f7fd;
    color: #172033;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: absolute;

    top: 18px;
    left: 2.2%;
    right: 2.2%;

    height: 78px;

    padding: 0 35px;

    background: rgba(255, 255, 255, 0.97);

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 10;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.logo img {
    width: 125px;
    height: 60px;

    object-fit: contain;
    display: block;
}


/* NAVIGATION */

.navbar nav {
    display: flex;
    gap: 38px;
    height: 100%;
}

.navbar nav a {
    position: relative;

    display: flex;
    align-items: center;

    color: #263044;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #1763e9;
}

.navbar nav a.active::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #1763e9;
}


/* NAV BUTTON */

.nav-button {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 23px;

    background: #1763e9;

    color: white;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s;
}

.nav-button:hover {
    background: #0d4fc5;
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 730px;

    position: relative;

    background-image: url("images/perkantoran.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}


/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 42, 0.75),
            rgba(3, 18, 42, 0.45),
            rgba(3, 18, 42, 0.20)
        );
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    margin-left: 7.5%;
    margin-top: 45px;
}


/* LABEL */

.hero-label {
    display: inline-block;

    padding: 10px 20px;

    background: #1763e9;

    color: white;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.4px;

    margin-bottom: 20px;
}


/* HERO TITLE */

.hero h1 {
    color: white;

    font-size: 60px;

    line-height: 1.13;

    font-weight: 700;

    letter-spacing: -1.5px;
}

.hero h1 span {
    color: #3f91ff;
}


/* HERO DESCRIPTION */

.hero p {
    color: white;

    font-size: 17px;

    line-height: 1.8;

    margin-top: 20px;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 27px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    padding: 15px 27px;

    background: #1763e9;

    color: white;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.btn-primary:hover {
    background: #0d4fc5;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 30px;

    border: 1.5px solid white;

    color: white;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: #1763e9;
}


/* =========================
   INFO CARD
========================= */

.info-wrapper {
    position: relative;

    margin-top: -70px;

    z-index: 5;

    padding: 0 13%;
}

.info-card {
    min-height: 135px;

    padding: 25px 40px;

    background: white;

    border-radius: 26px;

    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 30px;

    box-shadow: 0 15px 40px rgba(24, 63, 120, 0.12);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 17px;
}

.icon-box {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf4ff;

    color: #1763e9;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;
}

.info-item small {
    display: block;

    color: #68738a;

    font-size: 13px;

    margin-bottom: 4px;
}

.info-item strong {
    display: block;

    color: #202b3e;

    font-size: 14px;
}

.divider {
    width: 1px;
    height: 65px;

    background: #dce2ea;
}


/* =========================
   GENERAL SECTION
========================= */

.section {
    padding: 90px 7.5%;
}

.section-label {
    color: #1763e9;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================
   ABOUT
========================= */

.about {
    background: #f3f7fd;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    margin-top: 20px;
}

.about-title h2 {
    font-size: 42px;

    line-height: 1.25;
}

.about-title h2 span {
    color: #1763e9;
}

.about-text p {
    color: #68738a;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 17px;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #1763e9;

    font-size: 14px;

    font-weight: 600;

    margin-top: 8px;
}


/* =========================
   MEANING
========================= */

.meaning {
    padding: 90px 7.5%;

    background: white;

    text-align: center;
}

.meaning h2 {
    font-size: 34px;

    margin-top: 10px;
}

.meaning-intro {
    max-width: 650px;

    margin: 15px auto 0;

    color: #68738a;

    line-height: 1.8;
}

.meaning-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 45px;
}

.meaning-card {
    padding: 35px;

    border-radius: 18px;

    background: #f4f8ff;

    text-align: left;

    border: 1px solid #e4edfb;
}

.meaning-number {
    color: #1763e9;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;
}

.meaning-card h3 {
    font-size: 20px;

    margin-bottom: 12px;
}

.meaning-card p {
    color: #68738a;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================
   SERVICES
========================= */

.services {
    background: #f3f7fd;
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-top: 10px;
}

.section-heading h2,
.mission > h2,
.why > h2,
.values h2 {
    font-size: 38px;

    line-height: 1.25;
}

.section-heading h2 span,
.mission > h2 span,
.why > h2 span,
.values h2 span {
    color: #1763e9;
}

.section-heading p {
    max-width: 400px;

    color: #68738a;

    font-size: 14px;

    line-height: 1.8;
}

.service-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.service-card {
    position: relative;

    min-height: 370px;

    padding: 28px;

    background: white;

    border-radius: 17px;

    box-shadow: 0 8px 25px rgba(29, 67, 120, 0.06);

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
}


/* DETAIL LAYANAN */

.service-details {
    margin-top: 20px;
}


/* TOMBOL LEARN MORE */

.service-details summary {
    list-style: none;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #1763e9;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;
}

.service-details summary::-webkit-details-marker {
    display: none;
}

.service-details summary::after {
    content: "→";

    font-size: 18px;

    transition: 0.3s;
}

.service-details[open] summary::after {
    transform: rotate(90deg);
}


/* POIN-POIN */

.service-points {
    margin-top: 18px;

    padding-top: 18px;

    border-top: 1px solid #e5ebf4;
}

.service-points p {
    color: #68738a;

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 10px;
}

.service-points ul {
    padding-left: 18px;

    margin: 0;
}

.service-points li {
    color: #68738a;

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 4px;
}

.service-purpose {
    margin-top: 18px;

    padding: 15px;

    background: #f3f7fd;

    border-radius: 10px;
}

.service-purpose strong {
    display: block;

    color: #1763e9;

    font-size: 11px;

    margin-bottom: 5px;
}

.service-purpose p {
    margin: 0;

    font-size: 11px;
}

.service-icon {
    width: 58px;
    height: 58px;

    border-radius: 15px;

    background: #eaf2ff;

    color: #1763e9;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    margin-bottom: 20px;
}

.service-card > span {
    color: #a4afbf;

    font-size: 11px;

    font-weight: 700;
}

.service-card h3 {
    font-size: 17px;

    line-height: 1.45;

    margin: 8px 0 12px;
}

.service-card p {
    color: #707b8e;

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 45px;
}

.service-card a {
    position: absolute;

    left: 28px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #1763e9;

    font-size: 13px;

    font-weight: 600;
}



/* =========================
   VISION
========================= */

.vision {
    padding: 100px 15%;

    background: #1763e9;

    color: white;

    text-align: center;
}

.vision .section-label {
    color: #cfe2ff;
}

.vision h2 {
    max-width: 850px;

    margin: 12px auto;

    font-size: 43px;

    line-height: 1.25;
}

.vision h2 span {
    color: #b9d7ff;
}

.vision p {
    max-width: 750px;

    margin: auto;

    font-size: 15px;

    line-height: 1.9;

    opacity: 0.9;
}


/* =========================
   MISSION
========================= */

.mission {
    background: white;
}

.mission-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.mission-card {
    padding: 28px;

    border: 1px solid #e3eaf4;

    border-radius: 15px;

    transition: 0.3s;
}

.mission-card:hover {
    border-color: #1763e9;

    transform: translateY(-5px);
}

.mission-card strong {
    color: #1763e9;

    font-size: 12px;
}

.mission-card h3 {
    font-size: 15px;

    margin: 10px 0;
}

.mission-card p {
    color: #707b8e;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================
   WHY PRADIPA
========================= */

.why {
    background: #f3f7fd;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.why-card {
    padding: 30px;

    background: white;

    border-radius: 17px;
}

.why-card i {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf2ff;

    color: #1763e9;

    font-size: 20px;

    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 17px;

    margin-bottom: 8px;
}

.why-card p {
    color: #707b8e;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================
   VALUES
========================= */

.values {
    padding: 90px 7.5%;

    background: #111d31;

    color: white;
}

.values h2 {
    margin-top: 10px;
}

.values-list {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;

    margin-top: 40px;
}

.values-list > div {
    padding: 25px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 15px;
}

.values-list strong {
    color: #5d9fff;

    font-size: 15px;
}

.values-list p {
    color: #aeb9ca;

    font-size: 11px;

    line-height: 1.7;

    margin-top: 10px;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 90px 7.5%;

    background: white;
}

.contact-box {
    padding: 65px;

    background: #1763e9;

    border-radius: 25px;

    text-align: center;

    color: white;
}

.contact-box .section-label {
    color: #cfe2ff;
}

.contact-box h2 {
    font-size: 42px;

    margin: 10px 0;
}

.contact-box h2 span {
    color: #c3dcff;
}

.contact-box p {
    color: #e3edff;

    font-size: 14px;

    margin-bottom: 25px;
}

.btn-white {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 14px 27px;

    background: white;

    color: #1763e9;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 45px 7.5%;

    background: #0b1424;

    text-align: center;

    color: #aab5c5;
}

.footer-logo img {
    width: 125px;

    height: 60px;

    object-fit: contain;

    background: white;

    border-radius: 8px;

    margin-bottom: 15px;
}

footer p {
    font-size: 11px;

    margin-bottom: 5px;
}

footer > span {
    font-size: 11px;

    color: #4f91ef;
}

.copyright {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.08);

    font-size: 10px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .navbar nav {
        gap: 20px;
    }

    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-list {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 850px) {

    .navbar {
        height: auto;

        min-height: 70px;

        padding: 10px 20px;

        flex-wrap: wrap;
    }

    .navbar nav {
        order: 3;

        width: 100%;

        height: 40px;

        justify-content: center;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        margin-left: 7%;
        margin-right: 7%;
    }

    .hero h1 {
        font-size: 48px;
    }

    .info-wrapper {
        padding: 0 6%;
    }

    .info-card {
        grid-template-columns: 1fr;
    }

    .divider {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .meaning-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 15px;
    }

    .mission-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .navbar nav {
        gap: 14px;
    }

    .navbar nav a {
        font-size: 11px;
    }

    .nav-button {
        padding: 10px 14px;

        font-size: 11px;
    }

    .logo img {
        width: 100px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        margin-top: 80px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p br {
        display: none;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 180px;
    }

    .info-wrapper {
        margin-top: -45px;
    }

    .section {
        padding: 65px 7%;
    }

    .about-title h2,
    .section-heading h2,
    .mission > h2,
    .why > h2,
    .values h2 {
        font-size: 30px;
    }

    .service-container,
    .mission-grid,
    .why-grid,
    .values-list {
        grid-template-columns: 1fr;
    }

    .vision {
        padding: 75px 7%;
    }

    .vision h2 {
        font-size: 32px;
    }

    .contact {
        padding: 60px 7%;
    }

    .contact-box {
        padding: 45px 20px;
    }

    .contact-box h2 {
        font-size: 30px;
    }
}
/* =========================
   CONTACT INFORMATION
========================= */

.contact {
    padding: 90px 7.5%;
    background: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 45px;
}

.contact-header h2 {
    font-size: 42px;
    margin: 10px 0;
}

.contact-header h2 span {
    color: #1763e9;
}

.contact-header p {
    color: #68738a;
    font-size: 14px;
    line-height: 1.8;
}


/* CONTACT CONTAINER */

.contact-container {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 20px;

    max-width: 1200px;

    margin: 0 auto;
}


/* CONTACT ITEM */

.contact-item {
    min-height: 180px;

    padding: 25px;

    background: #f4f8ff;

    border: 1px solid #e3ebf7;

    border-radius: 18px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    transition: 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(29, 67, 120, 0.10);
}


/* ICON */

.contact-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #e5efff;

    color: #1763e9;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;
}


/* TEXT */

.contact-item h3 {
    font-size: 15px;

    margin-bottom: 9px;

    color: #172033;
}

.contact-item p {
    color: #68738a;

    font-size: 12px;

    line-height: 1.8;
}

.contact-item a {
    color: #1763e9;

    font-size: 12px;

    font-weight: 600;

    word-break: break-word;
}

.contact-item a:hover {
    text-decoration: underline;
}
/* =========================
   SERVICE MODAL
========================= */

.learn-more {
    border: none;
    background: none;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #1763e9;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    padding: 0;

    transition: 0.3s;
}

.learn-more:hover {
    gap: 13px;
}


/* BACKGROUND POPUP */

.service-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    background: rgba(8, 20, 38, 0.72);

    backdrop-filter: blur(5px);

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.service-modal.active {
    display: flex;
}


/* BOX POPUP */

.modal-content {
    position: relative;

    width: 100%;
    max-width: 650px;

    max-height: 85vh;

    overflow-y: auto;

    background: white;

    border-radius: 22px;

    padding: 38px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);

    animation: modalOpen 0.25s ease;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

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


/* CLOSE */

.close-modal {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #edf4ff;

    color: #1763e9;

    font-size: 25px;

    cursor: pointer;
}


/* TEXT */

.modal-number {
    color: #1763e9;

    font-size: 13px;
    font-weight: 700;
}

.modal-content h2 {
    color: #172033;

    font-size: 28px;
    line-height: 1.3;

    margin: 8px 40px 15px 0;
}

.modal-content > p {
    color: #68738a;

    font-size: 13px;
    line-height: 1.8;
}

.modal-content h4 {
    color: #172033;

    font-size: 15px;

    margin: 22px 0 10px;
}

.modal-content ul {
    padding-left: 20px;
}

.modal-content li {
    color: #68738a;

    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 5px;
}


/* PURPOSE */

.modal-purpose {
    margin-top: 25px;

    padding: 18px;

    background: #f1f6ff;

    border-radius: 12px;
}

.modal-purpose strong {
    color: #1763e9;

    font-size: 11px;
}

.modal-purpose p {
    color: #172033;

    font-size: 12px;

    margin-top: 5px;
}


/* MOBILE */

@media (max-width: 600px) {

    .service-modal {
        padding: 15px;
    }

    .modal-content {
        padding: 28px 22px;
        max-height: 88vh;
    }

    .modal-content h2 {
        font-size: 23px;
    }
}

/* =========================================================
   MOBILE PREMIUM LAYOUT
   Desktop layout above remains unchanged.
========================================================= */

.mobile-menu-btn {
    display: none;
}

/* Tablet */
@media (max-width: 850px) {
    .navbar {
        left: 4%;
        right: 4%;
        top: 14px;
        padding: 8px 18px;
        min-height: 66px;
        border-radius: 16px;
    }

    .navbar nav {
        order: 3;
        width: 100%;
    }

    .hero-content {
        margin-left: 6%;
        margin-right: 6%;
    }

    .info-card {
        padding: 25px;
    }
}

/* Phone */
@media (max-width: 600px) {

    body {
        overflow-x: hidden;
    }

    /* ---------- NAVBAR ---------- */
    .navbar {
        position: absolute;
        top: 12px;
        left: 4%;
        right: 4%;
        width: auto;
        height: auto;
        min-height: 64px;
        padding: 7px 14px;
        border-radius: 16px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 0;
    }

    .logo img {
        width: 96px;
        height: 50px;
    }

    .mobile-menu-btn {
        display: flex;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 12px;
        background: #edf4ff;
        color: #1763e9;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .navbar nav {
        display: none;
        order: initial;
        grid-column: 1 / -1;
        width: 100%;
        height: auto;
        padding: 10px 0 5px;
        flex-direction: column;
        gap: 3px;
    }

    .navbar.nav-open nav {
        display: flex;
    }

    .navbar nav a {
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 13px;
        justify-content: flex-start;
    }

    .navbar nav a:hover,
    .navbar nav a.active {
        background: #edf4ff;
        color: #1763e9;
    }

    .navbar nav a.active::after {
        display: none;
    }

    .nav-button {
        display: none;
    }

    /* ---------- HERO ---------- */
    .hero {
        min-height: 690px;
        background-position: 58% center;
        align-items: flex-end;
        padding-bottom: 115px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 18, 42, 0.30),
                rgba(3, 18, 42, 0.58) 45%,
                rgba(3, 18, 42, 0.88)
            );
    }

    .hero-content {
        width: 100%;
        margin: 0;
        padding: 0 7%;
    }

    .hero-label {
        padding: 8px 13px;
        margin-bottom: 15px;
        font-size: 8.5px;
        letter-spacing: 0.35px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 43px);
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .hero p {
        max-width: 310px;
        margin-top: 16px;
        font-size: 12.5px;
        line-height: 1.7;
    }

    .hero p br {
        display: none;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: row;
        gap: 10px;
        margin-top: 21px;
    }

    .btn-primary,
    .btn-outline {
        min-height: 47px;
        padding: 12px 18px;
        font-size: 12px;
        flex: 1;
        white-space: nowrap;
    }

    /* ---------- COMPANY INFO ---------- */
    .info-wrapper {
        margin-top: -55px;
        padding: 0 6%;
    }

    .info-card {
        min-height: 0;
        padding: 8px 18px;
        border-radius: 20px;
        display: block;
    }

    .info-item {
        min-height: 75px;
        gap: 13px;
    }

    .icon-box {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .info-item small {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .info-item strong {
        font-size: 12px;
    }

    .divider {
        display: block;
        width: 100%;
        height: 1px;
        background: #e6edf7;
    }

    /* ---------- GENERAL ---------- */
    .section {
        padding: 65px 7%;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .about-grid {
        gap: 22px;
        margin-top: 15px;
    }

    .about-title h2,
    .section-heading h2,
    .mission > h2,
    .why > h2,
    .values h2 {
        font-size: 29px;
        line-height: 1.2;
    }

    .about-text p {
        font-size: 12.5px;
        line-height: 1.85;
        margin-bottom: 13px;
    }

    .text-link {
        font-size: 12px;
    }

    /* ---------- MEANING ---------- */
    .meaning {
        padding: 65px 7%;
    }

    .meaning h2 {
        font-size: 25px;
        line-height: 1.25;
    }

    .meaning-intro {
        font-size: 12.5px;
        line-height: 1.8;
    }

    .meaning-grid {
        gap: 14px;
        margin-top: 30px;
    }

    .meaning-card {
        padding: 23px;
        border-radius: 15px;
    }

    .meaning-number {
        margin-bottom: 13px;
    }

    .meaning-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .meaning-card p {
        font-size: 11.5px;
        line-height: 1.75;
    }

    /* ---------- SERVICES ---------- */
    .section-heading {
        margin-top: 8px;
    }

    .section-heading p {
        font-size: 12px;
        line-height: 1.75;
        margin-top: 12px;
    }

    .service-container {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 27px;
    }

    .service-card {
        min-height: 0;
        padding: 23px;
        border-radius: 16px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
        font-size: 19px;
        border-radius: 13px;
    }

    .service-card h3 {
        font-size: 16px;
        line-height: 1.4;
    }

    .service-card p {
        font-size: 11.5px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .learn-more {
        font-size: 12px;
        min-height: 38px;
        padding: 5px 0;
    }

    /* ---------- BLUE VISION ---------- */
    .vision {
        padding: 70px 7%;
    }

    .vision h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .vision p {
        font-size: 12px;
        line-height: 1.8;
    }

    /* ---------- MISSION / WHY / VALUES ---------- */
    .mission-grid,
    .why-grid,
    .values-list {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 25px;
    }

    .mission-card,
    .why-card {
        padding: 23px;
        border-radius: 15px;
    }

    .mission-card h3 {
        font-size: 14px;
    }

    .mission-card p,
    .why-card p {
        font-size: 11.5px;
        line-height: 1.75;
    }

    /* ---------- CONTACT ---------- */
    .contact {
        padding: 65px 7%;
    }

    .contact-header {
        margin-bottom: 28px;
    }

    .contact-header h2 {
        font-size: 29px;
        line-height: 1.2;
    }

    .contact-header p {
        font-size: 12px;
        line-height: 1.75;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-item {
        min-height: 0;
        padding: 20px;
        border-radius: 15px;
    }

    .contact-icon {
        width: 43px;
        height: 43px;
        font-size: 16px;
    }

    .contact-item h3 {
        font-size: 14px;
    }

    .contact-item p,
    .contact-item a {
        font-size: 11.5px;
        line-height: 1.7;
    }

    /* ---------- FOOTER ---------- */
    footer {
        padding: 38px 7%;
    }

    .footer-logo img {
        width: 105px;
        height: 52px;
    }

    footer p,
    footer > span {
        font-size: 10px;
    }

    /* ---------- SERVICE POPUP ---------- */
    .service-modal {
        padding: 12px;
    }

    .modal-content {
        max-height: 90vh;
        padding: 25px 19px;
        border-radius: 18px;
    }

    .close-modal {
        top: 13px;
        right: 13px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .modal-content h2 {
        font-size: 21px;
        line-height: 1.3;
        margin-right: 35px;
    }

    .modal-content > p,
    .modal-content li {
        font-size: 11.5px;
        line-height: 1.75;
    }

    .modal-content h4 {
        font-size: 14px;
        margin-top: 18px;
    }

    .modal-purpose {
        padding: 15px;
        margin-top: 20px;
    }

    .modal-purpose p {
        font-size: 11px;
        line-height: 1.7;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .hero {
        min-height: 665px;
        padding-bottom: 105px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        flex: none;
    }

    .info-item {
        min-height: 68px;
    }
}


/* Mobile menu: ensure the button is above the navbar content and tappable */
@media (max-width: 600px) {
    .navbar {
        z-index: 1000;
    }

    .mobile-menu-btn {
        position: relative;
        z-index: 1002;
        pointer-events: auto;
        touch-action: manipulation;
        appearance: none;
        -webkit-appearance: none;
    }

    .mobile-menu-btn i {
        pointer-events: none;
    }

    .navbar.nav-open {
        padding-bottom: 10px;
    }
}
