/**
 *  =========================================================================================
 *  🎨 AEROSTREET LANDING PAGE - STYLESHEET
 *  =========================================================================================

 *  👤 Author       : Winanda Dev
 *  📅 Year         : 2026
 *  📦 Description  : File styling utama untuk tampilan visual landing page Aerostreet.
 *                    Menggunakan Modern CSS (Flexbox, Grid, Variables).

 *  🖌️ BAGIAN STYLING :
 *  ---------------------------------------------------------------------------------------
 *  1. 🌍 Global         : Reset, Typography, Scrollbar custom.
 *  2. 🎩 Navbar         : Styling navigasi desktop & mobile menu.
 *  3. 🏠 Home Section   : Hero layout, gradient background, animations.
 *  4. ℹ️ About Section  : Layout grid, overlay cards, stats boxes.
 *  5. 👟 Products       : Card styling, Swiper overrides, Truck Button.
 *  6. ✨ Features       : Grid keunggulan dengan hover effects.
 *  7. 📂 Categories     : Image grid dengan overlay gradient.
 *  8. 📞 Contact        : Form styling, input fields, contact info.
 *  9. 🦶 Footer         : Dark theme footer layout.
 *  10.📱 Responsive      : Media queries untuk Mobile & Tablet.

 *  🛠️ Library :
 *     - Swiper.js (Slider)
 *     - AOS (Animate On Scroll)
 *     - GSAP (GreenSock Animation Platform)

 *  =========================================================================================
 */

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Mencegah scroll horizontal akibat animasi AOS */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgb(54, 231, 54) #ffffff; /* Firefox (Thumb Track) */
}

/**
 * ============================================================================
 *  1. GLOBAL STYLES & RESET
 *  Pengaturan dasar font, scrollbar, dan reset CSS.
 * ============================================================================
 */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: rgb(54, 231, 54);
    border-radius: 10px;
}

body,
body:focus,
body:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    border: none;
    box-shadow: none;
}

/* Scroll untuk section dengan ID (Navbar) */
section[id] {
    scroll-margin-top: 70px;
}

/* ================================================ */

/**
 * ============================================================================
 *  2. NAVBAR STYLES
 *  Styling untuk header, logo, menu navigasi, dan cart icon.
 * ============================================================================
 */
.Navbar-Container {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0 40px;
    z-index: 1000;
}

/* Logo - Left side */
.Logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.Logo-Image {
    height: 50px;
    width: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.Logo .Text-Logo {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Navbar Menu - Center */
.Navbar-Menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.Menu {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.Menu li a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    width: max-content;
    position: relative;
    cursor: pointer;
    margin: 100px auto;
}

.Menu li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    height: 2px;
    width: 100%;
    left: 0px;
    background-color: rgb(54, 231, 54);
    transition: 0.3s;
    transition-timing-function: ease-in-out;
    transform: scaleX(0);
}

.Menu li a:hover::after {
    transform: scaleX(1);
}

.Menu li a:hover {
    color: rgb(54, 231, 54);
}

.Menu li a:active {
    color: rgb(54, 231, 54);
}

.Menu li a.active {
    color: rgb(54, 231, 54);
}

.Menu li a.active::after {
    transform: scaleX(1);
}

.Mobile-Menu-Btn {
    display: none;
}

.Mobile-Dropdown {
    display: none;
}

/* ================================================ */

/**
 * ============================================================================
 *  3. HOME SECTION STYLES
 *  Styling area Hero, background gradient, dan elemen dekoratif.
 * ============================================================================
 */
.Home-Section {
    background: #F1FAF3;
    position: relative;
    overflow: hidden;
    min-height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 70px;
    box-sizing: border-box;
}

/* Decorative Circle Behind Image */
.Home-Section::before {
    content: "";
    position: absolute;
    top: 51%;
    right: 7%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    background: #DDF3E3;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Home Container - Flexbox for layout */
.Home-Container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1250px;
    padding: 0 50px;
    gap: 30px;
    height: auto;
    box-sizing: border-box;
}

/* Home Content - Left Side (Text) */
.Home-Content {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.Home-Title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #12372A;
    margin: 0 0 20px 0;
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.Home-Description {
    font-size: 18px;
    color: #45665A;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 1;
}

/* Button Container - Desktop (Horizontal) */
.Button-Container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* Home Button */
.Home-Button {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background-color: #22C55E;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.Home-Button:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Home Button Icon */
.Home-Button-Icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.Home-Button:hover .Home-Button-Icon {
    transform: translateX(4px);
}

/* Watch Video Button - Same style as Home Button */
.Watch-Video-Button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background-color: transparent;
    color: #12372A;
    text-decoration: none;
    border: 2px solid #12372A;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.Watch-Video-Button:hover {
    transform: translateY(-4px);
    background-color: #12372A;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(18, 55, 42, 0.3);
}

.Watch-Icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.Watch-Video-Button:hover .Watch-Icon {
    transform: scale(1.1);
}

/* Home Image - Right Side (Shoe) */
.Home-Image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.Home-Image img {
    margin-top: 40px;
    width: 450px;
    height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: naik-turun 5s ease-in-out infinite;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

@keyframes naik-turun {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ================================================ */

/**
 * ============================================================================
 *  4. ABOUT SECTION STYLES
 *  Styling untuk bagian "Tentang Kami", gambar overlay, dan statistik.
 * ============================================================================
 */
.About-Section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9FAFB;
    padding-top: 80px;
    padding-bottom: 30px;
    overflow: hidden;
}

.About-Container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    padding: 0 50px;
    gap: 60px;
    box-sizing: border-box;
}

.About-Image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    position: relative;
}

.About-Image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.About-Content {
    flex: 1;
    width: 50%;
    text-align: left;
}

.About-Title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(54, 231, 54);
    margin: 0 0 15px 0;
}

.About-Subtitle {
    font-size: 40px;
    font-weight: 700;
    color: black;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.About-Subtitle span {
    color: rgb(54, 231, 54);
}

.About-Description {
    font-size: 18px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.About-Description strong {
    color: rgb(54, 231, 54);
}

/* About Features Grid */
.About-Features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.Feature-Item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.Feature-Icon {
    padding: 5px 5px;
    background-color: rgb(54, 231, 54);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Feature-Icon svg {
    width: 13px;
    height: 13px;
    color: #ffffff;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.Feature-Text {
    font-size: 15px;
    color: #555555;
    font-weight: 500;
}

/* Stats Grid - Full Width Below About */
.Stats-Container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1320px;
    margin-top: 60px;
    padding: 0 50px;
    box-sizing: border-box;
}

.Stats-Box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.Stats-Box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.Stats-Box:hover .Stats-IconWrapper {
    background-color: rgb(54, 231, 54);
}

.Stats-Box:hover .Stats-Icon {
    color: #ffffff;
}

.Stats-IconWrapper {
    background-color: #e6f7f0;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Stats-Icon {
    color: #10b981;
}

.Stats-Number {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}


/* ================================================ */

/**
 * ============================================================================
 *  5. PRODUCTS SECTION STYLES
 *  Styling untuk container produk, card, rating, dan harga.
 * ============================================================================
 */
.Products-Section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9FAFB;
    padding-top: 80px;
    overflow: hidden;
}

.Products-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    padding: 0 50px;
    box-sizing: border-box;
}

