/* === GLOBAL === */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    color: #333;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: bold;
}

/* === LEADPAGE HEADER === */
.header-leadpage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 9999;
    transition: 0.4s ease;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}

.header-leadpage.scrolled {
    background: #ffffff !important;
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-leadpage.menu-open {
    background: #101820 !important;
    box-shadow: none;
}

.header-inner-lp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    transition: 0.4s;
}

.header-leadpage.scrolled .lp-logo {
    color: #000;
}

.header-leadpage.menu-open .lp-logo {
    color: #fff;
}
/* ======================================================
   DESKTOP NAVIGATION (Final Clean Version)
====================================================== */

.lp-nav {
    display: flex;
    align-items: center;
}

.lp-nav>ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.lp-nav>ul>li {
    position: relative;
}

.lp-nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 6px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    transition: 0.25s;
}

.header-leadpage.scrolled .lp-nav a {
    color: #333 !important;
}

.lp-nav a:hover {
    color: #ff7b00;
}

/* Dropdown indicator */
.lp-nav li.has-submenu>a::after {
    content: " ▼";
    font-size: 10px;
    opacity: 0.75;
    margin-left: 4px;
}

/* First-level dropdown */
.lp-nav li ul {
    position: absolute;
    top: 36px;
    left: 0;
    background: rgba(0, 0, 0, 0.92);
    min-width: 190px;
    padding: 8px 0;
    border-radius: 6px;
    display: none;
    z-index: 50;
}

.lp-nav li:hover>ul {
    display: block;
}

/* Dropdown items */
.lp-nav li ul li a {
    display: block;
    padding: 10px 14px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.lp-nav li ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff7b00;
}

/* Second-level submenu */
.lp-nav li ul li ul {
    top: 0;
    left: 190px;
}


/* ======================================================
   MOBILE MENU (Clean Version)
====================================================== */

.lp-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #101820;
    z-index: 9998;
    padding-top: 95px;
    overflow-y: auto;
}

.header-leadpage.menu-open .lp-mobile-menu {
    display: block;
}

.lp-mobile-menu ul {
    list-style: none;
    padding-left: 20px;
}

.lp-mobile-menu a {
    display: block;
    padding: 12px 10px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lp-mobile-menu a:hover {
    color: #ff7b00;
}

/* Indented submenu */
.lp-mobile-menu ul ul {
    padding-left: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.25);
    margin-left: 10px;
}

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

.lp-toggle {
    display: none;
    width: 30px;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.lp-toggle span {
    height: 3px;
    background: #fff;
    width: 100%;
    transition: 0.3s;
}

.header-leadpage.scrolled .lp-toggle span {
    background: #000;
}

/* Mobile ON */
.header-leadpage.menu-open .lp-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header-leadpage.menu-open .lp-toggle span:nth-child(2) {
    opacity: 0;
}

.header-leadpage.menu-open .lp-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


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

@media (max-width: 992px) {

    .lp-nav,
    .lp-social {
        display: none;
    }

    .lp-toggle {
        display: flex;
    }
}

/* === HERO === */
.hero {
    background: url('https://appliedga.com/wp-content/uploads/2016/06/get-started-placeholder-1920x800.jpg') center/cover no-repeat;
    padding: 160px 0 140px;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-primary {
    background: #fff;
    color: #ff4f8b;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* === SERVICES === */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.service-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.testimonial-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ff4f8b;
}

/* === CTA === */
.cta-24jam {
    padding: 80px 0;
    background: #e9f0ff;
    text-align: center;
}

.cta-24jam h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.cta-24jam p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #333;
}

.cta-24jam .cta-btn {
    background: #25D366;
    padding: 15px 30px;
    border-radius: 35px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 1.1rem;
}

/* === CONTACT === */
#contact {
    background: #101820;
    color: #fff;
    padding: 60px 0;
}

#contact .info-text {
    line-height: 1.7;
    font-size: 1rem;
}

/* === FOOTER BAR === */
footer {
    background: #0c1218;
    padding: 20px 0;
    text-align: center;
    color: #ccc;
    font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {

    .lp-nav,
    .lp-social {
        display: none;
    }

    .lp-toggle {
        display: block;
    }

    .header-inner-lp {
        align-items: center;
    }

    .hero {
        padding: 140px 0 100px;
    }
}

@media (max-width: 600px) {
    .cta-24jam h2 {
        font-size: 2rem;
    }

    .cta-24jam p {
        font-size: 1rem;
    }
}