/* =============================================================
   MODERN PROFESSIONAL UI 2026 — SN RENTAL GROUP
   style.css
============================================================= */


/* =============================================================
   CSS VARIABLES
============================================================= */

:root {
    /* Brand Colors */
    --primary:       #dc2626;
    --primary-light: #ef4444;
    --primary-soft:  #fee2e2;

    /* Dark */
    --dark:          #0f172a;
    --dark-soft:     #1e293b;

    /* Text */
    --text:          #334155;
    --muted:         #64748b;

    /* Background */
    --white:         #ffffff;
    --bg:            #f8fafc;
    --bg-soft:       #f1f5f9;

    /* Utility */
    --success:       #16a34a;
    --border:        #e2e8f0;

    /* Shadows */
    --shadow-sm:     0 4px 12px rgba(15, 23, 42, .05);
    --shadow-md:     0 12px 30px rgba(15, 23, 42, .08);
    --shadow-lg:     0 20px 50px rgba(15, 23, 42, .12);

    /* Layout */
    --radius:        28px;
    --transition:    all .35s ease;
}


/* =============================================================
   RESET
============================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}


/* =============================================================
   SECTION GLOBAL
============================================================= */

section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(239, 68, 68, .06);
    filter: blur(35px);
}

section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(220, 38, 38, .04);
    filter: blur(35px);
}

section .container {
    position: relative;
    z-index: 2;
}


/* =============================================================
   HEADER
============================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 5px 25px rgba(15, 23, 42, .05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}


/* =============================================================
   LOGO
============================================================= */

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 18px;
    background: #fff;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
}

.logo-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
}

.logo-text h2 span {
    color: var(--primary);
}

.logo-text p {
    margin-top: 2px;
    font-size: 12px;
    letter-spacing: .5px;
    color: var(--muted);
}


/* =============================================================
   MENU
============================================================= */

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a,
.dropdown-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--dark-soft);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.menu a i,
.dropdown-btn i {
    font-size: 14px;
}

.menu a::after,
.dropdown-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transition: var(--transition);
}

.menu a:hover,
.dropdown-btn:hover {
    color: var(--primary);
}

.menu a:hover::after,
.dropdown-btn:hover::after {
    width: 100%;
}


/* =============================================================
   DROPDOWN
============================================================= */

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 22px;
    padding: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}


/* =============================================================
   LOGIN BUTTON
============================================================= */

.login-btn,
.login-btn:link,
.login-btn:visited,
.login-btn:active {
    margin-left: 12px;
    padding: 10px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff !important;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, .15);
    box-shadow: 0 10px 25px rgba(220, 38, 38, .45);
    opacity: 1;
    position: relative;
    z-index: 10;
    text-decoration: none !important;
    transition: all .25s ease;
}

.login-btn:hover {
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    box-shadow: 0 15px 35px rgba(185, 28, 28, .55);
}

.login-btn i {
    color: #fff;
    font-size: 14px;
}


/* =============================================================
   MOBILE TOGGLE BUTTON
============================================================= */

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(220, 38, 38, .22);
}


/* =============================================================
   BUTTONS
============================================================= */

.btn-primary,
.btn-secondary,
.btn-detail,
.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    padding: 15px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 12px 25px rgba(220, 38, 38, .20);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(220, 38, 38, .30);
}

.btn-secondary {
    padding: 15px 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--border);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    background: #fff;
}

.btn-detail {
    padding: 14px 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.btn-detail:hover {
    background: var(--dark);
    color: #fff;
}

.btn-wa {
    padding: 14px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 12px 25px rgba(34, 197, 94, .22);
}

.btn-wa:hover {
    transform: translateY(-4px);
}


/* =============================================================
   HERO
============================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    background:
        linear-gradient(rgba(15, 23, 42, .72), rgba(15, 23, 42, .75)),
        url('https://images.unsplash.com/photo-1493238792000-8113da705763?q=80&w=1600&auto=format&fit=crop')
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(239, 68, 68, .18), transparent 35%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.hero h1 {
    margin-bottom: 24px;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.hero h1 span {
    color: #fecaca;
}

.hero p {
    max-width: 720px;
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.9;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}


/* =============================================================
   SECTION TITLE
============================================================= */

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.section-title h2 {
    margin-bottom: 18px;
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
}

.section-title p {
    max-width: 760px;
    margin: auto;
    color: var(--muted);
    line-height: 1.9;
}


/* =============================================================
   CARD GLOBAL
============================================================= */

.fitur-card,
.produk-card,
.contact-card,
.stat-box,
.booking-card,
.aturan-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.fitur-card:hover,
.produk-card:hover,
.contact-card:hover,
.stat-box:hover,
.booking-card:hover {
    transform: translateY(-10px);
    border-color: #fecaca;
    box-shadow:
        0 25px 50px rgba(220, 38, 38, .10),
        0 8px 20px rgba(15, 23, 42, .06);
}


/* =============================================================
   FITUR / KEUNGGULAN
============================================================= */

.fitur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fitur-card {
    padding: 38px;
}

.fitur-card i,
.fitur-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 32px;
    box-shadow: 0 12px 25px rgba(220, 38, 38, .22);
}