/* Products Text Container - Center side */
.Products-Text-Container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.Products-Slogan {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FF5330;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.Products-Title {
    font-size: 45px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.Products-Title span {
    color: rgb(54, 231, 54);
}

.Products-Description {
    font-size: 18px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
    max-width: 680px;
}

/* Products Swiper Container - Full Width */
.Products-Swiper-Container {
    width: 100%;
    max-width: 1320px;
    margin-top: 30px;
    padding: 0 50px;
    box-sizing: border-box;
}

.Products-Swiper {
    width: 100%;
    height: auto;
}

.Products-Swiper .swiper-slide {
    width: min(360px, 100%);
    height: auto;
    display: flex;
    justify-content: center;
}

/* Product Card Styles */
.Product-Card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: default;
    width: 100%;
    margin-top: 20px;
}

.Product-Card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.Product-Image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.Product-Image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.Product-Info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.Product-Category {
    font-size: 12px;
    font-weight: 500;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.Product-Name {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

/* ================================================ */
/* 5.1. Swiper Navigation Buttons */
.Products-Swiper .swiper-button-prev,
.Products-Swiper .swiper-button-next {
    color: white;
    background-color: rgb(54, 231, 54);
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.Products-Swiper .swiper-button-prev::after,
.Products-Swiper .swiper-button-next::after {
    font-size: 22px;
    font-weight: bold;
}

.Products-Swiper .swiper-button-prev:hover,
.Products-Swiper .swiper-button-next:hover {
    background-color: rgb(54, 231, 54) !important;
    color: #ffffff !important;
}

.Products-Swiper .swiper-button-prev:hover::after,
.Products-Swiper .swiper-button-next:hover::after {
    color: #ffffff !important;
}

/* Swiper Pagination */
.Products-Swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.Products-Swiper .swiper-pagination-bullet {
    background-color: #cccccc;
    opacity: 1;
}

.Products-Swiper .swiper-pagination-bullet-active {
    background-color: rgb(54, 231, 54);
}

/* ================================================ */
/**
 *  5.2. TRUCK BUTTON ANIMATION
 *  CSS kompleks untuk animasi tombol "Add to Cart" (Truk berjalan).
 *  Credit: Aaron Iker (Desain asli).
 * ============================================================================
 */
.truck-button {
    --color: #fff;
    --background: #2B3044;
    --tick: #16BF78;
    --base: #0D0F18;
    --wheel: #2B3044;
    --wheel-inner: #646B8C;
    --wheel-dot: #fff;
    --back: #6D58FF;
    --back-inner: #362A89;
    --back-inner-shadow: #2D246B;
    --front: #A6ACCD;
    --front-shadow: #535A79;
    --front-light: #FFF8B1;
    --window: #2B3044;
    --window-shadow: #404660;
    --street: #646B8C;
    --street-fill: #404660;
    --box: #DCB97A;
    --box-shadow: #B89B66;
    margin-top: 20px;
    padding: 12px 0;
    width: 100%;
    cursor: pointer;
    text-align: center;
    position: relative;
    border: none;
    outline: none;
    color: var(--color);
    background: var(--background);
    border-radius: var(--br, 15px);
    -webkit-tap-highlight-color: transparent;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx, 0deg)) translateZ(0);
    transition: transform 0.5s, border-radius 0.3s linear var(--br-d, 0s);
}

.truck-button:before, .truck-button:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    display: block;
    background: var(--b, var(--street));
    transform-origin: 0 100%;
    transform: rotateX(90deg) scaleX(var(--sy, 1));
}
.truck-button:after {
    --sy: var(--progress, 0);
    --b: var(--street-fill);
}
.truck-button .default,
.truck-button .success {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    opacity: var(--o, 1);
    transition: opacity 0.3s;
}
.truck-button .success {
    --o: 0;
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
}
.truck-button .success svg {
    width: 12px;
    height: 10px;
    display: inline-block;
    vertical-align: top;
    fill: none;
    margin: 7px 0 0 12px;
    stroke: var(--tick);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: var(--offset, 16px);
    transition: stroke-dashoffset 0.4s ease 0.45s;
}
.truck-button .truck {
    position: absolute;
    width: 72px;
    height: 28px;
    transform: rotateX(90deg) translate3d(var(--truck-x, 4px), calc(var(--truck-y-n, -26) * 1px), 12px);
}
.truck-button .truck:before, .truck-button .truck:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: var(--l, 18px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: inset 0 0 0 2px var(--wheel), inset 0 0 0 4px var(--wheel-inner);
    background: var(--wheel-dot);
    transform: translateY(calc(var(--truck-y) * -1px)) translateZ(0);
}
.truck-button .truck:after {
    --l: 54px;
}
.truck-button .truck .wheel,
.truck-button .truck .wheel:before {
    position: absolute;
    bottom: var(--b, -6px);
    left: var(--l, 6px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--wheel);
    transform: translateZ(0);
}
.truck-button .truck .wheel {
    transform: translateY(calc(var(--truck-y) * -1px)) translateZ(0);
}
.truck-button .truck .wheel:before {
    --l: 35px;
    --b: 0;
    content: "";
}
.truck-button .truck .front,
.truck-button .truck .back,
.truck-button .truck .box {
    position: absolute;
}
.truck-button .truck .back {
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 47px;
    height: 28px;
    border-radius: 1px 1px 0 0;
    background: linear-gradient(68deg, var(--back-inner) 0%, var(--back-inner) 22%, var(--back-inner-shadow) 22.1%, var(--back-inner-shadow) 100%);
}
.truck-button .truck .back:before, .truck-button .truck .back:after {
    content: "";
    position: absolute;
}
.truck-button .truck .back:before {
    left: 11px;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    border-radius: 0 1px 0 0;
    background: var(--back);
}
.truck-button .truck .back:after {
    border-radius: 1px;
    width: 73px;
    height: 2px;
    left: -1px;
    bottom: -2px;
    background: var(--base);
}
.truck-button .truck .front {
    left: 47px;
    bottom: -1px;
    height: 22px;
    width: 24px;
    -webkit-clip-path: polygon(55% 0, 72% 44%, 100% 58%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(55% 0, 72% 44%, 100% 58%, 100% 100%, 0 100%, 0 0);
    background: linear-gradient(84deg, var(--front-shadow) 0%, var(--front-shadow) 10%, var(--front) 12%, var(--front) 100%);
}
.truck-button .truck .front:before, .truck-button .truck .front:after {
    content: "";
    position: absolute;
}
.truck-button .truck .front:before {
    width: 7px;
    height: 8px;
    background: #fff;
    left: 7px;
    top: 2px;
    -webkit-clip-path: polygon(0 0, 60% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 60% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(59deg, var(--window) 0%, var(--window) 57%, var(--window-shadow) 55%, var(--window-shadow) 100%);
}
.truck-button .truck .front:after {
    width: 3px;
    height: 2px;
    right: 0;
    bottom: 3px;
    background: var(--front-light);
}
.truck-button .truck .box {
    width: 13px;
    height: 13px;
    right: 56px;
    bottom: 0;
    z-index: 1;
    border-radius: 1px;
    overflow: hidden;
    transform: translate(calc(var(--box-x, -24) * 1px), calc(var(--box-y, -6) * 1px)) scale(var(--box-s, 0.5));
    opacity: var(--box-o, 0);
    background: linear-gradient(68deg, var(--box) 0%, var(--box) 50%, var(--box-shadow) 50.2%, var(--box-shadow) 100%);
    background-size: 250% 100%;
    background-position-x: calc(var(--bx, 0) * 1%);
}
.truck-button .truck .box:before, .truck-button .truck .box:after {
    content: "";
    position: absolute;
}
.truck-button .truck .box:before {
    content: "";
    background: rgba(255, 255, 255, 0.2);
    left: 0;
    right: 0;
    top: 6px;
    height: 1px;
}
.truck-button .truck .box:after {
    width: 6px;
    left: 100%;
    top: 0;
    bottom: 0;
    background: var(--back);
    transform: translateX(calc(var(--hx, 0) * 1px));
}
.truck-button.animation {
    --rx: -90deg;
    --br: 0;
}
.truck-button.animation .default {
    --o: 0;
}
.truck-button.animation.done {
    --rx: 0deg;
    --br: 15px;
    --br-d: .2s;
}
.truck-button.animation.done .success {
    --o: 1;
    --offset: 0;
}

/**
 * ============================================================================
 *  6. KEUNGGULAN SECTION STYLES
 *  Styling grid box untuk fitur dan kelebihan brand.
 * ============================================================================
 */
.Keunggulan-Section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9FAFB;
    padding-top: 80px;
    padding-bottom: 28px;
    overflow: hidden;
}

.Keunggulan-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    padding: 0 50px;
    box-sizing: border-box;
}

/* Products Text Container - Center side */
.Keunggulan-Text-Container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.Keunggulan-Slogan {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FF5330;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.Keunggulan-Title {
    font-size: 45px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.Title-Normal2 {
    color: #000000;
    font-weight: 700;
}

.Title-Accent2 {
    color: #FF5330;
    font-weight: 700;
}

.Keunggulan-Description {
    font-size: 18px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
    max-width: 680px;
}

/* Keunggulan Grid Styles */
.Keunggulan-Grid-Container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1320px;
    margin-top: 50px;
    padding: 0 50px;
    box-sizing: border-box;
}

.Keunggulan-Box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* Garis Transisi Hover */
.Keunggulan-Box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: var(--hover-color, #FF5330);
    transition: width 0.3s ease;
}

.Keunggulan-Box:hover::after {
    width: 100%;
}

.Keunggulan-Box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.Keunggulan-Box:hover .Keunggulan-Box-Title {
    color: #FF5330;
}

.Keunggulan-Box:hover .Keunggulan-Icon-Wrapper1,
.Keunggulan-Box:hover .Keunggulan-Icon-Wrapper2,
.Keunggulan-Box:hover .Keunggulan-Icon-Wrapper3 {
    transform: scale(1.06);
}

.Keunggulan-Icon-Wrapper1 {
    width: 60px;
    height: 60px;
    background-color: #FFEDE9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.Keunggulan-Icon-Wrapper2 {
    width: 60px;
    height: 60px;
    background-color: #EFEDFA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.Keunggulan-Icon-Wrapper3 {
    width: 60px;
    height: 60px;
    background-color: #E4F4F7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.Keunggulan-Icon-Wrapper svg {
    width: 30px;
    height: 30px;
}

.Keunggulan-Box-Title {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.Keunggulan-Box-Desc {
    font-size: 15px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
    text-align: justify;
}

/* ================================================ */

/**
 * ============================================================================
 *  7. CATEGORIES SECTION STYLES
 *  Styling grid kategori produk dengan efek hover overlay.
 * ============================================================================
 */
.Categories-Section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9FAFB;
    padding-top: 80px;
    overflow: hidden;
}

.Categories-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    padding: 0 50px;
    box-sizing: border-box;
}

/* Products Text Container - Center side */
.Categories-Text-Container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.Categories-Slogan {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FF5330;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.Categories-Title {
    font-size: 45px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.Title-Normal3 {
    color: #000000;
    font-weight: 700;
}

.Title-Accent3 {
    color: #FF5330;
    font-weight: 700;
}

.Categories-Description {
    font-size: 18px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
    max-width: 680px;
}

/* Categories Grid Styles */
.Category-Grid-Container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1320px;
    margin-top: 40px;
    padding: 0 50px;
    box-sizing: border-box;
}

.Category-Box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.Category-Box-Bg {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.Category-Box:hover .Category-Box-Bg {
    transform: scale(1.05);
}

.Category-Box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.Category-Box:hover::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}

.Category-Box-Content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.Category-Box-Content span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.Category-Box-Content h3 {
    margin: 0 0 5px 0;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
}

.Category-Box-Content p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.Category-Box-Content svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.Category-Box:hover .Category-Box-Content svg {
    transform: translate(5px, -5px);
}

/* ================================================ */

/**
 * ============================================================================
 *  8. CONTACT SECTION STYLES
 *  Styling informasi kontak, ikon sosial media, dan formulir input.
 * ============================================================================
 */
.Contact-Section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9FAFB;
    padding-top: 80px;
    padding-bottom: 100px;
    overflow: hidden;
}

.Contact-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    padding: 0 50px;
    box-sizing: border-box;
}

