/* =============================================
   WHENRAK - Style Principal
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

i {
    margin-left: 8px;
}

/* =============================================
   Language Switcher
   ============================================= */
.language-switcher {
    position: fixed;
    top: 10px;
    right: 80px;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-switcher a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: #FF6A00;
    font-weight: 600;
}

/* =============================================
   Sections Animation
   ============================================= */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    margin-top: -50px;
    margin-bottom: 40px;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Header & Logo
   ============================================= */
.logo-header {
    position: fixed;
    top: 55px;
    left: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.logo-header img {
    max-width: 60px;
}

.logo-header h5 {
    margin-top: 5px;
    font-size: 14px;
}

/* =============================================
   Navigation
   ============================================= */
.hd {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 50px;
    left: 30%;
    width: 100%;
    z-index: 1001;
}

.header {
    list-style: none;
    display: flex;
    text-align: center;
    margin: 0 1rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    background: rgba(244, 194, 13, 0.95);
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav ul li a {
    text-decoration: none;
    color: #1D1D1B;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #FF6A00;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    background-image: url("assets/hero.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    margin-top: 100px;
    padding-bottom: 200px;
}

.hero-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    max-width: 300px;
    margin-left: 30px;
}

.hero-text h1 {
    font-size: 30px;
    font-weight: bolder;
}

.hero-text p {
    font-size: 20px;
    color: #767676;
}

.phone {
    position: absolute;
    top: 10px;
    right: 0;
    width: 400px;
}

/* =============================================
   CTA Buttons
   ============================================= */
.cta-button {
    position: absolute;
    bottom: -30px;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #FF6A00;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 2px 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button1 {
    position: fixed;
    bottom: 160px;
    left: 22%;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #FF6A00;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: larger;
    box-shadow: 2px 6px 15px rgba(0, 0, 0, 0.25);
    z-index: 999;
}

.cta-button2 {
    position: absolute;
    bottom: 205px;
    left: 22%;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #FF6A00;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: larger;
    box-shadow: 2px 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.cta-button2:hover {
    transform: translateY(-3px);
}

.cta-button3 {
    position: absolute;
    bottom: 70px;
    left: 22%;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #FF6A00;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: larger;
    box-shadow: 2px 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.cta-button3:hover {
    transform: translateY(-3px);
}

/* =============================================
   How It Works Section
   ============================================= */
.how-it-works {
    background-color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 200px;
    z-index: 1000;
    margin-top: 30px;
    text-align: left;
    gap: 15px;
}

.step h3 {
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 700;
}

.step p {
    color: #555;
    font-size: 14px;
}

.step-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    background-image: url("assets/iconbg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
}

.step-img-1 {
    margin-left: 0px;
    margin-top: 0px;
    z-index: 999;
}

.step-img-2 {
    width: 100px;
    margin-left: 0px;
    margin-top: 0px;
    z-index: 1000;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.row h6 {
    color: #f4c20d;
    font-size: 16px;
    text-transform: uppercase;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

/* =============================================
   Transport Section
   ============================================= */
.transport {
    text-align: center;
    position: relative;
}

.transport-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

.column1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    max-width: 750px;
}

.row1 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 115px;
    padding-left: 35px;
    font-weight: 800;
}

.transport-images img {
    max-width: 750px;
    margin: 0.5rem;
}

.transport-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    color: #f4c20d;
    font-weight: bold;
    max-width: 250px;
    gap: 30px;
}

/* =============================================
   Advantages Section
   ============================================= */
.advantages {
    background-image: url("assets/bgaventage.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 380px;
    color: #fff;
    padding: 2rem 1rem;
}

.advantages-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.advantage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #fff;
    border-radius: 5px;
    gap: 30px;
}

/* =============================================
   Screenshots Section
   ============================================= */
.screenshot {
    color: #fff;
    text-align: center;
}

.screenshot-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.screenshots {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 250px;
    background-color: #fff;
    border-radius: 20px;
}

/* =============================================
   Download Section
   ============================================= */
.download {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.download-options {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 150px;
    margin-top: 50px;
    gap: 230px;
}

.download-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    gap: 300px;
}

.option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.optionqr {
    margin-left: -1%;
    margin-top: -190%;
    max-width: 150px;
}

/* =============================================
   Expert/Drivers Section
   ============================================= */
.expert {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #000;
    padding: 2rem 1rem;
    margin-top: -60px;
    width: 100%;
    background: url('assets/side1.svg') left top no-repeat,
                url('assets/side2.svg') right top no-repeat;
    background-size: contain;
}

.expert-profiles {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.expert img {
    max-width: 300px;
}

.expert .socials a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: #fff;
}

.card {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    max-width: 400px;
    border: 1px solid #767676;
    border-radius: 10px;
}

.card ul {
    max-width: 350px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.card ul li {
    font-size: 14px;
    color: #555555;
    margin-left: 50px;
}

.experts {
    text-align: center;
}

.phoneic {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.phoneic img {
    max-width: 50px;
    margin-left: 30px;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background-color: #1D1D1B;
    color: #fff;
    padding: 2rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -47px;
    gap: 30px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    width: 90%;
    padding-bottom: 30px;
    padding-top: 20px;
}

.footer .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer .logo img {
    width: 50px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #d0d0d0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #f4c20d;
}

.footer-links-mobile {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.footer-links-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-mobile ul li {
    margin: 0 1rem;
}

.footer-links-mobile ul li a {
    text-decoration: none;
    color: #d0d0d0;
}

.address-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.address {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.address img {
    width: 20px;
}

.address a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address a:hover {
    color: #f4c20d;
}

.address address {
    font-style: normal;
    color: #fff;
}

/* =============================================
   Fullscreen Icon
   ============================================= */
.fullscreen-icon {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #FF6A00;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fullscreen-icon:hover {
    transform: scale(1.1);
}

/* =============================================
   Scroll to Top
   ============================================= */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* =============================================
   Navbar Mobile Styles
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(244, 194, 13, 0.95);
    color: #000;
    padding: 20px;
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.navbar li {
    margin: 20px 0;
}

.navbar a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.navbar.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: none;
    z-index: 1000;
}

.overlay.show {
    display: block;
}

.menu-burger {
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 1000;
}

/* =============================================
   RESPONSIVE - Tablet
   ============================================= */
@media screen and (max-width: 1024px) {
    .logo-header {
        left: 50px;
    }

    .steps {
        gap: 1.5rem;
    }

    .footer-links {
        gap: 30px;
    }

    .cta-button2,
    .cta-button3 {
        left: 15%;
    }
}

/* =============================================
   RESPONSIVE - Mobile
   ============================================= */
@media screen and (max-width: 768px) {
    .language-switcher {
        top: 5px;
        right: 10px;
        padding: 5px 10px;
        font-size: 12px;
    }

    .fullscreen-icon {
        display: none;
    }

    .logo-header {
        position: relative;
        top: 20px;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logo-header img {
        max-width: 40px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
        padding: 5px 2px;
    }

    .nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .hd {
        flex-direction: column;
        top: 20px;
        left: 0;
        width: 100%;
    }

    .hero {
        margin-top: 50px;
        padding-bottom: 100px;
    }

    .hero-text {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .phone {
        width: 100%;
    }

    .cta-button {
        bottom: -20px;
        padding: 0.5rem 1rem;
        font-size: 14px;
    }

    .steps {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .step {
        max-width: 90%;
        text-align: center;
        align-items: center;
    }

    .step-container {
        flex-direction: column;
        align-items: center;
    }

    .advantages {
        height: auto;
        padding: 2rem 1rem;
    }

    .advantages-content {
        flex-direction: column;
        gap: 1rem;
    }

    .transport-row {
        flex-direction: column;
        align-items: center;
    }

    .row1 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .transport-images img {
        max-width: 100%;
    }

    .transport-text {
        text-align: center;
    }

    .screenshot-content {
        flex-direction: column;
        gap: 1rem;
    }

    .screenshots {
        width: 100%;
    }

    .download-options {
        margin-left: 0;
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .download-row {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button2 {
        bottom: 180px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 14px;
        padding: 0.5rem 1rem;
    }

    .cta-button3 {
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 14px;
        padding: 0.5rem 1rem;
    }

    .footer {
        margin-top: 0;
        padding: 1.5rem 1rem;
    }

    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .address-mobile {
        align-items: center;
    }

    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .expert {
        margin-top: 0;
        padding: 1rem;
        background-size: 100px;
    }
}

/* =============================================
   RESPONSIVE - Small Mobile
   ============================================= */
@media screen and (max-width: 480px) {
    .nav ul {
        padding: 10px 15px;
        gap: 8px;
    }

    .nav ul li a {
        font-size: 12px;
    }

    .step h3 {
        font-size: 14px;
    }

    .step p {
        font-size: 12px;
    }

    .step-img-2 {
        width: 70px;
    }

    .cta-button2,
    .cta-button3 {
        font-size: 12px;
        padding: 0.4rem 0.8rem;
    }

    .footer-links ul li a {
        font-size: 12px;
    }

    .address p,
    .address address {
        font-size: 12px !important;
    }
}
