/* assets/css/style.css */

/* ========== RESET & VARIABLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #161a35;
    --secondary: #d5c2bb;
    --text-dark: #1e1e1e;
    --text-light: #6b6b6b;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 1300px;
    margin: 0 auto 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0b0e1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: #c7b2a8;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ========== NAVBAR ========== */
/* NAVBAR DEFAULT (TRANSPARENT) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: round;
    transition: all 0.4s ease;
    z-index: 1000;
}

/* Saat discroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 0px 0px #ffffff;
    padding: 0.7rem 0;
}

/* Container tetap */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    transition: 0.3s ease;
}

/* Warna logo saat scroll */
.navbar.scrolled .logo {
    color: var(--primary);
}

/* Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: rgb(255, 255, 255);
    transition: 0.3s ease;
    position: relative;
}

/* Warna link saat scroll */
.navbar.scrolled .nav-menu a {
    color: #161a35;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Underline animation */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

/* ========== HERO ========== */
.hero-landing {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Video Background */
.hero-landing__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.hero-landing__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Content */
.hero-landing__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.hero-landing__content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.hero-landing__content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Button */
.hero-landing__btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-landing__btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-landing__content h1 {
        font-size: 2.5rem;
    }

    .hero-landing__content p {
        font-size: 1.2rem;
    }

    .hero-landing__btn {
        padding: 10px 25px;
    }
}

/* ========== LAYANAN RINGKASAN ========== */
/* ======================
SECTION
====================== */

.layanan {
    background: rgba(213, 194, 187, 0.30);
    padding: 80px 0;
    text-align: center;
}

.layanan2 {
    background: linear-gradient(180deg,
            #ffffff 0%,
            rgba(213, 194, 187, 0.30) 100%);
    padding: 80px 0;
    text-align: center;
}

.backgroundd {
    background: linear-gradient(180deg,
            #ffffff 0%,
            rgba(213, 194, 187, 0.30) 100%);
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #161a35;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #555;
    margin-bottom: 50px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
}

.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

/* ======================
   GRID
====================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* ======================
   CARD
====================== */

.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* ======================
   SHAPE (PENGGANTI ICON)
====================== */

.service-shape {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(22, 26, 53, 0.08);
    color: #161a35;


    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;

    transition: 0.3s ease;
}

/* hover effect shape */
.service-card:hover .service-shape {
    background: #161a35;
    color: #ffffff;
    transform: translateY(-4px);
}

/* ======================
   TEXT
====================== */

.service-card h3 {
    color: #161a35;
    margin-bottom: 12px;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* ======================
   BUTTON
====================== */

.btn-wrapper {
    margin-top: 40px;
}

.btn-primary {
    background: #161a35;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0f1226;
}

/* ========== KEUNGGULAN ========== */
/* ============================= */

.hero-modern {
    padding: 130px 0;
    background: linear-gradient(25deg, #0f172a, #1e293b);
    color: white;
    position: relative;
    overflow: hidden;
}

/* efek glow background */
.hero-modern::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #d5c2bb, transparent);
    top: -150px;
    right: -150px;
    opacity: 0.6;
}

.hero-modern .btn-primary {
    background: #ffffff;
    color: #161a35;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-modern .btn-outline {
    border: 1px solid #ffffff;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s ease;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text p {
    font-size: 18px;
    color: #cbd5f5;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #161a35;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #6366f1;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    animation: float 6s ease-in-out infinite;
}

/* Sembunyikan di layar mobile */
@media (max-width: 700px) {
    .hero-image {
        display: none;
    }
}

/* Animasi */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* animasi floating */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.inoo-hero {
    position: relative;
    color: #ffffff;
    padding: 5px 0 0.01px;
    overflow: hidden;
}

/*        INO HERO SECTION       */
/* ============================= */

.ino-hero {
    position: relative;
    background: linear-gradient(330deg, #1e293b, #0f172a);
    color: #ffffff;
    padding: 140px 0 220px;
    overflow: hidden;
}


/* Container */
.ino-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 3;
}

/* Left Side */
.ino-hero .hero-left {
    flex: 1;
}

.ino-hero .hero-label {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ino-hero .hero-left h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.ino-hero .hero-description {
    font-size: 17px;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 30px;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
}

/* Buttons */
.ino-hero .hero-buttons {
    display: flex;
    gap: 16px;
}

.ino-hero .btn-primary {
    background: #ffffff;
    color: #161a35;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.ino-hero .btn-primary:hover {
    transform: translateY(-3px);
}

.ino-hero .btn-outline {
    border: 1px solid #ffffff;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s ease;
}

.ino-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Right Side Stats */
.ino-hero .hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ino-hero .hero-stats {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 16px;
    display: grid;
    gap: 25px;
    min-width: 260px;
}

.ino-hero .stat-item h3 {
    font-size: 26px;
    margin-bottom: 5px;
    font-weight: 700;
}

.ino-hero .stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* Wave */
.ino-hero .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.ino-hero .wave svg {
    width: 100%;
    height: 200px;
    display: block;
}

.ino-hero .wave-1 {
    z-index: 1;
}

.ino-hero .wave-2 {
    z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {

    .ino-hero .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .ino-hero .hero-left h1 {
        font-size: 32px;
    }

    .ino-hero .hero-description {
        margin: 0 auto 30px;
    }

    .ino-hero .hero-buttons {
        justify-content: center;
    }

    .ino-hero .hero-right {
        margin-top: 40px;
    }
}

/* ========== PORTOFOLIO PREVIEW ========== */
#detailModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 700px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.modal-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========== TESTIMONI ========== */
.testimonials-modern {
    padding: 120px 20px;
    background: #f8f9fb;
}

.testimonials-modern .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonials-modern .section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.quote-mark {
    font-size: 60px;
    color: rgba(0, 0, 0, 0.06);
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: serif;
}

.testimonial-text {
    position: relative;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    z-index: 1;
}

.testimonial-footer h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-footer span {
    font-size: 13px;
    color: #888;
}

/* ================= CTA SECTION ================= */

.cta-section {
    position: relative;
    padding: 100px 20px 180px;
    background: linear-gradient(135deg, #161a35, #d5c2bb);
    color: #ffffff;
    overflow: hidden;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-left p {
    max-width: 500px;
    opacity: 0.9;
}

.cta-right {
    flex: 1;
    text-align: right;
}

/* SVG harus dipaksa full */
.cta-wave svg {
    display: block;
    /* HILANGKAN gap inline */
    width: 100%;
    height: 120px;
    /* Atur tinggi sesuai kebutuhan */
}

/* Wave wrapper */
.cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.cta-trust {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.85;
}

.cta-trust span {
    display: block;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .cta-right {
        text-align: center;
    }
}

/* Waves */
.cta-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
}

.wave-back {
    z-index: 1;
}

.wave-front {
    z-index: 2;
}

/* ========== TENTANG KAMI ========== */

.about-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            rgba(213, 194, 187, 0.20) 100%);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-heading h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

.label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #161a35;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
}

/* ================= VISI MISI ================= */

/* ================= VM MODERN ================= */

.vm-modern {
    padding: 120px 20px;
    background: rgba(213, 194, 187, 0.20);
    backdrop-filter: blur(2px);
    position: relative;
    overflow: hidden;
}

/* subtle radial glow */
.vm-modern::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%;
}

.vm-header {
    text-align: center;
    margin-bottom: 70px;
}

.vm-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #161a35;
    font-weight: 600;
}

.vm-header h2 {
    margin-top: 15px;
    font-size: 2.3rem;
}

.vm-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.vm-modern-card {
    background: linear-gradient(145deg,
            rgba(22, 26, 53, 0.95) 0%,
            rgba(22, 26, 53, 0.85) 50%,
            rgba(22, 26, 53, 0.75) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s ease;
    box-shadow: 0 20px 60px rgba(22, 26, 53, 0.25);
}

.vm-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vm-icon i {
    font-size: 22px;
    color: #3b82f6;
}

.vm-modern-card h3 {
    color: #ffffff;
}

.vm-modern-card p,
.vm-modern-card li {
    color: rgba(255, 255, 255, 0.75);
}

.vm-modern-card ul {
    padding-left: 20px;
}

.accent-line {
    width: 50px;
    height: 3px;
    background: #3b82f6;
    margin-top: 30px;
    border-radius: 3px;
}

/* ================= VALUES ================= */

/* ================= VALUES MODERN ================= */

.values-modern {
    padding: 120px 20px;
    background: rgba(213, 194, 187, 0.20);
    backdrop-filter: blur(2px);
}

.values-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.values-intro h2 {
    font-size: 2.3rem;
    margin: 20px 0;
    line-height: 1.3;
}

.values-intro p {
    color: #555;
    line-height: 1.7;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.values-list::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e5e7eb;
}

.value-item {
    display: flex;
    gap: 25px;
    position: relative;
    padding-left: 10px;
    transition: 0.3s ease;
}

.value-item:hover {
    transform: translateX(8px);
}

.value-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    min-width: 40px;
}

.value-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .values-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-list::before {
        display: none;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .vm-wrapper {
        grid-template-columns: 1fr;
    }

    .vm-divider {
        display: none;
    }
}

/* ===== FADE IN BASE ===== */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(.22, .61, .36, 1);
}