/* Contact Text Container - Center side */
.Contact-Text-Container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.Contact-Slogan {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgb(54, 231, 54);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.Contact-Title {
    font-size: 45px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.Title-Normal4 {
    color: #000000;
    font-weight: 700;
}

.Title-Accent4 {
    color: rgb(54, 231, 54);
    font-weight: 700;
}

.Contact-Description {
    font-size: 18px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

.Contact-Content-Container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    max-width: 1320px;
    padding: 0 50px;
    box-sizing: border-box;
    margin-top: 60px;
}

/* Informasi Kontak - Sisi Kiri */
.Contact-Info {
    flex: 1;
    background-color: #F9FAFB;
}

.Contact-Info h4 {
    font-size: 23px;
    font-weight: bold;
    color: #000;
    margin: 0 0 20px 0;
}

.Contact-Info p {
    font-size: 16.3px;
    color: #555;
    line-height: 1.6;
}

/* Contact Info Boxes */
.Contact-Info-Boxes {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Contact-Info-Box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.Info-Box-Icon {
    flex-shrink: 0;
    background-color: #FFEDE9;
    color: rgb(54, 231, 54);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Info-Box-Icon svg {
    width: 24px;
    height: 24px;
}

.Info-Box-Text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.Info-Box-Text p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Socials in Contact Info */
.Contact-Socials {
    margin-top: 30px;
}

.Contact-Socials h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.Social-Icons-Container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.Social-Icon-Box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #E5E7EB;
    color: #555;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.Social-Icon-Box svg {
    width: 24px;
    height: 24px;
}

.Social-Icon-Box:hover {
    background-color: rgb(54, 231, 54);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Formulir Kontak - Sisi Kanan */
.Contact-Form-Wrapper {
    flex: 0.9;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.Contact-Form h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.Contact-Form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.Form-Group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.Form-Label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.Form-Input,
.Form-Textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.Form-Input:focus,
.Form-Textarea:focus {
    outline: none;
    border-color: #FF5330;
    box-shadow: 0 0 0 4px rgba(255, 83, 48, 0.15);
}

.Form-Textarea {
    resize: none;
    min-height: 100px;
}

.Form-Button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: rgb(54, 231, 54);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.Form-Button:hover {
    background-color: #e04321;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.Form-Button svg {
    width: 20px;
    height: 20px;
}

/* ================================================ */

/**
 * ============================================================================
 *  9. FOOTER SECTION STYLES
 *  Styling area footer gelap, link navigasi, dan copyright.
 * ============================================================================
 */
.Footer-Section {
    background-color: black;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 20px;
    color: #ffffff;
    overflow: hidden;
}

.Footer-Container {
    width: 100%;
    max-width: 1320px;
    padding: 0 50px;
    margin: 0 auto;
    box-sizing: border-box;
}

.Footer-Content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 60px;
}

.Footer-Column.Brand-Column {
    flex: 1.8;
    max-width: 100%;
}

.Footer-Logo {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    color: rgb(54, 231, 54);
    display: flex;
    align-items: center;
    gap: 10px;
}

.Footer-Logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.Footer-Desc {
    font-size: 15px;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 25px;
}

.Footer-Contact-List {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Footer-Contact-Item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #D1D5DB;
    line-height: 1.5;
}

.Contact-Icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgb(54, 231, 54);
}

.Footer-Column {
    flex: 1;
}

.Footer-Title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: rgb(54, 231, 54);
}

.Footer-Links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Footer-Links li a {
    text-decoration: none;
    color: #9CA3AF;
    font-size: 15px;
    transition: color 0.3s ease;
}

.Footer-Links li a:hover {
    color: #FF5330;
}

.Footer-Line {
    width: 100%;
    height: 1px;
    background-color: #374151;
    margin-bottom: 30px;
}

.Footer-Bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Copyright-Text {
    font-size: 14px;
    color: #9CA3AF;
}

.Footer-Socials {
    display: flex;
    gap: 15px;
}

.Social-Box-Footer {
    width: 40px;
    height: 40px;
    background-color: #1F2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.Social-Box-Footer:hover {
    background-color: #FF5330;
    transform: translateY(-3px);
}

/* =============================================== */

/**
 *  10. DEVELOPER CREDIT
 *  Badge nama developer yang melayang di pojok kanan bawah.
 * ============================================================================
 */
.Dev-Credit {
    position: fixed;
    bottom: 14px;
    right: 14px;
    z-index: 10000;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.Dev-Credit a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 55, 42, 0.12);
    box-shadow: 0 6px 18px rgba(18, 55, 42, 0.12);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Dev-Credit a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(18, 55, 42, 0.16);
}

.Dev-Name {
    color: #12372A;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.01em;
}

.Dev-Text {
    color: #22C55E;
    font-weight: 800;
    font-size: 13px;
}

/* ================================================ */

@media screen and (max-width: 318px) {
    body>* {
        display: none !important;
    }

    body::before {
        content: "Maaf, ukuran layar terlalu kecil untuk menampilkan website ini. Silakan akses menggunakan perangkat dengan layar yang lebih besar.";
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background-color: #FF5330;
        color: #ffffff;
        font-size: 18px;
        text-align: center;
        padding: 20px;
        font-family: 'Poppins', sans-serif;
    }
}

/**
 * ============================================================================
 *  11. RESPONSIVE STYLES (MOBILE)
 *  Penyesuaian layout untuk layar smartphone (max-width: 767px).
 * ============================================================================
 */
@media screen and (max-width: 767px) {
    section[id] {
        scroll-margin-top: 60px;
    }

    .Navbar-Container {
        height: 60px;
        padding: 0 15px;
    }

    .Logo .Text-Logo {
        font-size: 20px;
    }

    .Navbar-Menu {
        display: none;
    }

    .Mobile-Menu-Btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .Mobile-Menu-Btn svg {
        width: 26px;
        height: 26px;
        color: #000;
    }

    .Mobile-Menu-Btn .close-icon {
        display: none;
    }

    .Mobile-Menu-Btn.active .menu-icon {
        display: none;
    }

    .Mobile-Menu-Btn.active .close-icon {
        display: block;
    }

    .Mobile-Dropdown {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
        z-index: 2000;
    }

    .Mobile-Dropdown.active {
        display: block;
        animation: slideDown 0.25s ease-out;
    }

    .Mobile-Dropdown.closing {
        animation: slideUp 0.25s ease-out forwards;
    }

    .Mobile-Menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .Mobile-Menu li {
        text-align: center;
        padding: 10px 0;
    }

    .Mobile-Menu li a {
        color: #000;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideUp {
        from { opacity: 1; transform: translateY(0); }
        to { opacity: 0; transform: translateY(-10px); }
    }

    @keyframes slideUp {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(-20px);
        }
    }

    /* Home Section - Mobile Styles */
    .Home-Section {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .Home-Section::before {
        display: none;
    }

    .Home-Container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px 10px;
        gap: 30px;
        text-align: center;
    }

    .Home-Content {
        text-align: center;
        max-width: 100%;
        order: 1;
    }

    .Home-Title {
        font-size: clamp(2.2rem, 9vw, 3.1rem);
        line-height: 1.1;
    }

    .Home-Description {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .Button-Container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .Home-Button,
    .Watch-Video-Button {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        padding: 18px 24px;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    .Home-Image {
        display: flex;
        margin-top: 10px;
        margin-bottom: 0;
        width: 100%;
    }

    .Home-Image img {
        width: min(100%, 340px);
        height: auto;
        margin-top: 0;
    }

    /* About Section - Mobile Styles */
    .About-Section {
        padding-top: 60px;
        padding-bottom: 10px;
    }

    .About-Container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .About-Image {
        width: 100%;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .About-Image img {
        width: 100%;
        max-width: 100%;
    }

    .About-Content {
        width: 100%;
        order: 2;
        text-align: left;
    }

    .About-Title {
        font-size: 14px;
    }

    .About-Subtitle {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .About-Description {
        font-size: 16px;
    }

    .About-Features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .Feature-Text {
        font-size: 14px;
    }

    .Stats-Container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .Stats-Box {
        padding: 25px;
    }

    .Stats-IconWrapper {
        padding: 10px;
    }

    .Stats-Number {
        font-size: 15px;
    }

    .Stats-Label {
        font-size: 12px;
    }

    /* Products Section - Mobile Styles */
    .Products-Section {
        padding-top: 60px;
    }

    .Products-Container {
        padding: 0 20px;
    }

    .Products-Slogan {
        font-size: 12px;
        padding: 6px 15px;
    }

    .Products-Title {
        font-size: 28px;
    }

    .Products-Description {
        font-size: 14px;
        padding: 0 10px;
    }

    .Products-Swiper-Container {
        padding: 0 20px;
        margin-top: 20px;
    }

    .Product-Card {
        max-width: 100%;
        margin-top: 20px;
    }

    /* Keunggulan Section - Mobile */
    .Keunggulan-Section {
        padding-top: 60px;
        padding-bottom: 25px;
    }

    .Keunggulan-Container {
        padding: 0 20px;
    }

    .Keunggulan-Slogan {
        font-size: 12px;
        padding: 6px 15px;
    }

    .Keunggulan-Title {
        font-size: 28px;
    }

    .Keunggulan-Description {
        font-size: 14px;
    }

    .Keunggulan-Grid-Container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        margin-top: 30px;
    }
    
    .Keunggulan-Box {
        padding: 25px;
    }

    /* Categories Section - Mobile */
    .Categories-Section {
        padding-top: 60px;
    }

    .Categories-Container {
        padding: 0 20px;
    }

    .Categories-Slogan {
        font-size: 12px;
        padding: 6px 15px;
    }

    .Categories-Title {
        font-size: 28px;
    }

    .Categories-Description {
        font-size: 14px;
        padding: 0 10px;
    }

    .Category-Grid-Container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
        margin-top: 30px;
    }

    .Category-Box-Content {
        left: 20px;
        bottom: 20px;
    }

    /* Contact Section - Mobile */
    .Contact-Section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .Contact-Container {
        padding: 0 20px;
    }

    .Contact-Title {
        font-size: 28px;
    }

    .Contact-Description {
        font-size: 14px;
    }

    .Contact-Content-Container {
        flex-direction: column;
        gap: 50px;
        margin-top: 50px;
        padding: 0 20px;
    }

    .Contact-Info h4 {
        font-size: 20px;
    }

    .Contact-Info p {
        font-size: 14px;
    }

    .Info-Box-Text h4 {
        font-size: 15px;
    }

    .Info-Box-Text p {
        font-size: 13px;
    }

    .Contact-Form-Wrapper {
        padding: 30px 25px;
    }

    .Social-Icon-Box svg {
        width: 20px;
        height: 20px;
    }

    /* Footer Section - Mobile */
    .Footer-Section {
        padding-bottom: 30px;
    }

    .Footer-Container {
        padding: 0 20px;
    }

    .Footer-Content {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 40px;
    }

    .Brand-Column {
        max-width: 100%;
    }

    .Footer-Bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .Copyright-Text {
        font-size: 13px;
        order: 2;
    }

    .Footer-Socials {
        order: 1;
    }
}

/**
 * ============================================================================
 *  12. RESPONSIVE STYLES (TABLET)
 *  Penyesuaian layout untuk layar tablet (768px - 1024px).
 * ============================================================================
 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .Navbar-Container {
        height: 70px;
        padding: 0 30px;
    }

    .Logo .Text-Logo {
        font-size: 24px;
    }

    .Menu {
        gap: 20px;
    }

    .Menu li a {
        font-size: 14px;
    }

    .Mobile-Menu-Btn,
    .Mobile-Dropdown {
        display: none;
    }

    /* Home Section - Tablet Styles */
    .Home-Section {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .Home-Section::before {
        display: none;
    }

    .Home-Container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .Home-Content {
        text-align: center;
        max-width: 100%;
        order: 1;
    }

    .Home-Title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .Home-Description {
        font-size: 1.1rem;
        max-width: 620px;
        margin: 0 auto 24px;
    }

    .Button-Container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .Home-Button,
    .Watch-Video-Button {
        display: inline-flex;
        justify-content: center;
        width: auto;
        padding: 15px 25px;
        font-size: 1rem;
        box-sizing: border-box;
        white-space: nowrap;
    }

    .Home-Image {
        display: flex;
        margin-top: 10px;
        width: 100%;
    }

    .Home-Image img {
        width: min(100%, 420px);
        height: auto;
        margin-top: 0;
    }

    /* About Section - Tablet Styles */
    .About-Section {
        padding-top: 70px;
        padding-bottom: 10px;
    }

    .About-Container {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }

    .About-Image {
        width: 100%;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .About-Image img {
        width: 100%;
        max-width: 100%;
    }

    .About-Content {
        width: 100%;
        order: 2;
        text-align: left;
    }

    .About-Title {
        font-size: 17px;
    }

    .About-Subtitle {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
    }

    .About-Description {
        font-size: 17px;
    }

    .About-Features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .Feature-Text {
        font-size: 14px;
    }

    .Stats-Container {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 30px;
        gap: 15px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .Stats-Box {
        padding: 25px;
    }

    .Stats-IconWrapper {
        padding: 12px;
    }

    .Stats-Number {
        font-size: 22px;
    }

    .Stats-Label {
        font-size: 14px;
    }

    /* Products Section - Tablet Styles */
    .Products-Section {
        padding-top: 70px;
    }

    .Products-Container {
        padding: 0 30px;
    }

    .Products-Title {
        font-size: 36px;
    }

    .Products-Swiper-Container {
        padding: 0 30px;
    }

    .Product-Card {
        max-width: 100%;
    }

    /* Keunggulan Section - Tablet */
    .Keunggulan-Section {
        padding-top: 70px;
        padding-bottom: 25px;
    }

    .Keunggulan-Container {
        padding: 0 30px;
    }

    .Keunggulan-Title {
        font-size: 36px;
    }

    .Keunggulan-Grid-Container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
    }

    /* Categories Section - Tablet Styles */
    .Categories-Section {
        padding-top: 70px;
    }

    .Categories-Container {
        padding: 0 30px;
    }

    .Categories-Title {
        font-size: 36px;
    }

    .Category-Grid-Container {
        padding: 0 30px;
        gap: 20px;
        margin-top: 40px;
    }

    .Category-Box-Content {
        left: 25px;
        bottom: 25px;
    }

    /* Contact Section - Tablet */
    .Contact-Section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .Contact-Container {
        padding: 0 30px;
    }

    .Contact-Title {
        font-size: 36px;
    }

    .Contact-Content-Container {
        flex-direction: column;
        gap: 50px;
        padding: 0 30px;
        margin-top: 50px;
    }

    /* Footer Section - Tablet */
    .Footer-Section {
        padding-bottom: 30px;
    }

    .Footer-Container {
        padding: 0 30px;
    }

    .Footer-Content {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 40px;
        padding-bottom: 50px;
    }

    .Brand-Column {
        grid-column: 1;
        grid-row: 1;
        max-width: 100%;
    }
    
    .Footer-Column:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
}

/**
 * ============================================================================
 *  13. RESPONSIVE STYLES (LARGE DESKTOP)
 *  13. RESPONSIVE STYLES (WIDER DESKTOP)
 *  Penyesuaian untuk layar di atas 1440px (Monitor Besar / Ultra-wide).
 * ============================================================================
 */
@media screen and (min-width: 1440px) {
    .Navbar-Container {
        padding: 0 100px;
    }

    .Home-Container,
    .About-Container,
    .Stats-Container,
    .Products-Container,
    .Products-Swiper-Container,
    .Keunggulan-Container,
    .Keunggulan-Grid-Container,
    .Categories-Container,
    .Category-Grid-Container,
    .Contact-Container,
    .Contact-Content-Container,
    .Footer-Container {
        max-width: 1500px;
    }

    .Home-Title {
        font-size: 60px;
    }

    .Home-Description {
        font-size: 22px;
        max-width: 600px;
    }

    .Home-Section::before {
        width: 650px;
        height: 650px;
        right: 5%;
    }

    .Home-Image img {
        width: 550px;
        height: 550px;
    }

    .Category-Grid-Container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product comparison content */
#Products .Product-Info {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 350px;
    padding: 24px;
    gap: 10px;
    background: linear-gradient(145deg, #fffdf8 0%, #f5fbf7 100%);
    border-top: 4px solid #36e736;
    overflow: hidden;
}

#Products .Product-Info::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -35px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(24, 128, 94, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 18px rgba(24, 128, 94, 0.04), 0 0 0 36px rgba(24, 128, 94, 0.03);
}

#Products .Product-Category {
    position: relative;
    width: fit-content;
    padding: 5px 9px;
    border-radius: 4px;
    background: #dff7e8;
    color: #18805e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

#Products .Product-Name {
    position: relative;
    margin: 2px 0 4px;
    color: #173e35;
    font-size: 21px;
    line-height: 1.25;
    white-space: normal;
}

#Products .Product-Compare {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    gap: 6px;
    margin-top: 2px;
}

#Products .Product-Compare-Title {
    width: fit-content;
    margin: 7px 0 0;
    padding: 3px 7px;
    color: black;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

#Products .Product-Compare-Title--accent {
    color: #18805e;
}

