/* ==========================================================
   SEADOO SAFARI SAMOSIR - ORANGE & BLACK THEME STYLESHEET
   ========================================================== */

:root {
    --bg-primary: #0f172a;
    --bg-card: #1e293b;
    --bg-alt: #131c31;
    --accent-orange: #f97316; /* Warna Oranye Utama Sesuai Logo */
    --accent-hover: #ea580c;  /* Warna Oranye Saat Hover */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* --- Navbar Styling --- */
.navbar {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--accent-orange) !important;
    letter-spacing: 1px;
    font-size: 1.25rem;
}

.nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-orange) !important;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95)), url('../img/hero-watersport.jpg') no-repeat center center;
    background-size: cover;
    color: var(--text-main);
    padding: 210px 0 150px;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- General Section Layout --- */
.section-padding {
    padding: 110px 0;
    background-color: var(--bg-primary);
}

.section-padding.bg-light-alt {
    background-color: var(--bg-alt);
}

.section-title {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    text-align: center;
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* --- Card Border & Watersport Style --- */
.watersport-card {
    background: var(--bg-card);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.watersport-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.watersport-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.watersport-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.watersport-card:hover .watersport-img-wrapper img {
    transform: scale(1.08);
}

.watersport-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* --- Features List --- */
.watersport-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.watersport-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.watersport-features li i {
    color: var(--accent-orange);
    margin-right: 10px;
}

/* --- Form Order Styling --- */
.order-form-box {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.form-control {
    background: var(--bg-primary);
    border: 1px solid #334155;
    color: var(--text-main);
    border-radius: 10px;
    padding: 14px 20px;
    height: auto;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--bg-primary);
    border-color: var(--accent-orange);
    color: var(--text-main);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

/* --- Custom Buttons (Warna Oranye Sesuai Permintaan) --- */
.btn-custom {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    border: none;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    color: white;
}

/* --- Footer --- */
footer {
    background-color: #080e1a;
    color: var(--text-muted);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

/* --- Styling Slider Video & Foto Penuh (Hero Section) --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.hero-media-wrapper {
    position: relative;
    width: 100%;
    height: 85vh; /* Tinggi slider menyesuaikan layar */
    min-height: 500px;
    max-height: 750px;
}

.hero-bg-media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Lapisan Gelap Transparan di atas Video/Foto agar Elegan */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4); 
    z-index: 1;
}

/* Pastikan Tombol Navigasi Slider Berada di Atas Media */
.carousel-control-prev, .carousel-control-next {
    z-index: 2;
}