.fitur-card h3 {
    margin-bottom: 14px;
    font-size: 25px;
    color: var(--dark);
}

.fitur-card p {
    color: var(--muted);
}


/* =============================================================
   PRODUK / KENDARAAN
============================================================= */

.produk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.produk-card {
    overflow: hidden;
}

.produk-image {
    position: relative;
    overflow: hidden;
}

.produk-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .5s ease;
}

.produk-card:hover img {
    transform: scale(1.05);
}

.produk-rating {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: #f59e0b;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .08);
}

.produk-content {
    padding: 30px;
}

.kategori {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.produk-content h3 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

.produk-content p {
    color: var(--muted);
}

.produk-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 22px;
}

.produk-info div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.produk-info i {
    color: var(--primary);
}

.harga {
    margin: 24px 0;
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Harga Wrapper */
.harga-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.harga-item {
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(15, 23, 42, .04);
}

.harga-item span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.harga-item h4 {
    font-size: 24px;
    font-weight: 800;
    color: #16a34a;
}

.produk-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.produk-buttons .btn-primary,
.produk-buttons .btn-detail {
    flex: 1;
}


/* =============================================================
   PAGINATION
============================================================= */

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 60px;
}

.pagination a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pagination a:hover {
    transform: translateY(-4px);
}

.pagination .active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
}


/* =============================================================
   STATISTIK
============================================================= */

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-box {
    padding: 40px 25px;
    text-align: center;
}

.stats-section .stat-box i {
    margin-bottom: 18px;
    font-size: 38px;
    color: var(--primary);
}

.stat-box h3 {
    margin-bottom: 12px;
    font-size: 54px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    color: var(--muted);
}


/* =============================================================
   TESTIMONI
============================================================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    position: relative;
    padding: 35px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(248, 250, 252, .92));
    border: 1px solid rgba(226, 232, 240, .8);
    backdrop-filter: blur(18px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, .06);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, .10);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.testimonial-top img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .08);
}

.testimonial-top h3 {
    margin-bottom: 4px;
    font-size: 20px;
    color: var(--dark);
}

.testimonial-top span {
    font-size: 14px;
    color: var(--muted);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    color: #f59e0b;
    font-size: 18px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
}


/* =============================================================
   MAPS
============================================================= */

.maps {
    overflow: hidden;
    padding: 12px;
    border-radius: 36px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.maps iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 24px;
}

.maps-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.maps-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.maps-card:hover {
    transform: translateY(-6px);
}

.maps-card i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 24px;
}

.maps-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: var(--dark);
}

.maps-card p {
    line-height: 1.8;
    color: var(--muted);
}


/* =============================================================
   KONTAK
============================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    padding: 40px 35px;
    text-align: center;
}

.contact-card i {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 34px;
    box-shadow: 0 12px 25px rgba(220, 38, 38, .22);
}

.contact-card h3 {
    margin-bottom: 14px;
    font-size: 25px;
    color: var(--dark);
}

.contact-card p {
    color: var(--muted);
}


/* =============================================================
   CARA BOOKING
============================================================= */

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.booking-card {
    position: relative;
    overflow: hidden;
    padding: 40px 30px;
}

.booking-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 52px;
    font-weight: 800;
    color: rgba(220, 38, 38, .08);
}

.booking-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 30px;
    box-shadow: 0 15px 30px rgba(220, 38, 38, .22);
}

.booking-card h3 {
    margin-bottom: 14px;
    font-size: 24px;
    color: var(--dark);
}

.booking-card p {
    line-height: 1.9;
    color: var(--muted);
}

.booking-button {
    margin-top: 60px;
    text-align: center;
}


/* =============================================================
   ATURAN RENTAL
============================================================= */

.aturan-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 70px;
}

.aturan-card {
    padding: 35px;
    border-radius: 30px;
}

.aturan-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.aturan-title i {
    color: var(--primary);
}

.aturan-list {
    list-style: none;
}

.aturan-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.aturan-list li::before {
    content: '✓';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}


/* =============================================================
   MODAL BOOKING
============================================================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    overflow: auto;
    padding: 20px;
}

.modal-content {
    width: 92%;
    max-width: 720px;
    margin: 4% auto;
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    animation: fadeIn .25s ease;
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.close {
    font-size: 26px;
    cursor: pointer;
    color: var(--dark);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Input, Select, Textarea */