#Products .Product-Compare p {
    margin: 0 0 2px;
    padding: 8px 10px;
    font-size: 16px;
    line-height: 1.45;
}

#Products .Product-Compare h2.Product-Compare-Title {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    padding: 12px 14px;
    border-top: 0;
    border-left: 0;
    border-radius: 6px;
    background: rgb(54, 231, 54);
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}

#Products .Products-Swiper .swiper-slide {
    height: auto;
    align-items: stretch;
}

#Products .Product-Card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#Products .Product-Compare h2.Product-Compare-Title:last-child {
    margin-top: auto;
}

@media screen and (max-width: 767px) {
    .Products-Swiper-Container { padding: 0 24px; }
    .Products-Swiper .swiper-slide { width: 100%; }

    #Products .Products-Container {
        padding: 0 20px;
    }

    #Products .Products-Title {
        font-size: clamp(26px, 8vw, 34px);
        gap: 6px;
    }

    #Products .Products-Description {
        font-size: 15px;
        line-height: 1.5;
    }

    #Products .Products-Swiper-Container {
        width: 100%;
        padding: 0 20px;
    }

    #Products .Products-Swiper .swiper-slide {
        width: 100%;
        min-width: 0;
    }

    #Products .Product-Card {
        width: 100%;
        max-width: 420px;
        margin: 20px auto 0;
    }

    #Products .Product-Info {
        min-height: 0;
        padding: 20px;
    }

    #Products .Product-Name {
        font-size: 20px;
    }

    #Products .Product-Compare p {
        font-size: 14px;
        line-height: 1.5;
    }

    #Products .Product-Compare h2.Product-Compare-Title {
        font-size: 15px;
        line-height: 1.35;
    }
}