/* saat muncul */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ========== LAYANAN DETAIL ========== */

.services-modern {
    padding: 120px 20px;
    background: #f4f6f9;
}

.services-modern .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Section Head ===== */

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.section-head p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* ===== Grid Layout ===== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* ===== Card ===== */

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ===== Icon ===== */

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #161a35, #8e88ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrap i {
    font-size: 22px;
    color: #fff;
}

/* ===== Title ===== */

.service-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #111;
}

/* ===== List ===== */

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2a357e;
}

/* =========================
   PRICING UMKM SECTION
========================= */

.pricing-umkm {
    padding: 120px 20px;
    background: #f5f7fa;
}

.pricing-umkm .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Head */

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    display: inline-block;
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #111;
}

.section-head p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Grid */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: -8px;
    margin-bottom: 15px;
    font-style: italic;
}

/* Card */

.pricing-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Highlight */

.highlight {
    border: 2px solid #2a357e;
}

.badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: #2a357e;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Price */

.price {
    margin: 20px 0 30px;
}

.price .start {
    display: block;
    font-size: 14px;
    color: #777;
}

.price strong {
    font-size: 26px;
    color: #111;
}

/* List */

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.pricing-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

/* Button */

.btn-pricing {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #161a35;
    color: #2a357e;
    transition: 0.3s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    background: #161a35;
    color: #fff;
}

