@import url('https://fonts.cdnfonts.com/css/gilroy-bold');

:root {
    --brand-orange: #FC5F01;
    --dark-blue-bg: #0E1227;
    --text-light: #FFFFFF;
    --text-muted-light: rgba(255, 255, 255, 0.7);
    --fixed-header-height: 114px;
    /* 54px status bar + 60px navbar */
}

.bounce {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


body {
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Gilroy-Medium';
}

.mobile-container {
    background-color: var(--dark-blue-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* --- FIXED HEADER (STATUS BAR + NAVBAR) --- */
.app-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    color: var(--text-light);
    transition: background-color 0.3s ease;
}

.app-header-fixed.scrolled {
    background-color: var(--dark-blue-bg);
}

.ios-status-bar-modern {
    height: 54px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    box-sizing: border-box;
}

.ios-status-bar-modern .time {
    padding-top: 12px;
}

.ios-status-bar-modern .time .bi-broadcast-pin {
    font-size: 0.8em;
    margin-left: 2px;
    vertical-align: middle;
}

.ios-status-bar-modern .dynamic-island {
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background-color: #000;
    border-radius: 20px;
}

.ios-status-bar-modern .status-icons {
    display: flex;
    align-items: center;
    padding-top: 12px;
}

.ios-status-bar-modern .status-icons i {
    margin-left: 6px;
    font-size: 1rem;
}

.ios-status-bar-modern .bi-battery-half {
    font-size: 1.2rem;
}

.app-navbar {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.app-navbar .logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.app-navbar .logo img {
    width: 150px;
}

.app-navbar .hamburger-menu {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
}

/* --- SCROLLABLE CONTENT --- */
.app-content-scrollable {
    flex-grow: 1;
    overflow-y: auto;
    position: relative;
    padding-top: var(--fixed-header-height);
    /* Make space for fixed header */
    color: var(--text-light);
}

.app-content-scrollable::-webkit-scrollbar {
    display: none;
}

.app-content-scrollable {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

section {
    padding: 40px 20px;
    box-sizing: border-box;
    min-height: 300px;
}

.section-title-main {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.section-subtitle-main {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5em;
}

.highlight-orange {
    background-color: var(--text-light);
    color: var(--brand-orange);
    padding: 2px 5px;
    font-family: 'Gilroy-Bold';
}

/* --- HERO SECTION (Section 1) --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    position: relative;
    background-image: url('../images/hero-1.png');
    background-size: cover;
    background-position: center;
    margin-top: calc(-1 * var(--fixed-header-height));
    padding-top: calc(var(--fixed-header-height) + 40px);
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(106, 106, 106, 0.1);
    filter: blur(1px);
    z-index: 0;
}

.hero-section .hero-content {
    margin-bottom: 3em;
}


.hero-section .hero-content,
.hero-section .scroll-indicator {
    position: relative;
    z-index: 1;
}

.hero-section .hero-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.hero-section .hero-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3em;
    opacity: 0.85;
}

.hero-section .hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 0.8em;
}

.scroll-indicator {
    align-self: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-muted-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--text-muted-light);
}

/* --- PROBLEM SECTION (Section 2) --- */
.problem-section {
    background-color: var(--dark-blue-bg);
    isolation: isolate;
}

.problem-section::before {
    content: '';
}

.problem-cards-container {
    margin-top: 40px;
}

.problem-card {
    background-image: url('../images/problem-card.png');
    background-size: cover;
    background-position: center;
    padding: 20px 15px;
    margin-bottom: 20px;
    min-height: 120px;
    display: flex;
    align-items: flex-end;
}

.problem-card p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.problem-section .conclusion-title {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 40px;
}

/* --- SOLUTION PARTNER SECTION (Section 3) --- */
.solution-partner-section {
    background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)), url('../images/section-3.png') center/cover no-repeat;
}

.solution-partner-section .content {
    position: relative;
    z-index: 2;
}

.solution-partner-section .section-title-main,
.solution-partner-section .sub-section-title {
    font-size: 2.3rem;
}

/* Swiper Styles for Feature Cards */
.feature-cards-swiper {
    width: calc(100% + 25px);
    box-sizing: border-box;
    margin-left: 0px;
    margin-right: 0px;
}

.feature-cards-swiper .swiper-slide {
    width: 260px !important;
    min-height: 260px;
    background: url('../images/box-overlay.png');
    color: #0F1328;
    padding: 20px;
    position: relative;
    box-sizing: border-box;
}

.feature-cards-swiper .swiper-slide h4 {
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-cards-swiper .swiper-slide p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-cards-swiper .swiper-slide .card-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 16px;
    font-weight: bold;
}

.swiper-navigation-custom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 30px 0;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 30px;
    height: 30px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 8px;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.swiper-button-prev-custom::after,
.swiper-button-next-custom::after {
    display: none;
}

.solution-partner-section .sub-section-title {
    margin-top: 40px;
    margin-bottom: 10px;
}

.benefits-list {
    display: flex;
    gap: 5px;
    margin: 30px 0;
}

.benefits-list .benefit-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: center;
    width: 33%;
}

.benefits-list .benefit-item i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.benefits-list .benefit-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.3;
}

.solution-partner-section .conclusion-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.3;
}