@media screen and (max-width: 420px) {
    #Products .Products-Container,
    #Products .Products-Swiper-Container {
        padding-left: 14px;
        padding-right: 14px;
    }

    #Products .Product-Info {
        padding: 16px;
    }

    #Products .Product-Name {
        font-size: 18px;
    }

    #Products .Product-Compare-Title {
        font-size: 11px;
    }

    #Products .Product-Compare p {
        font-size: 13px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #Products .Products-Container,
    #Products .Products-Swiper-Container {
        padding-left: 30px;
        padding-right: 30px;
    }

    #Products .Products-Swiper .swiper-slide {
        width: 100%;
        min-width: 0;
    }

    #Products .Product-Info {
        min-height: 330px;
        padding: 20px;
    }

    #Products .Product-Compare p {
        font-size: 14px;
    }
}

/* ================================
   ROADMAP SECTION
================================ */

.roadmap {
    position: relative;
    padding: 90px 7%;
    background: #f8fafb;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}


/* ================================
   ROADMAP HEADER
================================ */

.roadmap-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.roadmap-header h2 {
    margin: 20px 0 12px;

    color: #111827;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 700;
}

.roadmap-header p {
    max-width: 700px;
    margin: 0 auto;

    color: #475569;

    font-size: 17px;
    line-height: 1.7;
}

.roadmap-divider {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-top: 20px;
}

.roadmap-divider span {
    width: 55px;
    height: 4px;

    border-radius: 10px;

    background: #16b957;
}

.roadmap-divider i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #16b957;
}