.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    transition: .2s;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .15);
}

.modal-form textarea {
    grid-column: 1 / -1;
    min-height: 80px;
    resize: vertical;
}

/* Label */
.modal-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Full Width */
.full-width {
    grid-column: 1 / -1;
}

/* Upload Title */
.title-upload {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Submit Button */
.btn-submit {
    margin-top: 15px;
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
}

.btn-submit:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}


/* =============================================================
   MAP SECTION (DALAM MODAL)
============================================================= */

.map-section {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.map-title {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.btn-location {
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--dark);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    margin-top: 8px;
}

.btn-location:hover {
    background: #1e293b;
}


/* =============================================================
   LOKASI INPUT
============================================================= */

.input-lokasi {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    color: #111827;
    outline: none;
    transition: .3s ease;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.input-lokasi::placeholder {
    color: #9ca3af;
}

.input-lokasi:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .15);
}


/* =============================================================
   MODAL DETAIL KENDARAAN
============================================================= */

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 12px 25px rgba(220, 38, 38, .22);
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.modal-body {
    padding: 45px;
}

.modal-body h2 {
    margin: 18px 0;
    font-size: 48px;
    color: var(--dark);
}

.modal-harga {
    margin-bottom: 24px;
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-deskripsi {
    margin-bottom: 40px;
    line-height: 2;
    color: var(--muted);
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.modal-title {
    margin-bottom: 22px;
    font-size: 28px;
    color: var(--dark);
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.fasilitas-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.fasilitas-item i {
    color: #22c55e;
}

.modal-booking {
    display: inline-flex;
}


/* =============================================================
   FOOTER
============================================================= */

footer {
    padding-top: 90px;
    background: #020617;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-box h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-box p,
.footer-box a {
    line-height: 2;
    color: #94a3b8;
    transition: var(--transition);
}

.footer-box a:hover {
    color: #fff;
}

.social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transition: var(--transition);
}

.social a:hover {
    transform: translateY(-5px);
}

.copyright {
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #94a3b8;
}

.copyright a {
    color: #fff;
    font-weight: 700;
}

.copyright a:hover {
    color: #fecaca;
}


/* =============================================================
   FLOATING WHATSAPP BUTTON
============================================================= */

.wa-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(34, 197, 94, .28);
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.08);
}


/* =============================================================
   ANIMATION
============================================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =============================================================
   RESPONSIVE — MAX 992px
============================================================= */

@media (max-width: 992px) {

    .hero h1 {
        font-size: 56px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 25px;
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(18px);
        border-top: 1px solid var(--border);
        box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu a,
    .dropdown-btn {
        width: 100%;
        justify-content: space-between;
        padding: 16px 18px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid var(--border);
    }

    .menu a::after,
    .dropdown-btn::after {
        display: none;
    }

    .menu a:hover,
    .dropdown-btn:hover {
        background: var(--bg-soft);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8fafc;
        border-radius: 18px;
        box-shadow: none;
    }

    .dropdown.active .dropdown-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-wa {
        width: 100%;
        justify-content: center;
    }
}


/* =============================================================
   RESPONSIVE — MAX 768px
============================================================= */

@media (max-width: 768px) {

    section {
        padding: 90px 0;
    }

    .hero {
        text-align: center;
    }

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

    .hero h1 {
        font-size: 44px;
    }

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

    .hero-badge {
        padding: 10px 18px;
        font-size: 12px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .maps iframe {
        height: 380px;
    }

    .testimonial-card,
    .booking-card,
    .aturan-card {
        padding: 28px;
    }

    .booking-number {
        font-size: 42px;
    }

    .booking-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .booking-card h3,
    .aturan-title {
        font-size: 20px;
    }

    .modal-image {
        height: 280px;
    }

    .modal-body {
        padding: 28px;
    }

    .modal-body h2 {
        font-size: 34px;
    }

    .modal-harga {
        font-size: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
    }
}


/* =============================================================
   RESPONSIVE — MAX 600px
============================================================= */

@media (max-width: 600px) {

    .hero h1 {
        font-size: 36px;
    }

    .produk-grid,
    .fitur-grid,
    .contact-grid,
    .modal-grid,
    .fasilitas-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .produk-content,
    .fitur-card,
    .contact-card {
        padding: 24px;
    }

    .produk-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-detail {
        width: 100%;
    }

    .stat-box h3 {
        font-size: 42px;
    }

    .maps iframe {
        height: 300px;
    }

    .pagination a {
        width: 46px;
        height: 46px;
    }

    .harga-item h4 {
        font-size: 20px;
    }

    .logo-img {
        width: 48px;
        height: 48px;
    }

    .logo-text h2 {
        font-size: 22px;
    }

    .logo-text p {
        font-size: 11px;
    }
}