@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==================================================
   RESET & BASE
================================================== */

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

html,
body {
    height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #ffffff;
    color: #111827;
    /* padding-top: 72px; */
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

main {
    flex: 1;
}

/* ===============================
   TEXT UTILITY
================================= */
.text-bold {
    font-weight: 700;
}

.text-normal {
    font-weight: 400;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ===============================
   MARGIN
================================= */
.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

/* ===============================
   PADDING
================================= */
.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-3 {
    padding-top: 0.75rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-5 {
    padding-top: 1.25rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 0.75rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-5 {
    padding-bottom: 1.25rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

/* ===============================
   TEXT COLORS
================================= */
.text-black {
    color: #000000;
}

.text-white {
    color: #ffffff;
}

.text-gray {
    color: #6b7280;
}

.text-red {
    color: #ef4444;
}

.text-green {
    color: #22c55e;
}

.text-blue {
    color: #3b82f6;
}

.text-yellow {
    color: #facc15;
}

.text-purple {
    color: #8b5cf6;
}

.text-pink {
    color: #ec4899;
}

.text-indigo {
    color: #6366f1;
}

/* ===============================
   BACKGROUND COLORS
================================= */
.bg-black {
    background-color: #000000;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray {
    background-color: #f3f4f6;
}

.bg-red {
    background-color: #ef4444;
}

.bg-green {
    background-color: #22c55e;
}

.bg-blue {
    background-color: #3b82f6;
}

.bg-yellow {
    background-color: #facc15;
}

.bg-purple {
    background-color: #8b5cf6;
}

.bg-pink {
    background-color: #ec4899;
}

.bg-indigo {
    background-color: #6366f1;
}

/* ===============================
   HOVER COLORS
================================= */
.hover-black:hover {
    color: #000000;
}

.hover-white:hover {
    color: #ffffff;
}

.hover-gray:hover {
    color: #6b7280;
}

.hover-red:hover {
    color: #ef4444;
}

.hover-green:hover {
    color: #22c55e;
}

.hover-blue:hover {
    color: #3b82f6;
}

.hover-yellow:hover {
    color: #facc15;
}

.hover-purple:hover {
    color: #8b5cf6;
}

.hover-pink:hover {
    color: #ec4899;
}

.hover-indigo:hover {
    color: #6366f1;
}

/* ===============================
   HOVER BACKGROUNDS
================================= */
.bg-hover-black:hover {
    background-color: #000000;
}

.bg-hover-white:hover {
    background-color: #ffffff;
}

.bg-hover-gray:hover {
    background-color: #f3f4f6;
}

.bg-hover-red:hover {
    background-color: #ef4444;
}

.bg-hover-green:hover {
    background-color: #22c55e;
}

.bg-hover-blue:hover {
    background-color: #3b82f6;
}

.bg-hover-yellow:hover {
    background-color: #facc15;
}

.bg-hover-purple:hover {
    background-color: #8b5cf6;
}

.bg-hover-pink:hover {
    background-color: #ec4899;
}

.bg-hover-indigo:hover {
    background-color: #6366f1;
}

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

.navbar-modern {
    height: 82px;
    background: transparent;
    transition: all 0.35s ease;
    backdrop-filter: blur(0);
}

/* ================= SCROLL EFFECT ================= */
.navbar-modern.scrolled {
    background: rgba(255, 255, 255, 0.15);
    /* sedikit lebih opaque supaya blur keliatan */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    background-clip: padding-box;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}


.navbar-modern.scrolled .nav-link {
    color: #111 !important;
    transition: color 0.3s ease;
}


.navbar-modern.scrolled .nav-link.active,
.navbar-modern.scrolled .nav-item .nav-link.active {
    color: #49a0c7 !important;
    font-weight: 600;
}

.navbar-modern.scrolled .nav-link:hover {
    color: #49a0c7 !important;
}


.navbar-modern .navbar-brand {
    display: flex !important;
    align-items: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.navbar-modern .navbar-brand img {
    height: 42px !important;
    width: auto !important;
    max-width: none !important;
    min-width: unset !important;
    display: block !important;
}


.navbar-modern .nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 14px;
    transition: all 0.25s ease;
}


.navbar-modern .nav-link:hover {
    color: #49a0c7;
    font-weight: 700;
}


.navbar-modern .nav-link.active {
    color: #49a0c7;
    font-weight: 700;
}

.btn-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;

    background: linear-gradient(135deg, #49a0c7, #2f89b3);
    color: #ffffff !important;

    border: none;
    text-decoration: none;

    transition: all 0.35s ease;
    overflow: hidden;
}

.btn-nav a {
    text-decoration: none;
    color: #fff;
}

.btn-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: 0.6s;
}


.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(73, 160, 199, 0.35);
    background: linear-gradient(135deg, #2f89b3, #49a0c7);
    color: #fff !important;
}


.btn-nav:hover::before {
    left: 130%;
}


.btn-nav:active {
    transform: scale(0.97);
    box-shadow: 0 8px 18px rgba(73, 160, 199, 0.25);
}



/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .navbar-modern.scrolled {
        backdrop-filter: blur(20px);
    }
}


@media (max-width: 991px) {
    .navbar-modern {
        height: auto;
        padding: 14px 0;
        background: #ffffff;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        margin-top: 14px;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .navbar-nav {
        align-items: flex-start;
        gap: 14px;
    }

    .navbar-modern .nav-link {
        color: #334155;
    }
}




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

.hero-survey {
    position: relative;
    min-height: 100vh;
    background-image: url("../asset/background/bg-hero.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}


/* Overlay hanya untuk area text */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(15, 23, 42, 0.78) 0%,
            rgba(15, 23, 42, 0.6) 45%,
            rgba(15, 23, 42, 0.2) 65%,
            rgba(15, 23, 42, 0) 100%);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Title */
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;

    /* 🔥 Shadow biar kebaca */
    text-shadow:
        0 8px 24px rgba(0, 0, 0, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
    color: #49a0c7;
}

/* Description */
.hero-content p {
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;

    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

/* Action Buttons */
.hero-action {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary-hero {
    background: #49a0c7;
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary-hero:hover {
    background: #3b8bb0;
    transform: translateY(-2px);
}

.btn-outline-hero {
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.stat-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

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

@media (max-width:1400px) {
    .hero-content h1 {
        font-size: 2.9rem;
    }
}

@media (max-width:1200px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width:992px) {
    .hero-survey {
        min-height: 90vh;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-stats {
        gap: 30px;
    }
}

@media (max-width:768px) {
    .hero-survey {
        background-image: url("/asset/background/bg-hero-mobile.jpg");
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .hero-survey .container,
    .hero-survey .row {
        height: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.25;
        text-align: center;
    }

    .hero-content p {
        font-size: .95rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-action {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 14px;
    }

    .btn-primary-hero,
    .btn-outline-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* HERO STATS TETAP SEJAJAR */
    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 25px;
    }

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

    .stat-item h3 {
        font-size: 1.6rem;
    }
}

@media (max-width:576px) {
    .hero-survey {
        background-image: url("/asset/background/bg-hero-mobile.jpg");
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: .9rem;
    }

    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .stat-item h3 {
        font-size: 1.4rem;
    }

    .stat-item span {
        font-size: .8rem;
    }
}

@media (max-width:400px) {
    .hero-survey {
        background-image: url("/asset/background/bg-hero-mobile.jpg");
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

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





/* ==================================================
   SECTION
================================================== */
section {
    padding: 100px 0;
}

section h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

section p {
    font-size: 0.95rem;
    color: #6b7280;
}

/*==================== OPEN LOGO CLIENT ====================*/

.text-MitraKami h1 {
    font-size: 35px;
}

.text-MitraKami p {
    font-size: 20px;
    color: #475569;
}

.card-text {
    width: fit-content;
    margin: 0 auto;
    padding: 10px 26px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 999px;
    background: #ffffff;
}

.card-text p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #49a0c7;
}

.logos {
    overflow: hidden;
    position: relative;
    padding: 50px 0;
}

.logos-slide {
    display: flex;
    gap: 5px;
    width: max-content;
    animation: scrollLogo 25s linear infinite;
}

.logo-card {
    flex: 0 0 auto;
}

@keyframes scrollLogo {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* FADE EDGE */
.logos::before,
.logos::after {
    position: absolute;
    top: 0;
    width: 220px;
    height: 100%;
    content: "";
    z-index: 2;
    pointer-events: none;
}

.logos::before {
    left: 0;
    background: linear-gradient(to left,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.9),
            #ffffff);
}

.logos::after {
    right: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.9),
            #ffffff);
}

/* CARD */
.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 160px;
    height: 90px;
    margin: 0 26px;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-card img {
    max-height: 48px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.35s;
}

.logo-card:hover {
    transform: translateY(-6px);
}

.logo-card:hover img {
    opacity: 1;
    transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .logo-card {
        width: 140px;
        height: 80px;
        margin: 0 18px;
    }

    .logo-card img {
        max-height: 40px;
    }

    .logos::before,
    .logos::after {
        width: 140px;
    }
}

@media (max-width: 576px) {
    .logo-card {
        width: 120px;
        height: 70px;
        margin: 0 14px;
        border-radius: 14px;
    }

    .logo-card img {
        max-height: 36px;
    }

    .logos {
        padding: 30px 0;
    }

    .logos::before,
    .logos::after {
        width: 80px;
    }
}



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

.services-section {
    padding: 90px 0;
}

/* TITLE */
.services-section .text-MitraKami h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.services-section .text-MitraKami p {
    font-size: 18px;
    color: #475569;
    max-width: 720px;
    margin: 0 auto;
}

/* BADGE */
.services-section .card-text {
    width: fit-content;
    margin: 0 auto;
    padding: 10px 26px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: #ffffff;
}

.services-section .card-text p {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #49a0c7;
}

.card-service {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    overflow-y: visible; 
    padding: 20px 0;     
}

.card-service::-webkit-scrollbar {
    display: none;
}

.card-service:active {
    cursor: grabbing;
}

.card-service > div {
    min-width: 350px;
    flex: 0 0 auto;
}

.service-card {
    position: relative;
    height: 100%;
    width: 450px;
    padding: 48px 30px 38px;
    border-radius: 24px;
    background: #499fc775 ;
    /* border: 1px solid rgba(73, 160, 199, 0.35); */

    /* box-shadow:
        0 0 12px rgba(73, 160, 199, 0.25),
        0 0 30px rgba(73, 160, 199, 0.12);

    transition:
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); */
}



.service-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    width: 66px;
    height: 66px;
    border-radius: 18px;

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

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

    animation: floatSoft 4.8s ease-in-out infinite;
}

.service-logo img {
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;

    animation: breathe 4.8s ease-in-out infinite;
}

.btn-detail {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #49a0c7;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-detail:hover {
    color: #0f172a;
    transform: translateX(5px);
}


@keyframes floatSoft {
    0% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -8px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

/* BREATHING SCALE TIPIS */
@keyframes breathe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}


.service-card h4 {
    margin-top: 96px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.service-card p {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #fff;
    text-align: center;
}

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

@media (max-width: 992px) {
    .services-section {
        padding: 70px 0;
    }

    .service-card {
        padding: 44px 32px 34px;
    }

    .service-logo {
        width: 60px;
        height: 60px;
    }

    .service-card h4 {
        margin-top: 90px;
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 40px 28px 30px;
    }

    .service-logo {
        width: 56px;
        height: 56px;
    }

    .service-logo img {
        max-width: 34px;
        max-height: 34px;
    }

    .service-card h4 {
        margin-top: 84px;
        font-size: 1.05rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}




/* ===============================
   ABOUT SECTION
================================ */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

/* IMAGE */
.about-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.about-content {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-badge {
    width: fit-content;
    padding: 10px 26px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 999px;
    background: #ffffff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #49a0c7;
    text-align: center;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px 0;
    color: #0f172a;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

/* LIST */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.about-list li {
    font-size: .95rem;
    color: #334155;
    margin-bottom: 12px;
    font-weight: 500;
}

/* BUTTON WRAPPER */
.btn-abouts {
    display: flex;
    gap: 20px;
}

/* BUTTON */
.btn-1 {
    padding: 14px 34px;
    border-radius: 999px;
    background: #49a0c7;
    color: #ffffff;
    font-weight: 500;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.btn-2 {
    padding: 14px 34px;
    border-radius: 999px;
    background: none;
    border: 1px solid #49a0c7;
    color: #49a0c7;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.btn-1:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(73, 160, 199, .45);
}

.btn-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(73, 160, 199, .45);
}

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

/* Tablet */
@media (max-width: 991px) {

    .about-section {
        padding: 80px 0;
    }

    .about-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

}


/* Mobile */
@media (max-width: 768px) {

    .about-section {
        padding: 70px 0;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .about-content {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .about-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: .95rem;
    }

    /* LIST jadi 2 kolom */
    .about-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 18px;
        text-align: left;
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-list li {
        font-size: .9rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* BUTTON */
    .btn-abouts {
        display: flex;
        align-items: center;
        width: 100%;
        height: 50px;
        gap: 12px;
    }

    .btn-abouts a {
        font-size: 14px;
    }

    .btn-1,
    .btn-2 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 260px;
    }

}


/* Small Mobile */
@media (max-width: 576px) {

    .about-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: .9rem;
    }

    .about-image img {
        border-radius: 14px;
    }

    .about-list {
        gap: 10px 14px;
        max-width: 360px;
    }

    .about-list li {
        font-size: .85rem;
    }

}


/* Extra Small Mobile */
@media (max-width: 400px) {

    .about-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px 10px;
    }

}




/* ================= GALLERY ================= */

/* HEADER */
.gallery-head {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #49a0c7;
    margin-bottom: .5rem;
    display: inline-block;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: .75rem;
}

.section-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 20px;
    color: #6b7280;
}

/* ================= GRID ================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: 28px;
    justify-content: center;
}

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

.gallery-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 350px;
    transition: transform .4s ease, box-shadow .4s ease;
}

.gallery-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.93);
    transition: transform .6s ease, filter .6s ease;
}

.gallery-image:hover img {
    transform: scale(1.07);
    filter: brightness(1);
}

/* ================= OVERLAY ================= */

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.4),
            transparent);
    color: #fff;
    backdrop-filter: blur(4px);
}

.gallery-overlay h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

.gallery-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .85rem;
}

.gallery-overlay li {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: .9;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* ================= BUTTON ================= */

.gallery-action {
    margin-top: 4rem;
    text-align: center;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    padding: 14px 34px;
    border-radius: 999px;
    background: #49a0c7;
    color: #fff;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(73, 160, 199, .35);
}

.btn-gallery i {
    transition: transform .3s ease;
}

.btn-gallery:hover i {
    transform: translateX(6px);
}

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

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .gallery-image {
        height: 300px;
    }

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

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

@media (max-width: 768px) {
    .gallery-image {
        height: 270px;
    }

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

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

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 370px;
    }

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

    .section-subtitle {
        font-size: 15px;
    }
}



/* ================= PRODUCT SECTION ================= */

.product-section {
    padding: 6rem 0;
}

.product-header {
    margin-bottom: 3.5rem;
}

.product-filter {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #49a0c7;
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
    font-weight: 500;
    color: #49a0c7;
}

.filter-btn.active,
.filter-btn:hover {
    background: #49a0c7;
    color: #fff;
    border-color: #49a0c7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.product-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content .btn-modern {
    margin-top: 20px;
}

.product-content h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-content p {
    font-size: .9rem;
    color: #6b7280;
    margin: 0;
}

.product-content a {
    text-decoration: none;
    border: solid 1px #49a0c7;
    padding: 10px 10px;
    border-radius: 16px;
    margin-top: 20px;
}

.product-price {
    margin: 14px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price .old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9rem;
}

.product-price .price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #49a0c7;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-modern i {
    transition: transform 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.btn-modern:hover i {
    transform: translateX(4px);
}

@media (max-width: 1200px) {

    .product-grid {
        gap: 24px;
    }

    .product-content {
        padding: 26px;
    }

}

@media (max-width: 992px) {

    .product-section {
        padding: 5rem 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .product-header {
        margin-bottom: 3rem;
    }

}

@media (max-width: 768px) {

    .product-section {
        padding: 4rem 0;
    }

    .product-filter {
        display: flex;
        gap: 10px;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 9px 18px;
        font-size: .85rem;
    }

    .product-card img {
        height: 210px;
    }

    .product-content {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-content .btn-wrapper {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }

    .product-content .btn-modern {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        width: auto;
    }

}

@media (max-width: 576px) {

    .text-MitraKami h1 {
        font-size: 30px;
    }

    .text-MitraKami p {
        font-size: 18px;
    }

    .card-text p {
        font-size: 12px;
    }

    .product-section {
        padding: 5.5rem 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-filter {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        white-space: nowrap;
        padding-bottom: 6px;
        scroll-behavior: smooth;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .product-filter::-webkit-scrollbar {
        display: none;
    }

    .product-card img {
        height: 300px;
    }

    .product-content {
        padding: 24px;
        flex: 1;
    }

    .product-content h5 {
        font-size: 1.05rem;
    }

    .product-content p {
        font-size: .9rem;
    }

    .product-price .price {
        font-size: 1.1rem;
    }

    .product-content .btn-wrapper {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }

    .btn-modern {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        width: auto;
    }

}

@media (max-width: 400px) {

    .product-card img {
        height: 260px;
    }

    .product-content {
        padding: 18px;
    }

}




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

.contact-header {
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.contact-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(73, 160, 199, 0.12);
    color: #49a0c7;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-badge p {
    margin: 0;
}

.contact-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.contact-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }
}


.contact-section {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* CARD BASE */
.form-card,
.map-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* MAP CARD */
.map-card {
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.map-inner {
    border-radius: 20px;
    overflow: hidden;
    background: #e5e7eb;
    flex: 1;
}

.map-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* FORM */
.form-card h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.form-desc {
    font-size: .95rem;
    color: #6b7280;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: .9rem;
    outline: none;
    transition: all .25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #49a0c7;
    box-shadow: 0 0 0 3px rgba(73, 160, 199, 0.15);
}

/* BUTTON */
.btn-submit {
    margin-top: auto;
    width: 100%;
    padding: 13px 18px;
    border-radius: 999px;
    border: none;
    background: #49a0c7;
    color: #ffffff;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all .3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(73, 160, 199, 0.45);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-inner {
        min-height: 260px;
    }
}


/* ================= TESTIMONIAL ================= */
.testimonial-grid {
    padding: 100px 0;
    background: none;
    overflow: hidden;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #49a0c7;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
}

/* CAROUSEL */
.testimonial-carousel {
    position: relative;
    width: 100%;
    padding: 0 40px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.testimonial-card {
    width: 400px;
    min-height: 260px;
    flex: 0 0 380px;

    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(73, 159, 199, 0.15);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hover */
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border-color: rgba(73, 159, 199, 0.4);
}

/* PROFILE */
.testimonial-card .profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-card .profile img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(73, 159, 199, 0.25);
}

/* NAME */
.testimonial-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.testimonial-card small {
    font-size: 13px;
    color: #64748b;
}

/* MESSAGE */
.testimonial-card p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: #000000;

    word-break: break-word;
}

/* EDGE SHADOW */
.edge-shadow {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.edge-shadow.left {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}

.edge-shadow.right {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

/* NAV */
.testimonial-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.testimonial-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #49a0c7;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-nav button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(73, 160, 199, .45);
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 85%;
    }
}

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

/* HERO ABOUT */
.hero-about {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-about-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-about-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-about-content h1 span {
    color: #49a0c7;
}

.hero-about-content p {
    margin: 20px auto;
    max-width: 700px;
    color: #e5e7eb;
    font-size: 1.05rem;
}

.hero-about-action {
    margin-top: 25px;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #49a0c7, #2f7fa3);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, .3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-about-content h1 {
        font-size: 2.2rem;
    }

    .hero-about {
        height: 70vh;
    }
}


.about-section {
    padding: 6rem 0;
    background: none;
}

.about-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-header p {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 auto;
    color: #6b7280;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 4rem;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.about-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    color: #6b7280;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 500;
    color: #374151;
}

.about-list i {
    color: #49a0c7;
    font-size: 1rem;
    min-width: 18px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #49a0c7, #2f7fa3);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, .15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }
}

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

.hero-layanan {
    padding: 120px 20px 100px;
    background: linear-gradient(135deg, #49a0c7, #2f7fa3);
    color: #fff;
}

.hero-layanan h1 {
    font-size: 42px;
    font-weight: 700;
}

.hero-layanan p {
    max-width: 700px;
    margin: 20px auto 30px;
    opacity: 0.9;
}

.btn-layanan-cta {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    background: #fff;
    color: #49a0c7;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-layanan-cta:hover {
    background: #e6f4fb;
    transform: translateY(-3px);
}

/* ================= DETAIL LAYANAN ================= */

.layanan-detail-section {
    padding: 100px 20px;
    background: #f8fbfd;
}

.layanan-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.layanan-detail-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.layanan-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.layanan-icon {
    font-size: 36px;
    color: #49a0c7;
    margin-bottom: 20px;
}

.layanan-detail-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.layanan-detail-card p {
    font-size: 14px;
    color: #555;
}

/* =================== SERVICE DETAIL =================== */

.service-breadcrumb {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-breadcrumb a {
    text-decoration: none;
    color: #ffffffcc;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-breadcrumb a:hover {
    color: #49a0c7;
}

.service-breadcrumb span {
    margin: 0 6px;
    color: #ffffff99;
}

.service-breadcrumb .active {
    color: #ffffff;
    font-weight: 600;
}


.highlight-item {
    display: flex;
    align-items: center;
    /* bikin sejajar tengah */
    gap: 10px;
    margin-bottom: 12px;
}

.highlight-item i {
    color: #49a0c7;
    font-size: 18px;
    min-width: 20px;
    /* supaya semua rata */
}

.highlight-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #334155;
}


/* =================== FOOTER =================== */
.footer {
    background: #49a0c7;
    color: #ffffff;
    border-radius: 80px 80px 0 0;
}

/* TOP */
.footer-top {
    padding: 5rem 1rem 3rem;
}

/* LOGO */
.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    width: 160px;
    /* 🔥 ukuran PAS */
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* DESC */
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 18px;
}

/* TITLE */
.footer-title {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

/* LINKS */
footer ul li {
    margin-bottom: 0.6rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

footer a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* SOCIAL */
.social {
    display: flex;
    gap: 12px;
}

.social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transition: all 0.3s ease;
}

/* ===============================
   FOOTER CONTACT
=============================== */
.footer-contact {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);

    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ICON */
.footer-contact li i {
    margin-top: 4px;
    min-width: 18px;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

/* HOVER EFFECT */
.footer-contact li:hover {
    color: #ffffff;
}

.footer-contact li:hover i {
    color: #ffffff;
}


@media (max-width: 576px) {
    .footer-contact li {
        font-size: 0.9rem;
    }
}


.social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.9;
}

/* =============================== RESPONSIVE ================================ */
@media (max-width: 768px) {
    .footer {
        border-radius: 40px 40px 0 0;
    }

    .footer-logo img {
        width: 140px;
    }

    .social {
        margin-bottom: 10px;
    }
}


/* ===============================
   FLOATING WHATSAPP BUTTON
================================ */
.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #ffffff;

    padding: 14px 18px;
    border-radius: 50px;

    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;

    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
}

/* Icon */
.wa-float i {
    font-size: 1.4rem;
}

/* Hover */
.wa-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 50px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

/* Text hide on mobile */
@media (max-width: 576px) {
    .wa-text {
        display: none;
    }

    .wa-float {
        padding: 14px;
        border-radius: 50%;
    }
}

/* POP UP CONTACT */

.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #49a0c7;
    color: #fff;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    min-width: 260px;
    max-width: 350px;

    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.custom-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.toast-close {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}