/* ================================
   ROADMAP CONTAINER
================================ */

.roadmap-container {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 100px;

    max-width: 1260px;

    margin: 0 auto;
}


/* ================================
   CONNECTING LINE
================================ */

.roadmap-container::before {
    content: "";

    position: absolute;

    top: 148px;
    left: 14%;
    right: 14%;

    border-top: 2px dashed #64748b;

    z-index: 0;
}


/* ================================
   ROADMAP ITEM
================================ */

.roadmap-item {
    position: relative;
    z-index: 1;
}


/* ================================
   STEP NUMBER
================================ */

.step-number {
    position: absolute;

    top: -28px;
    left: 50%;

    transform: translateX(-50%);

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    font-size: 17px;
    font-weight: 700;

    border: 4px solid #f8fafb;

    z-index: 3;
}


/* ================================
   CARD
================================ */

.roadmap-card {
    min-height: 465px;

    padding: 42px 40px 30px;

    background: rgba(255, 255, 255, .96);

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .08);

    border: 1px solid #edf0f3;

    text-align: center;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.roadmap-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, .13);
}


/* ================================
   ICON
================================ */

.roadmap-icon {
    width: 78px;
    height: 78px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 30px;
    font-weight: 700;
}


/* ================================
   CARD TITLE
================================ */

