*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

    :root{
    --primary:#556B2F;     
    --secondary:#C6A769;  
    --light:#F5F5F0;     
    --dark:#2F2F2F;
 }

    h1, h2, h3{
    font-family: 'Playfair Display', serif;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    line-height: 1.6;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

header{
    background:rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);

    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

nav a{
    margin-left:20px;
    text-decoration:none;
    color:#333;
    font-weight:600;
}

.hero{
  height: 90vh;
  background: url("images/sidemen.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-text{
  background: rgba(0,0,0,0.4); /* bikin tulisan kebaca */
  color:white;
  padding:20px 40px;
  border-radius:10px;
}

.cta{
    display:inline-block;
    margin-top:25px;
    padding:16px 34px;
    background:#1f7a63;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.cta:hover{
    background:#145c49;
}


.tour-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
}
.tour-card{
    background:white;
    padding:40px;
    border-radius:20px;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}
.tour-card{
    position: relative;
}

.card-link{
    position: absolute;
    inset: 0;
    z-index: 10;
}
.tour-card{
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.tour-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#1f7a63;
}

.tour-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}


.about{
    background:#f2f5f4;
    padding:120px 0;
    text-align:center;
}


.contact{
    text-align:center;
    padding:80px 0;
}

footer{
    text-align:center;
    padding:30px;
    background:#111;
    color:white;
}
section{
    padding:100px 0;
}
.logo{
    letter-spacing:2px;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.gallery img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:16px;
}
  .slider{
  width:100%;
  overflow:hidden;
}

.slides{
  display:flex;
  animation: slide 12s infinite;
}

.slides img{
  width:100%;
}

@keyframes slide{
  0%{transform:translateX(0);}
  33%{transform:translateX(-100%);}
  66%{transform:translateX(-200%);}
} 


/* ==============================
   REVIEW SECTION (ULTRA LUXURY)
============================== */

.review-section{
    padding:110px 8%;
    background:#f4f7f2;
    text-align:center;
}

.review-title{
    font-size:42px;
    margin-bottom:50px;
}

/* BOX */
.review-box{
    max-width:750px;
    margin:auto;
    background:white;
    padding:60px 50px;
    border-radius:22px;

    /* deeper luxury shadow */
    box-shadow:
        0 25px 70px rgba(0,0,0,0.08),
        0 5px 20px rgba(0,0,0,0.04);
}

.review-text{
    font-size:20px;
    font-style:italic;
    line-height:1.7;
    margin-bottom:20px;
    transition:.4s;
}

.review-name{
    font-weight:700;
    margin-bottom:18px;
    transition:.4s;
}

