/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-blue: #1e8fff;
    --dark-navy: #07121d;
    --card-bg: #0D1B2E;
    --text-light: #cfd8e3;
    --footer-bg: #020A14;
    --navbar-bg: #192229;
    --text-grey: #A4A9AC;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #020A14;
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ===== LOADER ===== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(30, 143, 255, 0.2);
    border-top-color: var(--main-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

.scale-in {
    animation: scaleIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--navbar-bg);
    padding: 0;
    border-radius: 50px;
    height: 80px;
    margin-top: 20px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1300px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 100%;
    height: 100%;
    padding: 0 1rem;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    margin: 0 0.7rem;
    padding: 0.5rem 0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--main-blue);
}

.navbar-nav .nav-link.active {
    color: var(--main-blue);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--main-blue);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(207, 216, 227, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==== BUTTON MEMBER AREA DENGAN EFEK SLIDE-UP ==== */
.btn-member-area {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2ea3ff, #1b89e7);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Teks utama di dalam button */
.btn-member-area span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay teks hover (slide up) */
.btn-member-area::after {
    content: attr(data-hover-text);
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #192229, #192229);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--main-blue);
}

/* Efek hover: overlay naik, teks utama turun */
.btn-member-area:hover::after {
    bottom: 0;
}

.btn-member-area:hover span {
    transform: translateY(-150%);
}

/* Tombol naik sedikit saat hover */
.btn-member-area:hover {
    transform: translateY(-2px);
}


/* ==== BUTTON GET STARTED DENGAN EFEK SLIDE-UP ==== */
.btn-get-started {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2ea3ff, #1b89e7);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Span text utama */
.btn-get-started span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay text yang muncul saat hover */
.btn-get-started::after {
    content: attr(data-hover-text);
    position: absolute;
    bottom: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: #07121D;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--main-blue);
}

/* Hover: overlay naik */
.btn-get-started:hover::after {
    bottom: 0;
}

/* Hover: teks utama naik keluar */
.btn-get-started:hover span {
    transform: translateY(-150%);
}

/* Hover: tombol naik sedikit */
.btn-get-started:hover {
    transform: translateY(-2px);
}


/* ==== BUTTON OUR PORTOFOLIO DENGAN EFEK SLIDE-UP ==== */
.btn-our-portofolio {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: white;
    border: 1px solid var(--main-blue);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Teks utama */
.btn-our-portofolio span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay warna biru + teks hover */
.btn-our-portofolio::after {
    content: attr(data-hover-text);
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-blue);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: fill biru naik */
.btn-our-portofolio:hover::after {
    bottom: 0;
}

/* Hover: teks utama naik keluar */
.btn-our-portofolio:hover span {
    transform: translateY(-150%);
}

/* Hover: tombol naik sedikit */
.btn-our-portofolio:hover {
    transform: translateY(-2px);
    color: white;
}


/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar {
        border-radius: 30px;
        height: auto;
        padding: 1rem 0;
    }

    .navbar .container {
        padding: 0 1.5rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
    }

    .navbar-nav {
        margin: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 0;
        margin: 0;
        border-bottom: 1px solid rgba(207, 216, 227, 0.1);
    }

    .btn-member-area {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--dark-navy);
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../img/bg.png');
}

.hero-pr {
    padding-right: 5rem !important;
}

.footer-pr {
    padding-right: 10rem !important;
}

.hero-hr {
    max-width: 80% !important;
}

.hero-section .container {
    padding-top: 140px;
    padding-bottom: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h6 {
    color: var(--main-blue);
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-grey);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 90%;
    max-width: 600px;
    animation: floatRotate 6s ease-in-out infinite;
}

@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}


.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: color-mix(in srgb, var(--card-bg), transparent 50%);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border:1px solid rgba(30, 143, 255, 0.1);
    animation: float 3s ease-in-out infinite;
    
}

.experience-badge h3 {
    color: var(--dark-navy);
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.experience-badge p {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-sub-text {
    color: #8899AA;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--dark-navy);
}

.dark-image {
    filter: brightness(0.8);
    border-radius: 15px;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 143, 255, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--main-blue);
}

.feature-card i {
    font-size: 2rem;
    color: var(--main-blue);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================
   TABLET VIEW
   ========================= */
@media (max-width: 1199px) and (min-width: 768px) {

  /* GENERAL CONTAINER FEEL */
  .hero,
  .about {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* HERO SECTION */
  .hero .row {
    align-items: center;
  }

  .hero .hero-text {
    padding-right: 1.5rem;
  }

  .hero .hero-image img {
    max-width: 100%;
    height: auto;
  }

  /* ABOUT SECTION */
  .about .row {
    align-items: center;
  }

  .about .about-image {
    padding-right: 1.5rem;
  }

  .about .about-text {
    padding-left: 1.5rem;
  }
}

/* =========================
   TABLET RESPONSIVE
   ========================= */
@media (max-width: 991px) {

  /* HERO */
  .hero-section .hero-pr {
    padding-right: 0 !important;
  }

  .hero-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* ABOUT */
  .about-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .about-section .row > div:first-child {
    padding-right: 0 !important;
  }
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 767px) {

  /* HERO */
  .hero-section {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-section .row {
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-content .d-flex {
    flex-direction: column;
  }

  .hero-content .d-flex a {
    width: 100%;
    justify-content: center;
  }

  /* ABOUT */
  .about-section {
    text-align: center;
    padding: 40px 0;
}

  .about-section img {
    display: none;
  }

  .about-section .row > div:first-child {
    padding: 0 !important;
  }
}


/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--card-bg);
}

.testimonial-card {
    background: var(--dark-navy);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 143, 255, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;

    background: linear-gradient(135deg, var(--main-blue), #5DADE2);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.testimonial-avatar .avatar-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;

    display: block;
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--main-blue);
    font-size: 0.9rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: var(--dark-navy);
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 143, 255, 0.1);
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--main-blue);
}

.service-card i {
    font-size: 3rem;
    color: var(--main-blue);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 100px 0;
    background: var(--card-bg);
}

.timeline-item {
    display: flex;
    align-items: center; /* icon dan content sejajar vertical middle */
    margin-bottom: 3rem;
    gap: 2rem;
}

/* =============================
   DEFAULT: ICON KIRI, CONTENT KANAN
   ============================= */
.timeline-item .timeline-icon {
    order: 1;
}

.timeline-item .timeline-content {
    order: 2;
}

/* =============================
   ITEM GENAP: ICON KANAN, CONTENT KIRI
   ============================= */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* STYLING ICON */
.timeline-icon {
    width: 70px;
    height: 70px;
    background: var(--main-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 1.8rem;
    color: white;
}

/* STYLING CARD */
.timeline-content {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 15px;
    flex-grow: 1;
}

.timeline-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}


/* ===== CTA SECTION ===== */
.cta-section {
    /* background: var(--dark-navy); */
    background: var(--card-bg);
}

.cta-card {
    /* background: var(--card-bg); */
    background: var(--dark-navy);
    padding: 3rem;
    border-radius: 20px;
}

.cta-image img {
    max-width: 75% !important;
    border-radius: 15px;
    display: block;
    margin: 0 auto; /* agar center */
}


/* ==== BUTTON WHATSAPP DENGAN EFEK SLIDE-UP ==== */
.btn-whatsapp {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2ea3ff, #1b89e7);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    height: 48px; /* agar ukuran stabil */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Isi utama (icon + text) */
.btn-whatsapp .content {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay */
.btn-whatsapp .overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(135deg, #192229, #192229);
    border: 1px solid var(--main-blue);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    color: white;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: overlay naik */
.btn-whatsapp:hover .overlay {
    bottom: 0;
}

/* Hover: content naik */
.btn-whatsapp:hover .content {
    transform: translateY(-150%);
}

/* Hover: tombol naik sedikit */
.btn-whatsapp:hover {
    transform: translateY(-2px);
}


/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: 100px 0;
    background: var(--card-bg);
}

.filter-buttons {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(30, 143, 255, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--main-blue);
    color: white;
    border-color: var(--main-blue);
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 300px;
    background: var(--dark-navy);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 18, 29, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-category {
    color: var(--main-blue);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    background: var(--main-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.portfolio-icon i {
    color: white;
    font-size: 1.5rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--dark-navy);
}

.pricing-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(30, 143, 255, 0.1);
    transition: all 0.3s;
    height: 100%;
}


.pricing-card.featured {
    border: 2px solid var(--main-blue);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    color: var(--main-blue);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(30, 143, 255, 0.1);
}

.pricing-features li i {
    color: var(--main-blue);
    margin-right: 0.5rem;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    border: 1px solid var(--main-blue);
    background: transparent;
    color: var(--main-blue);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-pricing:hover,
.pricing-card.featured .btn-pricing {
    background: var(--main-blue);
    color: white;
}

/* ==== BUTTON PRICING DENGAN EFEK SLIDE-UP ==== */
.btn-pricing2 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2ea3ff, #1b89e7);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
}

/* Span text utama */
.btn-pricing2 span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay text yang muncul saat hover */
.btn-pricing2::after {
    content: attr(data-hover-text);
    position: absolute;
    bottom: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: #07121D;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--main-blue);
}

/* Hover: overlay naik */
.btn-pricing2:hover::after {
    bottom: 0;
}

/* Hover: teks utama naik keluar */
.btn-pricing2:hover span {
    transform: translateY(-150%);
}

/* Hover: tombol naik sedikit */
.btn-pricing2:hover {
    transform: translateY(-2px);
}


/* ==== BUTTON OUR PORTOFOLIO DENGAN EFEK SLIDE-UP ==== */
.btn-pricing3 {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: white;
    border: 1px solid var(--main-blue);
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width:100%;
}

/* Teks utama */
.btn-pricing3 span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay warna biru + teks hover */
.btn-pricing3::after {
    content: attr(data-hover-text);
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-blue);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: fill biru naik */
.btn-pricing3:hover::after {
    bottom: 0;
}

/* Hover: teks utama naik keluar */
.btn-pricing3:hover span {
    transform: translateY(-150%);
}

/* Hover: tombol naik sedikit */
.btn-pricing3:hover {
    transform: translateY(-2px);
    color: white;
}

    /* ===== FAQ SECTION ===== */
    .faq-section {
        padding: 100px 0;
        background: var(--card-bg);
    }

    /* FAQ Text Styling */
    .faq-text-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 615px;
        overflow: hidden;
    }

    .faq-text {
        font-size: 285px;
        font-weight: 900;
        color: transparent;
        -webkit-text-stroke: 4px #1e8fff1a;
        line-height: 0.9;
        font-family: 'Arial Black', sans-serif;
        text-transform: uppercase;
        position: relative;
        transform: rotate(270deg);
        white-space: nowrap;
    }


    .accordion-item:first-of-type,
    .accordion-item:last-of-type {
        border-radius: 10px !important;
    }

    .accordion-item {
        background: var(--dark-navy);
        border: 1px solid rgba(30, 143, 255, 0.1);
        margin-bottom: 1rem;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    /* .accordion-item:hover {
        border-color: rgba(30, 143, 255, 0.3);
    } */

    .accordion-button {
        background: var(--dark-navy);
        color: white;
        font-weight: 600;
        padding: 1.5rem;
        border: none;
        transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed) {
        background: #07121D;
        color: var(--main-blue);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: var(--main-blue);
    }

    .accordion-button::after {
        filter: brightness(0) invert(1);
        transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed)::after {
        filter: brightness(0) saturate(100%) invert(56%) sepia(89%) saturate(2604%) hue-rotate(191deg) brightness(103%) contrast(101%);
    }

    .accordion-body {
        background: var(--dark-navy);
        color: var(--text-light);
        padding: 1.5rem;
        line-height: 1.8;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
    }

    .text-light {
        color: var(--text-light) !important;
    }

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-on-scroll {
        animation: fadeInUp 0.6s ease forwards;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .faq-text {
            font-size: 100px;
            letter-spacing: -5px;
        }
        
        .faq-text-container {
            min-height: 400px;
        }
    }

    @media (max-width: 768px) {
        .faq-text {
           display: none;
        }
        
        .faq-text-container {
            display: none;
        }
    }

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--dark-navy);
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 143, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--main-blue);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--main-blue);
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
}

.map-container {
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 143, 255, 0.1);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        border-radius: 10px;    
    }
}

.form-control,
.form-select {
    background: var(--dark-navy);
    border: 1px solid rgba(30, 143, 255, 0.2);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.form-control:focus,
.form-select:focus {
    background: var(--dark-navy);
    border-color: var(--main-blue);
    color: white;
    box-shadow: none;
}

.form-control::placeholder {
    color: #8899AA;
}

textarea.form-control {
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--main-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--footer-bg);
    padding: 80px 0 0;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 14px !important;
}

.social-links {
    display: flex;
    gap: 8px; /* jarak antar icon */
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s;
}

/* Jika pakai icon font (Font Awesome, Bootstrap Icons, dll) */
.social-links a i {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1;
}

/* Jika pakai SVG */
.social-links a svg {
    width: 16px;
    height: 16px;
}

/* Jika pakai img */
.social-links a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.social-links a:hover {
    background: var(--main-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-text {
    font-size: 14px !important;
}

.footer-small {
    font-size: 13px !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--main-blue);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(30, 143, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 30px);
        margin-top: 15px;
    }

    .hero-section .container {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .filter-btn {
        margin: 0.5rem;
    }
}