.roadmap-card h3 {
    margin: 0 auto 12px;

    max-width: 300px;

    color: #111827;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}


/* ================================
   CARD DESCRIPTION
================================ */

.roadmap-card p {
    max-width: 330px;

    margin: 0 auto 25px;

    color: #475569;

    font-size: 14px;
    line-height: 1.7;
}


/* ================================
   FEATURES
================================ */

.roadmap-card ul {
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: left;
}

.roadmap-card li {
    position: relative;

    padding-left: 25px;

    margin-bottom: 12px;

    color: #334155;

    font-size: 13px;
    line-height: 1.4;
}

.roadmap-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    font-size: 10px;
    font-weight: 700;
}


/* ================================
   BADGE
================================ */

.roadmap-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 12px;

    padding: 8px 16px;

    border-radius: 20px;

    font-size: 13px;
    font-weight: 600;
}


/* ================================
   STEP 1 - GREEN
================================ */

.step-one .step-number {
    background: #16b957;
}

.step-one .roadmap-card {
    border-right: 2px solid #16b957;
}

.step-one .roadmap-icon {
    background: #e8f8ee;
    color: #16a34a;
}

.step-one .roadmap-card li::before {
    background: #16b957;
}

.step-one .roadmap-badge {
    background: #e8f8ee;
    color: #159447;
}


/* ================================
   STEP 2 - BLUE
================================ */

.step-two .step-number {
    background: #3182ed;
}

.step-two .roadmap-card {
    border-right: 2px solid #3182ed;
}

.step-two .roadmap-icon {
    background: #e9f1ff;
    color: #3182ed;
}

.step-two .roadmap-card li::before {
    background: #3182ed;
}

.step-two .roadmap-badge {
    background: #e9f1ff;
    color: #2875db;
}


/* ================================
   STEP 3 - PURPLE
================================ */

.step-three .step-number {
    background: #8b4de8;
}

.step-three .roadmap-card {
    border-right: 2px solid #8b4de8;
}

.step-three .roadmap-icon {
    background: #f2eaff;
    color: #8b4de8;
}

.step-three .roadmap-card li::before {
    background: #8b4de8;
}

.step-three .roadmap-badge {
    background: #f2eaff;
    color: #8145db;
}


/* ================================
   GITHUB SECTION
================================ */

.github-section {
    max-width: 1260px;

    margin: 34px auto 0;

    padding: 28px 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #f1fbf5;

    border: 1px solid #ccefd9;

    border-radius: 18px;
}


/* ================================
   GITHUB CONTENT
================================ */

.github-content {
    display: flex;
    align-items: center;

    gap: 22px;
}

.github-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;

    border: 1px solid #d7e2dc;

    border-radius: 14px;
}

.github-icon svg {
    width: 38px;
    height: 38px;

    fill: #111827;
}

.github-content h3 {
    margin: 0 0 6px;

    color: #111827;

    font-size: 20px;
}

.github-content p {
    margin: 0;

    color: #475569;

    font-size: 14px;
    line-height: 1.6;
}


/* ================================
   GITHUB BUTTON
================================ */

.github-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 285px;

    padding: 16px 25px;

    border-radius: 10px;

    background: #16b957;

    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    box-shadow: 0 8px 20px rgba(22, 185, 87, .2);

    transition:
        transform .2s ease,
        background .2s ease;
}

.github-button:hover {
    background: #119c48;

    transform: translateY(-2px);
}

.github-button svg {
    width: 23px;
    height: 23px;

    fill: white;
}

.github-button .arrow {
    margin-left: auto;

    font-size: 22px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1050px) {

    .roadmap-container {
        gap: 30px;
    }

    .roadmap-card {
        padding: 40px 25px 25px;
    }

    .roadmap-card h3 {
        font-size: 18px;
    }

    .github-section {
        padding: 25px;
    }
}


@media (max-width: 850px) {

    .roadmap {
        padding: 70px 5%;
    }

    .roadmap-container {
        grid-template-columns: 1fr;

        gap: 70px;

        max-width: 600px;
    }

    /* Hide horizontal connector */
    .roadmap-container::before {
        display: none;
    }

    .roadmap-card {
        min-height: auto;
    }

    .github-section {
        flex-direction: column;

        text-align: center;
    }

    .github-content {
        flex-direction: column;
    }

    .github-button {
        width: 100%;
    }
}


@media (max-width: 500px) {

    .roadmap {
        padding: 60px 20px;
    }

    .roadmap-header h2 {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .roadmap-header p {
        font-size: 15px;
    }

    .roadmap-card {
        padding: 40px 25px 25px;
    }

    .github-section {
        padding: 25px 20px;
    }

    .github-button {
        min-width: 0;
    }
}

/* =========================================
   VENWAVE BLOGS SECTION
========================================= */

.blogs-section {
    position: relative;

    padding: 90px 5% 80px;

    background: #f9fafb;

    overflow: hidden;

    font-family: "Poppins", sans-serif;
}


/* =========================================
   SUBTLE BACKGROUND
========================================= */

.blogs-section::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: 100px;
    left: -180px;

    border-radius: 50%;

    background: rgba(255, 95, 50, 0.025);

    pointer-events: none;
}


/* =========================================
   HEADER
========================================= */

.blogs-header {
    position: relative;

    max-width: 900px;

    margin: 0 auto 55px;

    text-align: center;

    z-index: 1;
}


/* Badge */

/* Heading */

.blogs-header h1 {
    margin: 0;
    color: black;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    text-shadow: 0 0 30px rgba(54, 231, 54, 0.25);
}

.blogs-header h1 span {
    color: rgb(54, 231, 54);
}

.blogs-header h3 {
    margin: 16px 0 22px;
    color: black;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.blogs-header h3 span {
    position: relative;
}

.blogs-header h3 span::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: 3px;
    width: 24px;
    height: 2px;
    background: rgb(54, 231, 54);
    
}

/* =========================================
   BLOG GRID
========================================= */