/* ⭐ ULTRA GOLD STARS */
.stars {
    font-size: 26px;
    margin-bottom: 35px;

    background: linear-gradient(45deg, #D4AF37, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 2px 6px rgba(212,175,55,0.4),
        0 0 12px rgba(255,215,0,0.6);
}



/* BUTTONS LAYOUT */
.review-buttons{
    display:flex;
    gap:18px;
    justify-content:center;
    flex-wrap:wrap;
}

/* BASE BUTTON */
.btn-review{
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
    transition:.35s;
    position:relative;

    /* makes button look raised */
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* GOLD BUTTON (PRIMARY) */
.gold{
    background:linear-gradient(135deg,#D4AF37,#C5A028);
    color:white;
}

/* hover = lift */
.gold:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(197,160,40,0.45);
}

/* click feel */
.gold:active{
    transform:translateY(-2px);
}


/* GHOST LUXURY BUTTON */
.ghost{
    border:2px solid #D4AF37;
    color:#b8962e;
    background:white;
}

/* hover */
.ghost:hover{
    background:#D4AF37;
    color:white;
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(212,175,55,0.35);
}
/* GALLERY LUXURY SLIDER */

.gallery{
    padding:80px 20px;
    background:#f7f7f7;
    text-align:center;
}

.gallery h2{
    font-size:32px;
    margin-bottom:40px;
}

.slider{
    width:90%;
    max-width:1100px;
    margin:auto;
    overflow:hidden;
    border-radius:20px;
}

.slides{
    display:flex;
    width:400%;
    animation:slide 16s infinite;
}

.slides img{
    width:100%;
    height:500px;
    object-fit:cover;
}

/* AUTO SLIDE */
@keyframes slide{

    0%{margin-left:0;}
    20%{margin-left:0;}

    25%{margin-left:-100%;}
    45%{margin-left:-100%;}

    50%{margin-left:-200%;}
    70%{margin-left:-200%;}

    75%{margin-left:-300%;}
    95%{margin-left:-300%;}
}
/* TESTIMONIAL LUXURY */

.testimonials{
    padding:80px 20px;
    background:white;
    text-align:center;
}

.testimonial-slider{
    width:90%;
    max-width:900px;
    margin:auto;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    width:400%;
    animation:testislide 18s infinite;
}

.testimonial{
    width:100%;
    padding:40px;
    font-size:20px;
    line-height:1.6;
}

@keyframes testislide{

    0%{margin-left:0;}
    20%{margin-left:0;}

    25%{margin-left:-100%;}
    45%{margin-left:-100%;}

    50%{margin-left:-200%;}
    70%{margin-left:-200%;}

    75%{margin-left:-300%;}
    95%{margin-left:-300%;}
}
/* TRUST BUILDER LUXURY */

.trust{
    display:flex;
    flex-direction:column; /* bikin ke bawah */
    align-items:center;
    gap:20px;
    margin-top:40px;
}

.trust-item{
    background:white;
    padding:18px 28px;
    border-radius:12px;
    width:320px;
    text-align:center;
    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

.trust-item:hover{
    transform:translateY(-5px);
}/* TOUR SECTION */

.tours{
    padding:100px 40px;
    background:#F5F5F0;
    text-align:center;
}

.tours h2{
    font-size:36px;
}

.tour-sub{
    color:#777;
    margin-bottom:60px;
}

/* GRID */

.tour-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:40px;
}

/* CARD */

.tour-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:0.4s;
    position:relative;
}

.tour-card:hover{
    transform:translateY(-12px);
}

/* IMAGE */

.tour-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

/* INFO */

.tour-info{
    padding:25px;
    text-align:left;
}

.tour-info h3{
    margin-bottom:10px;
}

.tour-info p{
    color:#666;
    font-size:15px;
}

/* PRICE + BUTTON */

.tour-bottom{
    margin-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price{
    font-weight:700;
    color:#556B2F;
}

/* BUTTON */

.book-btn{
    background:#556B2F;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.book-btn:hover{
    background:#C6A769;
}

/* BADGE */

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#C6A769;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}
/* ULTRA TOUR */

.tours{
    padding:120px 40px;
    background:#F5F5F0;
    text-align:center;
}

.tour-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:50px;
}

/* CARD */

.tour-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.06);
    transition:0.4s;
}

.tour-card:hover{
    transform:translateY(-15px);
}

/* IMAGE */

.tour-image{
    position:relative;
}

.tour-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* BADGES */