.btn-pricing.primary {
    background: #161a35;
    color: #fff;
}

.btn-pricing.primary:hover {
    background: #584ff5;
}

/* Note */

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #777;
}

/* =========================
   SCROLL FADE ANIMATION
========================= */

.fade-service {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-service.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== PORTOFOLIO FILTER ========== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.portfolio-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 26, 53, 0.9);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    font-size: 1.2rem;
}

.portfolio-info .btn-detail {
    align-self: flex-start;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.portfolio-info .btn-detail:hover {
    background: #c7b2a8;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 28px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal-prev {
    left: -20px;
}

.modal-next {
    right: -20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

#detailModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 700px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.modal-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal */
#detailModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
}

/* ========== KONTAK ========== */
/* CONTACT SECTION */

.contact-section {
    padding: 100px 0;
    background: #f9fafc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

/* CONTACT INFO */

.contact-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-card i {
    font-size: 22px;
    color: var(--primary);
}

.contact-card h4 {
    margin-bottom: 5px;
}

/* WHATSAPP BUTTON */

.whatsapp-contact {
    display: inline-block;
    margin-top: 15px;
    background: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-contact:hover {
    background: #1ebe5d;
}

/* MAP */

.contact-map iframe {
    width: 100%;
    height: 330px;
    border-radius: 10px;
    border: none;
}

/* FORM */

.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.contact-btn:hover {
    opacity: 0.9;
}

/* fade in kontak */

/* CONTACT FADE */

.contact-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.contact-fade.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* RESPONSIVE */

@media(max-width:900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about p {
    margin: 1rem 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {

    .hero .container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* ===============================
   MOBILE MENU DEFAULT (TRANSPARENT)
================================= */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #161a35;
        opacity: 92%;
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        transition: 0.3s ease;
        gap: 1.5rem;
    }

    /* Saat menu aktif */
    .nav-menu.active {
        left: 0;
    }

    /* ===============================
   SAAT DISCROLL → ADA BACKGROUND
================================= */
    .navbar.scrolled .nav-menu {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .hamburger {
        display: block;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

body {
    margin: 0;
}

.hero-top {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.1) 0%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #5b4bdb;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
}

.section-divider {
    width: 900px;
    /* panjang garis */
    height: 4px;
    background-color: #ffffff;
    /* warna brand */
    margin: 0 auto 20px auto;
    /* tengah + jarak bawah */
    border-radius: 10px;
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    /* supaya tidak tabrakan dengan scroll-top */
    right: 28px;
    width: 50px;
    height: 50px;
    background: #d5c2bb;
    color: #161a35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 20px rgba(255, 255, 255, 0.2),
        0 0 0 3px rgba(255, 255, 255, 0.25);
    /* outline effect */
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #161a35;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;

    box-shadow:
        0 8px 20px rgba(255, 255, 255, 0.2),
        0 0 0 3px rgba(255, 255, 255, 0.25);
    /* outline effect */

    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    transform: translateY(-3px);
    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(255, 255, 255, 0.25),
        0 0 0 6px rgba(255, 255, 255, 0.25);
}

#scrollTopBtn:hover {
    transform: translateY(-3px);
    background: #d5c2bb;
}

html {
    scroll-behavior: smooth;
}

/* harga */

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.pricing-section {
    padding: 120px 10%;
    background: linear-gradient(to bottom, #f8f9fc, #ffffff);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 24px;
    width: 360px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.price {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.price strong {
    display: block;
    font-size: 30px;
    color: #111;
    margin-top: 5px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.pricing-card ul li {
    margin-bottom: 14px;
    padding-left: 26px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #161a35;
    font-weight: bold;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #111;
    text-decoration: none;
    color: #111;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #111;
    color: #fff;
}

.badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #4f46e5;
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.hidden {
    display: none !important;
}

.pricing-filter {
    display: inline-flex;
    background: #ffffff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    gap: 5px;
}

.pricing-filter button {
    padding: 12px 28px;
    border: none;
    background: transparent;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-filter button:hover {
    color: #111;
}

.pricing-filter button.active {
    background: #161a35;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.pricing-filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

/* ===== SERVICE SECTION ===== */

.service-section {
    padding: 100px 20px;
    background: #f8fafc;
    text-align: center;
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* ===== GRID ===== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* ===== CARD ===== */

.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.4s ease;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== ICON ===== */

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #161a35, #8e88ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 22px;
}

/* ===== HOVER EFFECT ===== */

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}