.blogs-grid {
    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================
   BLOG CARD
========================================= */

.blog-card {
    overflow: hidden;

    background: #ffffff;

    border-radius: 16px;

    border: 1px solid #edf0f2;

    box-shadow:
        0 7px 25px rgba(15, 23, 42, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.12);
}


/* =========================================
   BLOG IMAGE
========================================= */

.blog-image {
    position: relative;

    height: 215px;

    overflow: hidden;

    background: #111827;
}

.blog-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}


/* =========================================
   STEP NUMBER
========================================= */

.blog-number {
    position: absolute;

    top: 13px;
    left: 13px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    border: 2px solid rgba(255,255,255,0.25);
}


/* =========================================
   CARD CONTENT
========================================= */

.blog-content {
    padding: 20px 22px 24px;
}


/* =========================================
   META
========================================= */

.blog-meta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 14px;
}


/* Category */

.blog-category {
    display: inline-flex;

    align-items: center;

    padding: 6px 12px;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 600;
}


/* Date */

.blog-date {
    display: flex;

    align-items: center;

    gap: 5px;

    color: #64748b;

    font-size: 11px;

    white-space: nowrap;
}


/* =========================================
   TITLE
========================================= */

.blog-content h3 {
    margin: 0 0 12px;

    color: #111827;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.blog-content p {
    margin: 0 0 22px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   READ MORE
========================================= */

.read-more {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: gap 0.2s ease;
}

.read-more span {
    font-size: 21px;

    line-height: 1;
}

.read-more:hover {
    gap: 13px;
}


/* =========================================
   GREEN CARD
========================================= */

.blog-green .blog-number {
    background: #16b957;
}

.blog-green .blog-category {
    background: #e8f8ee;
    color: #159447;
}

.blog-green .read-more {
    color: #16b957;
}

.blog-green {
    border-top: 3px solid #16b957;
}


/* =========================================
   BLUE CARD
========================================= */

.blog-blue .blog-number {
    background: #287ff0;
}

.blog-blue .blog-category {
    background: #e8f1ff;
    color: #2875db;
}

.blog-blue .read-more {
    color: #287ff0;
}

.blog-blue {
    border-top: 3px solid #287ff0;
}


/* =========================================
   PURPLE CARD
========================================= */

.blog-purple .blog-number {
    background: #8848e8;
}

.blog-purple .blog-category {
    background: #f1eaff;
    color: #8145db;
}

.blog-purple .read-more {
    color: #8848e8;
}

.blog-purple {
    border-top: 3px solid #8848e8;
}


/* =========================================
   ORANGE CARD
========================================= */

.blog-orange .blog-number {
    background: #ff5738;
}

.blog-orange .blog-category {
    background: #fff0eb;
    color: #f04e2e;
}

.blog-orange .read-more {
    color: #ff5738;
}

.blog-orange {
    border-top: 3px solid #ff5738;
}


/* =========================================
   CTA
========================================= */

.blogs-cta {
    max-width: 1150px;

    margin: 30px auto 0;

    padding: 24px 35px;

    display: flex;

    align-items: center;

    gap: 22px;

    background: white;

    border: 1px solid #28db34;

    border-radius: 16px;
}


/* CTA Icon */

.cta-icon {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: white;

    color: rgb(54, 231, 54);

    font-size: 30px;
}


/* CTA Content */

.cta-content {
    flex: 1;
}

.cta-content h3 {
    margin: 0 0 5px;

    color: #111827;

    font-size: 19px;

    font-weight: 700;
}

.cta-content p {
    margin: 0;

    max-width: 700px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.6;
}


/* CTA Button */

.cta-button {
    min-width: 220px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 15px 22px;

    border-radius: 9px;

    background: rgb(54, 231, 54);

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cta-button span {
    font-size: 21px;
}

.cta-button:hover {
    background: #ed4628;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1150px) {

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);

        max-width: 850px;
    }

    .blog-image {
        height: 240px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .blogs-section {
        padding: 70px 20px;
    }

    .blogs-header {
        margin-bottom: 45px;
    }

    .blogs-header h1 {
        font-size: 34px;

        letter-spacing: -0.8px;
    }

    .blogs-header p {
        font-size: 15px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .blog-image {
        height: 230px;
    }

    .blogs-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }

    .cta-button {
        width: 100%;
    }
}

/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    width: 100%;
    padding: 100px 7%;
    background: #f8faf9;
    position: relative;
    overflow: hidden;
}

/* Decorative background */

.faq-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(43, 225, 54, 0.15);
    border-radius: 50%;
    right: -100px;
    top: 80px;
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 87, 54, 0.12);
    border-radius: 50%;
    left: -80px;
    bottom: 100px;
}


/* =========================================
   FAQ HEADER
========================================= */

.faq-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-header h2 {
    margin: 0;

    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 800;

    color: #080b0d;
    letter-spacing: -2px;
}

.faq-header h2 span {
    color: #20d631;
}

.faq-header p {
    max-width: 650px;
    margin: 20px auto 0;

    font-size: 17px;
    line-height: 1.7;

    color: #64707d;
}


/* =========================================
   FAQ CONTAINER
========================================= */

.faq-container {
    max-width: 950px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
    background: #ffffff;

    border: 1px solid #e8ece9;
    border-radius: 16px;

    margin-bottom: 14px;

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.faq-item:hover {
    border-color: #bdebc1;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}


/* =========================================
   QUESTION
========================================= */

.faq-question {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    padding: 25px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    text-align: left;

    font-family: inherit;
}

.faq-question span:first-child {
    font-size: 18px;
    font-weight: 700;

    color: #101418;

    padding-right: 20px;
}


/* =========================================
   PLUS ICON
========================================= */

.faq-icon {
    min-width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edfff0;
    color: #20cf2c;

    font-size: 24px;
    font-weight: 400;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* =========================================
   ANSWER
========================================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    padding: 0 28px;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.faq-answer p {
    margin: 0;

    font-size: 16px;
    line-height: 1.75;

    color: #66717c;
}


/* =========================================
   ACTIVE FAQ
========================================= */

.faq-item.active {
    border-color: #b9eabd;

    box-shadow: 0 10px 30px rgba(32, 207, 44, 0.07);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 27px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);

    background: #20d631;
    color: #ffffff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 70px 20px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-header h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .faq-header p {
        font-size: 15px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-item.active .faq-answer {
        max-height: 1000px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 22px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-icon {
        min-width: 30px;
        height: 30px;
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .roadmap-header,
    .blogs-header,
    .faq-header {
        max-width: 100%;
    }

    .roadmap-card,
    .blog-card,
    .faq-item,
    .Contact-Form-Wrapper {
        min-width: 0;
    }

    .blog-meta {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .Contact-Info-Box {
        gap: 14px;
    }

    .Info-Box-Text {
        min-width: 0;
    }

    .Info-Box-Text p,
    .Footer-Contact-Item span {
        overflow-wrap: anywhere;
    }

    .github-content,
    .blogs-cta {
        width: 100%;
    }
}