.tour-badges{
    position:absolute;
    top:15px;
    left:15px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.tour-badges span{
    background:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

/* INFO */

.tour-info{
    padding:28px;
    text-align:left;
}

.price{
    font-size:20px;
    font-weight:700;
    color:#556B2F;
}

.per{
    font-size:13px;
    color:#777;
}

/* BUTTON */

.book-btn{
    background:#556B2F;
    color:white;
    padding:12px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.book-btn:hover{
    background:#C6A769;
}
/* HERO */

.experience-hero{
    height:70vh;
    background-image:url("images/sidemen-ricefield-experience.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;

}

.hero-overlay{
    background:rgba(0,0,0,0.45);
    color:white;
    text-align:center;
    padding:60px;
    border-radius:20px;
}

.hero-overlay h1{
    font-size:48px;
    margin-bottom:10px;
}


/* INTRO */

.intro{
    max-width:900px;
    margin:auto;
    padding:80px 20px;
    text-align:center;
}

.intro h2{
    font-size:34px;
    margin-bottom:20px;
}



/* CARDS */

.experience-section{
    padding:80px 20px;
    background:#f6f8f5;
}

.section-title{
    text-align:center;
    font-size:36px;
    margin-bottom:60px;
}

.card-container{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    justify-content:center;
}


.experience-card{
    background:white;
    padding:40px;
    width:320px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
    transition:0.4s;
}

.experience-card:hover{
    transform:translateY(-12px);
}


/* FEATURED CARD */

.featured{
    transform:scale(1.05);
    border:2px solid #c6a76d;
}

.badge{
    position:absolute;
    top:-12px;
    right:20px;
    background:#c6a76d;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
}


/* PRICE */

.price{
    font-size:22px;
    margin:20px 0;
    color:#2f3e2c;
}

.info{
    font-size:14px;
    opacity:0.7;
}


/* BUTTON */

.btn{
    display:inline-block;
    margin-top:10px;
    padding:12px 26px;
    background:#2f3e2c;
    color:white;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.btn:hover{
    background:#c6a76d;
}



/* TRUST */

.trust{
    padding:80px 20px;
    text-align:center;
}

.trust-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}


/* NOTE */
.experience-section p strong{
    color:#2f6f4f;
}

/* ==============================
   PAYPAL SECTION
============================== */
.payment-section{
    padding:80px 20px;
    background:#f4f7f2;
}


.payment-box{
    max-width:700px;
    margin:auto;
    background:white;
    padding:50px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.payment-box h2{
    font-size:32px;
    margin-bottom:15px;
}

.payment-box p{
    line-height:1.7;
    margin-bottom:25px;
}

/* BUTTON */
.paypal-btn{
    display:inline-block;
    padding:16px 32px;
    background:#0070ba;
    color:white;
    font-weight:700;
    border-radius:12px;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,112,186,0.35);
}

.paypal-btn:hover{
    transform:translateY(-4px);
}

/* NOTE */
.payment-note{
    display:block;
    margin-top:18px;
    font-size:14px;
    opacity:.7;
}

@media(max-width:768px){

}

    .payment-section{
        padding:60px 16px;
    }

    .payment-box{
        padding:35px 20px;
    }

    .payment-box h2{
        font-size:26px;
    }


body{
    overflow-x:hidden;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:white;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
}
.logo img{
    height:48px;
    width:auto;
}
nav{
    display:flex;
    gap:34px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#c6a55c; /* gold hover */
}
.hamburger{
    display:none;
    font-size:30px;
    cursor:pointer;
}
@media(max-width:768px){

}

    nav{
        position:absolute;
        top:75px;
        right:0;
        background:white;
        flex-direction:column;
        width:100%;
        text-align:center;

        max-height:0;
        overflow:hidden;

        transition:.4s;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    nav.active{
        max-height:320px;
        padding:20px 0;
    }

    .hamburger{
        display:block;
    }

@media(max-width:768px){

}

nav{
    display:none;
}

nav.active{
    display:flex;
    flex-direction:column;
}

.hamburger{
    display:block;
}
    .trust{
    padding:80px 8%;
    background:#f6f8f4;
    text-align:center;
}

.trust h2{
    font-size:36px;
    margin-bottom:40px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    max-width:1200px;
    margin:auto;
}

.trust-grid div{
    background:white;
    padding:18px 16px;
    border-radius:14px;
    font-weight:600;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
}


@media(max-width:768px){
}
    .trust-grid{
        grid-template-columns:1fr;
    }

    .trust-grid div{
        text-align:left;
        font-size:16px;
    }

    .trust{
        padding:60px 20px;
    }


/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* =========================
   NAVBAR
========================= */
header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

header .logo img {
    height: 50px;
}

header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

header nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

header nav a:hover {
    color: #f27a1a;
}

/* =========================
   HERO
========================= */
.lunch-hero {
    position: relative;
    min-height: 75vh;
    background: url('images/local-lunch-experience.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0,0,0,0.45);
    padding: 40px 25px;
    max-width: 850px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.hero-overlay .back-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #f27a1a;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.hero-overlay .back-btn:hover {
    background: #d96b13;
}

/* =========================
   CONTENT
========================= */
.lunch-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Section titles */
.lunch-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #f27a1a;
}

.lunch-content h3 {
    font-size: 1.6rem;
    margin: 25px 0 15px;
    color: #333;
}

/* Paragraph */
.lunch-content p {
    margin-bottom: 18px;
    color: #555;
}

/* =========================
   EXPERIENCE CARDS
========================= */
.lunch-inclusions, .experience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.lunch-inclusions .inclusion-list li,
.experience-list li {
    background: #fff;
    padding: 20px;
    flex: 1 1 250px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    transition: 0.3s;
    list-style: none;
}

.lunch-inclusions .inclusion-list li:hover,
.experience-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.lunch-inclusions .inclusion-list li strong {
    display: block;
    margin-bottom: 5px;
    color: #f27a1a;
}

/* =========================
   BUTTONS
========================= */
.cta-btn {
    display: inline-block;
    padding: 16px 35px;
    background: #f27a1a;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #d96b13;
}

.secondary-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    border: 2px solid #f27a1a;
    color: #f27a1a;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: #f27a1a;
    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px){

}
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .lunch-content h2 {
        font-size: 1.8rem;
    }

    .lunch-inclusions, .experience-list {
        flex-direction: column;
    }

    header nav {
        flex-wrap: wrap;
        gap: 10px;
    }

/* Navbar desktop fix */
@media (min-width: 1024px) {

}
    header .container nav {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    header .container nav a {
        margin: 0 !important;
    }

/* =========================
   FIX NAVBAR & HERO DESKTOP
========================= */
@media (min-width: 1024px){

}
    /* Navbar desktop */
    header .container nav {
        display: flex !important;      /* pastikan flex aktif */
        flex-wrap: wrap !important;    /* menu panjang turun bila perlu */
        gap: 20px !important;          /* jarak antar menu */
    }

    header .container nav a {
        margin: 0 !important;          /* hapus margin-left lama agar gap bekerja */
    }

    /* Hero overlay desktop */
    .lunch-hero .hero-overlay {
        max-width: 1100px !important;  /* lebih lebar untuk desktop */
        padding: 50px 50px !important; /* lebih lega */
        border-radius: 15px !important;
    }

    .lunch-hero .hero-overlay h1 {
        font-size: 3.5rem !important;   /* judul lebih besar di desktop */
        line-height: 1.2 !important;
    }

    .lunch-hero .hero-overlay p {
        font-size: 1.5rem !important;   /* subtitle lebih besar */
        line-height: 1.4 !important;
    }

@media (min-width: 1024px){
    
}

    header.container nav,
    header.container nav a {
        all: unset; /* reset semua property untuk memastikan bersih */
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        margin: 0 !important;
    }

    .lunch-hero .hero-overlay {
        max-width: 1100px !important;
        padding: 50px 50px !important;
        border-radius: 15px !important;
    }

    .lunch-hero .hero-overlay h1 {
        font-size: 3.5rem !important;
        line-height: 1.2 !important;
    }

    .lunch-hero .hero-overlay p {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
    }
/* ===== PREMIUM FLOATING WA ===== */

.floating-wa-pro {
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    font-size:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    transition:all 0.3s ease;
    z-index:999;
}

.floating-wa-pro:hover {
    transform:scale(1.1);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

/* Pulse animation subtle */

@keyframes pulseWA {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.floating-wa-pro {
    animation: pulseWA 3s infinite;
}
/* ===== SIDEMEN RIDE PREMIUM ===== */

.ride-hero {
    text-align:center;
    padding:80px 20px 50px;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.ride-hero h2 {
    font-size:34px;
    margin-bottom:10px;
    letter-spacing:1px;
}

.ride-hero p {
    opacity:0.75;
    font-size:18px;
}

.ride-card-pro {
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    max-width:750px;
    margin:40px auto;
}

.ride-card-pro:hover {
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,0.09);
}

.ride-destination {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #f1f1f1;
}

.ride-destination:last-child {
    border-bottom:none;
}

.ride-destination span {
    font-size:13px;
    opacity:0.6;
}

.ride-price {
    font-weight:600;
    font-size:16px;
}

.ride-rating {
    font-size:14px;
    opacity:0.7;
}

.ride-cta {
    display:inline-block;
    margin-top:25px;
    padding:14px 28px;
    border-radius:50px;
    background:#556B2F;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.ride-cta:hover {
    background:#3e4f22;
    transform:scale(1.05);
}
/* ===== SCOOTER PREMIUM ===== */

.scooter-section {
    background:#f8fafc;
    padding:80px 20px;
    text-align:center;
}

.scooter-card-pro {
    background:#ffffff;
    max-width:650px;
    margin:40px auto;
    padding:35px;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    transition:0.3s;
}

.scooter-card-pro:hover {
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.scooter-price {
    font-size:22px;
    font-weight:700;
    margin:20px 0;
}

.scooter-features {
    text-align:left;
    margin-top:20px;
    line-height:1.8;
    font-size:15px;
}

.scooter-cta {
    display:inline-block;
    margin-top:25px;
    padding:14px 28px;
    border-radius:50px;
    background:#000;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.scooter-cta:hover {
    background:#333;
    transform:scale(1.05);
}
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 120px; /* supaya tidak terlalu bawah */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-social a {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.floating-social a:hover {
    transform: translateY(-5px);
    background: #000;
    color: #fff;
}


.floating-social a {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
}

.main-footer {
    background: #0B4F6C;
    color: white;
    text-align: center;
    padding: 25px 15px;
    margin-top: 50px;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
}



