/* --------------------------------------- GENERAL --------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #111;
    /* general background color of the entire web behind the assets */
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* --------------------------------------- HERO SECTION --------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    background: url('./asset/hero 1.png') no-repeat center center/cover;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* overlay for the hero image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* FLOATING ELEMENTS */

/* Logo (Top Left) */
.brand-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 10;
}

.logo-box img {
    width: 80px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
}

.mobile-only {
    display: none;
}

/* Navbar */
.floating-nav {
    position: fixed;
    top: 30px;
    left: auto;
    right: -400px;
    transform: translateX(-50%);
    z-index: 1000;
    background: white;
    padding: 10px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 850px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

@media screen and (min-width: 950px) {
    .floating-nav.scrolled {
        top: 10px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        width: 95%;
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e65100;
    font-weight: bold;
    border-bottom: 2px solid #e65100;
}

.btn-contact {
    background-color: #e65100;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-contact:hover {
    transform: scale(1.05);
}

/* CENTER TEXT CONTENT */
.text-container {
    position: absolute;
    right: 10%;
    top: 30%;
    z-index: 2;
    text-align: right;
    color: white;
    width: 80%;
    margin-top: 50px;
}

.main-title {
    font-size: 5rem;
    font-weight: 800;
    color: #e65100;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 10px;
}

.sub-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    color: #e65100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.connected-group {
    display: flex;
    align-items: center;
    gap: 0px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    color: #333;
    padding: 14px 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-compass {
    background: white;
    border: none;
    color: #333;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.connected-group:hover .btn-white,
.connected-group:hover .btn-compass {
    background-color: #f0f0f0;
    color: #e65100;
}

/* SLIDER CONTROLS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    z-index: 5;
    padding: 20px;
}

.slider-arrow:hover {
    color: white;
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #e65100;
    width: 30px;
    border-radius: 10px;
}

/* BRAND STRIP */
.brand-strip {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.brand-card {
    background: white;
    width: 200px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-card img {
    max-width: 70%;
    max-height: 60%;
    object-fit: contain;
}

/* --------------------------------------- ABOUT SECTION --------------------------------------- */

.about-section {
    background-color: #111;
    color: white;
    padding: 50px 5% 80px 5%;
    position: relative;
    z-index: 2;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Row Title n Date */
.about-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.about-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
}

.since-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Grid Layout */
.about-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    height: 350px;
}

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-right {
    flex: 1.5;
}

/* Buttons in About Section */
.about-buttons {
    display: flex;
    gap: 0px;
    align-items: center;
}

.btn-orange-pill {
    background-color: #e65100;
    color: black;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-orange-box {
    background-color: #e65100;
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.about-buttons:hover .btn-orange-pill,
.about-buttons:hover .btn-orange-box {
    transform: scale(1.05);
}

/* Images */
.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 89, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.image-box.small {
    height: 200px;
}

.image-box.large {
    height: 100%;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2);
    transition: transform 0.5s;
}

.image-box:hover img {
    transform: scale(1.05);
}

/* Description Text */
.about-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 900px;
}

/* Orange Text Highlight Utility */
.text-orange {
    color: #e65100;
    font-weight: 600;
}

/* --------------------------------------- PRODUCT SECTION --------------------------------------- */

.product-section {
    background-color: #111;
    padding: 80px 5%;
    color: white;
    max-width: 100%;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    margin-top: -50px;
    padding-top: 30px;
    border-top: 2px solid #333;
}

.section-header h2 {
    font-size: 2.5rem;
}

.product-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    background: #e65100;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.nav-btn:hover {
    transform: scale(1.1);
    background: #ff6d00;
}

/* SCROLL CONTAINER (Draggable) */
.product-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    padding-top: 30px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    /* Hide Scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}

.product-container::-webkit-scrollbar {
    display: none;
}

.product-container.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    transform: scale(1);
}

/* PRODUCT CARD */
.product-card {
    min-width: 300px;
    /* Fixed width for each card */
    max-width: 500px;
    height: 500px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Header (Orange Bar) */
.card-header {
    background: #e65100;
    color: white;
    padding: 10px 15px;
    font-weight: 800;
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Image Area */
.card-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    padding: 20px;
    /* White space around bike */
    border-radius: 35px;
    pointer-events: none;
    -webkit-user-drag: none;
}

.product-card:hover .card-image {
    filter: sepia(70%) hue-rotate(-30deg) saturate(300%);
    transition: filter 0.4s ease;
}

/* HOVER OVERLAY (The Orange Box Description) */
.card-overlay {
    position: absolute;
    bottom: -100%;
    /* Hidden below by default */
    left: 0;
    width: 100%;
    height: 200px;
    /* Covers bottom half */
    background: #e65100;
    color: white;
    padding: 20px;
    transition: bottom 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Show Overlay on Hover */
.product-card:hover .card-overlay {
    bottom: 0;
}

.card-desc {
    font-size: 1.2rem;
    line-height: 1.4;
    color: white;
    font-weight: 500;
}

.btn-detail {
    background: black;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    padding-left: 20px;
    padding-right: 20px;
}

/* --- MODAL (POPUP) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 1100px;
    border-radius: 20px;
    position: relative;
    padding: 40px;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.modal-body {
    display: flex;
    gap: 40px;
}

.modal-left {
    flex: 1;
}

.modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#modalMainImg {
    width: 500px;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 10px;
}

.modal-gallery {
    display: flex;
    gap: 10px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
    opacity: 0.6;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    border: 2px solid #e65100;
}

.modal-price {
    color: #e65100;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

#modalTitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
}

#modalDesc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-meta p {
    margin-bottom: 5px;
    font-size: 1rem;
    color: #444;
}

#modalCategory,
#modalPajak {
    color: #e65100;
    font-weight: 600;
}

.btn-whatsapp-full {
    background: #FF4500;
    /* Red-Orange for CTA */
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-top: 20px;
}

/* IMAGE ZOOMING */

/* Zoom Mouse */
#modalMainImg {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

#modalMainImg:active {
    transform: scale(0.98);
}

/* The Background Overlay */
.zoom-overlay {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

/* The Zoomed Image */
.zoom-content {
    margin: auto;
    cursor: zoom-in;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomAnim 0.3s;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Close Button (X) */
.close-zoom {
    position: absolute;
    top: 25px;
    right: 45px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-zoom:hover,
.close-zoom:focus {
    color: #e65100;
    text-decoration: none;
    cursor: pointer;
}

.zoom-content.zoomed-in {
    transform: scale(2.5);
    cursor: zoom-out;
}

.zoom-content.zoomed-in:active {
    cursor: grabbing;
}

/* --------------------------------------- SERVICES SECTION --------------------------------------- */
.services-section {
    background-color: #f4f1ea;
    padding: 80px 5%;
    position: relative;
}

/* Header Right Aligned */
.services-header-right {
    text-align: right;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.services-header-right h2 {
    font-size: 3rem;
    color: #111;
    font-weight: 800;
}

/* --- BENTO GRID LAYOUT --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 0.8fr;
    grid-template-rows: 250px 140px 140px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid Areas Mapping */
.area-tl {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.area-tr {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.area-mid-1 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.area-mid-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.area-bl {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

/* Black CTA Box */

.area-br-img {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.area-br-col {
    grid-column: 4 / 5;
    grid-row: 2 / 4;
}

/* Common Item Styles */
.bento-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Color Blocks */
.color-box.red {
    background-color: #ff2a00;
}

.color-box.orange {
    background-color: #e65100;
}

/* Black CTA Box */
.black-box {
    background-color: black;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.black-box h3 {
    font-size: 1.5rem;
    max-width: 80%;
}

/* --- IMAGE CARDS & HOVER EFFECTS --- */
.img-card {
    position: relative;
    cursor: pointer;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* The Hover Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 81, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.hover-overlay h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

/* Hover State: When hovering the card... */
.img-card:hover img {
    filter: blur(4px);
    transform: scale(1.1);
}

.img-card:hover .hover-overlay {
    opacity: 1;
}

.img-card:hover .hover-overlay h3 {
    transform: translateY(0);
}

/* Button inside Overlay */
.btn-pill-white {
    background: white;
    color: #111;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-pill-white:hover {
    transform: scale(1.05);
}

/* --------------------------------------- CONTACT SECTION --------------------------------------- */

.contact-section {
    background-color: #000;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    max-width: 1100px;
    width: 100%;
}

.contact-visuals {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.visual-card {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.image-card {
    flex: 2;
    background-color: #e65100;
    position: relative;
    min-height: 300px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.8;
}

.solid-card {
    flex: 1;
    background-color: #e65100;
    min-height: 150px;
}

/* RIGHT SIDE FORM */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* FORM ELEMENTS */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e65100;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-black {
    background-color: black;
    color: white;
    padding: 12px 40px;
    border-radius: 30px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-black:hover {
    transform: scale(1.05);
    background-color: #333;
}

.form-note-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
}

.form-instruction {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    text-align: right;
    max-width: 300px;
    line-height: 1.4;
}

.form-instruction a {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
}

.form-instruction a:hover {
    text-decoration: underline;
}

/* --------------------------------------- FOOTER SECTION --------------------------------------- */

.main-footer {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

/* --- QUOTE SECTION --- */
.footer-quote {
    position: relative;
    height: 400px;
    background: url('./asset/CONTACTS/quotecontent.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e65100;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

.quote-content p {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
}

/* --- MAIN BLACK AREA --- */
.footer-main {
    background-color: #000;
    color: white;
    padding: 100px 5% 120px 5%;
}

.footer-main a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-main a:hover {
    color: #e65100 !important;
    transform: translateY(-2px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    min-height: 220px;
}

.footer-brand {
    align-self: flex-start;
}

.footer-brand h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 10px 0;
    line-height: 1;
}

.footer-brand p {
    color: #888;
    font-size: 1.3rem;
    max-width: 300px;
    margin: 0;
}

.footer-contact-top {
    align-self: flex-end;
    text-align: right;
}

.contact-phone {
    color: white;
    font-size: 2rem;
    font-weight: 800;
}

.contact-email {
    color: #888;
    font-size: 1.5rem;
}

/* DIVIDER */
.footer-divider {
    border: none;
    border-top: 1px solid #222;
    margin: 40px 0 80px 0;
}

/* --- BOTTOM GRID --- */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr;
    gap: 60px;
}

.footer-col h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.footer-col p,
.footer-col li,
.footer-link-text {
    color: #888;
    font-size: 16px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a i {
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover i {
    color: #e65100;
}

/* --------------------------------------- MOBILE --------------------------------------- */
@media screen and (max-width: 950px) {

    /* NAV BAR */
    .floating-nav {
        width: fit-content;
        left: 90%;
        padding: 15px 20px;
    }

    .hamburger {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: 20px;
        width: 300px;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

        /* Animation stuff */
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        width: 100%;
        text-align: center;
    }

    .btn-contact-mobile {
        background-color: #e65100;
        color: white !important;
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
        display: inline-block;
        font-weight: bold;
    }

    /* HERO SECTION */
    .hero-section {
        height: 60vh;
        background-position: 70% center;
    }

    .brand-logo {
        top: 20px;
        left: 20px;
    }

    .logo-box img {
        width: 70px;
    }

    .text-container {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        margin-top: 65px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-title {
        font-size: 3rem;
    }

    .sub-title {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .slider-arrow {
        display: block;
        font-size: 1.5rem;
        padding: 10px;
    }

    .slider-dots {
        bottom: 30px;
    }

    /* BRAND STRIP */
    .brand-strip {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }

    .brand-card {
        width: 45%;
        height: 80px;
    }

    /* ABOUT SECTION */
    .about-header {
        flex-direction: column;
        gap: 10px;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .about-grid {
        flex-direction: column;
        height: auto;
    }

    .about-left,
    .about-right {
        width: 100%;
        flex: none;
    }

    .image-box.small,
    .image-box.large {
        height: 250px;
        margin-bottom: 0;
        margin-top: 20px;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: -80px;
    }

    /* PRODUCT SECTION */
    .product-nav {
        display: none;
    }

    .product-container {
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
    }

    .product-card {
        min-width: 280px;
        height: 450px;
        scroll-snap-align: center;
    }

    .card-image {
        height: 395px;
    }

    /* MODAL POPUP MOBILE */
    .modal-content {
        width: 95%;
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-body {
        flex-direction: column;
        gap: 20px;
    }

    #modalMainImg {
        width: 100%;
        height: 350px;
    }

    #modalTitle {
        font-size: 1.5rem;
    }

    /* SERVICES SECTION */
    .bento-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .bento-item {
        width: 100%;
        height: 200px;
    }

    .black-box {
        height: auto;
        padding: 40px 30px;
    }

    .color-box {
        display: none;
    }

    /* CONTACT SECTION */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-visuals {
        display: none;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* FOOTER */
    .footer-quote {
        height: 250px;
    }

    .quote-content p {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .footer-top-row {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact-top {
        align-self: flex-start;
        text-align: left;
    }

    .contact-phone {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}