/* --- PACKAGES SECTION (Section 4) --- */
.packages-section {
    background-color: var(--dark-blue-bg);
}

.packages-section .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    padding: 20px 0;
}

.packages-section .accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.packages-section .accordion-header {
    margin-bottom: 0;
}

.packages-section .accordion-button {
    background-color: transparent;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: normal;
    padding: 15px 0;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: baseline;
}

.packages-section .accordion-button:not(.collapsed) {
    color: var(--brand-orange);
    background-color: transparent;
}

.packages-section .accordion-button::after {
    content: '';
    background: none;
}

.packages-section .package-number-accordion {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    margin-right: 20px;
}

.packages-section .package-title-accordion {
    font-size: 1.4rem;
    font-weight: bold;
}

.packages-section .accordion-body {
    padding: 10px 0 20px 0;
    margin-left: 30px;
    color: var(--text-muted-light);
}

.packages-section .accordion-body img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.packages-section .accordion-body .package-description {
    font-size: 0.9rem;
    line-height: 1.6;
}


/* --- CONSULTATION SECTION (Section 5) --- */
.consultation-section {
    background-color: var(--dark-blue-bg);
    background: linear-gradient(rgba(0, 0, 0, 0.69), rgba(0, 0, 0, 0.69)), url('../images/footer.png') center/cover no-repeat;
    background-size: cover;
    background-position: bottom;
    min-height: 1100px;
    position: relative;
}

.consult-benefit-container {
    margin-top: 30px;
}

.consult-benefit-item {
    background-color: rgba(2, 28, 76, 0.75);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.consult-benefit-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #fff;
}

.consult-benefit-item p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.btn-consult {
    display: block;
    width: fit-content;
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 25px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 300;
    text-decoration: none;
    margin: 35px 0;
    transition: background-color 0.3s, color 0.3s;
}

.btn-consult:hover {
    background-color: var(--text-light);
    color: var(--dark-blue-bg);
}

/* --- FOOTER CTA SECTION (Section 6: "Amplify Your Voice") --- */
.footer-cta-section {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-cta-section .quote {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
}

.footer-cta-section .sub-quote {
    font-size: 0.95rem;
    opacity: 0.8;
}


/* --- MENU OVERLAY --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: transform 0.4s ease-in-out;
    transform: translateY(-100%);
    z-index: 2000;
}

.menu-overlay.active {
    transform: translateY(0);
}

.menu-overlay a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    margin: 15px 0;
}

.menu-overlay .close-menu {
    position: absolute;
    top: calc(54px + 10px);
    right: 25px;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: var(--text-light);
}

@media only screen and (min-width: 500px) {
    .mobile-container {
        background-color: var(--dark-blue-bg);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
        max-width: 500px;
    }

    .app-header-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        color: var(--text-light);
        transition: background-color 0.3s ease;
        max-width: 500px;
        margin: 0 auto;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: auto;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.97);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
        transition: transform 0.4s ease-in-out;
        transform: translateY(-100%);
        z-index: 2000;
        max-width: 500px;
    }
}