/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

/* =========================
   RESET & BASE STYLES
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #4a2c6d 100%);
    color: #ffffff;
    min-height: 100vh;
}

/* =========================
   NAVBAR STYLES
   ========================= */
.navbar {
    background: rgba(26, 11, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-scrolled {
    background: rgba(26, 11, 46, 0.95);
    padding: 0.5rem 0;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.8rem 1.5rem !important;
    margin: 0 0.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, #b857d4 0%, #8b4db8 100%);
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(184, 87, 212, 0.4);
}

/* =========================
    ABOUT SECTION
   ========================= */
.about-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Company Card */
.company-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
    position: relative;
    z-index: 2;
}

.company-name {
    font-size: 3rem;
    font-weight: 800;
    color: #1a0b2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.company-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2d1b4e;
    line-height: 1.8;
    margin: 0;
}

.company-logo {
    max-width: 350px;
    height: auto;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* =========================
    TEAM SECTION
   ========================= */
.team-section {
    position: relative;
    z-index: 2;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

/* Team Card */
.team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: fadeInUp 0.8s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(184, 87, 212, 0.4);
}

/* Team Photo */
.team-photo {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

/* Team Info */
.team-info {
    padding: 1.2rem 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 1);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a0b2e;
    margin-bottom: 0.3rem;
}

.team-position {
    font-size: 0.95rem;
    /* ✅ UBAH DARI 1rem KE 0.95rem */
    font-weight: 400;
    color: #4a2c6d;
    margin: 0;
}

/* =========================
    FLOATING PARTICLES
   ========================= */
.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(184, 87, 212, 0.6);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(184, 87, 212, 0.8);
    z-index: 1;
}

.particle-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.particle-2 {
    top: 70%;
    left: 90%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
}

.particle-3 {
    top: 40%;
    left: 95%;
    width: 8px;
    height: 8px;
    animation-delay: 4s;
}

.particle-4 {
    top: 85%;
    left: 10%;
    animation-delay: 3s;
}

/* =========================
    FOOTER SECTION
   ========================= */
.footer {
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(26, 11, 46, 0.95);
    color: #ffffff;
    text-align: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
}

.footer .container {
    position: relative;
    z-index: 1001;
}

.copyright {
    font-size: 1rem;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

/* =========================
    ANIMATIONS
   ========================= */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-10px) translateX(-10px);
    }

    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

/* =========================
    RESPONSIVE DESIGN
   ========================= */
@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(26, 11, 46, 0.95);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0.3rem 0;
    }

    .company-name {
        font-size: 2.5rem;
    }

    .company-description {
        font-size: 1rem;
    }

    .company-logo {
        max-width: 250px;
        margin-top: 2rem;
    }

    .team-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 100px;
    }

    .company-card {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .company-name {
        font-size: 2rem;
        text-align: center;
    }

    .company-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .company-logo {
        max-width: 200px;
        margin-top: 1.5rem;
    }

    .team-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .team-photo {
        min-height: 220px;
    }

    .footer {
        padding: 1rem 0.5rem;
    }

    .copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .company-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .company-name {
        font-size: 1.8rem;
    }

    .company-description {
        font-size: 0.9rem;
    }

    .company-logo {
        max-width: 180px;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-name {
        font-size: 1.3rem;
    }

    .team-position {
        font-size: 0.9rem;
    }

    .team-photo {
        min-height: 100px;
    }

    .logo {
        height: 40px;
    }
}