/* =========================================
   1. GLOBAL VARIABLES & TYPOGRAPHY
   ========================================= */
:root {
    --primary-blue: #007bff;
    --primary-dark: #0056b3;
    --primary: #0f172a; /* Deep Navy */
    --accent: #06b6d4; /* Electric Cyan */
    --accent-hover: #0891b2;
    --light: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #f1f5f9;
    --text-grey: #4a5568;
    --bg-light: #f8f9fa;
    --gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 123, 255, 0.15);
}

body {
    position: relative;
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-grey);
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   2. NAVIGATION
   ========================================= */
.navbar {
    background: rgba(15, 23, 42, 0.1); 
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.4s ease;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.solid-nav {
    background: rgba(15, 23, 42, 1) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: none;
}

.navbar-brand {
    font-size: 1.6rem;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.agent-pill {
    background: #f59e0b;
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

/* =========================================
   3. HERO SECTION
   ========================================= */
#home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.8));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(6, 182, 212, 0.5));
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.6);
    color: white;
    text-decoration: none;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.wave-bottom .shape-fill {
    fill: var(--light);
}

.wave-bottom.transition-dark .shape-fill {
    fill: var(--primary);
}

/* =========================================
   4. TOURS SECTION
   ========================================= */
.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tour-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-img-wrapper img {
    transform: scale(1.1);
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.4rem;
    color: var(--accent-hover);
    margin-bottom: 10px;
    font-weight: 700;
}

.tour-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.tour-price {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #3b82f6;
}

.tour-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: #94a3b8;
}

.book-btn {
    background: var(--gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.book-btn:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.6);
}

/* =========================================
   5. GALLERY SECTION
   ========================================= */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-icon { color: white; font-size: 2rem; }

/* =========================================
   6. ABOUT US SECTION
   ========================================= */
#about {
    background-color: white;
}

.about-img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--light);
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    list-style: none;
    font-weight: 600;
    color: var(--text-dark);
}

.custom-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* =========================================
   7. CONTACT SECTION
   ========================================= */
#contact {
    background: var(--primary);
    color: white;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

#contact .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 12px;
}

#contact .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

#contact .form-control:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.25);
}

.contact-info-item {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--accent);
}

/* =========================================
   8. FOOTER & MODALS
   ========================================= */
footer {
    background: #020617;
    padding: 30px 0;
    color: #64748b;
    font-size: 0.9rem;
}

.modal {
    overflow-y: auto !important; 
}
body.modal-open {
    overflow: hidden; 
    padding-right: 0 !important;
}
.modal-dialog {
    margin: 1.75rem auto;
}
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }
}
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}
.modal-header {
    background: var(--primary);
    color: white;
    border-bottom: none;
    padding: 20px 30px;
}
.modal-title {
    font-family: 'Unbounded', sans-serif;
    color: white;
}
.close { color: white; opacity: 0.8; text-shadow: none; }
.close:hover { color: white; opacity: 1; }
.modal-body { padding: 30px; }

/* Functional Styles */
.jet-ski-capsule {
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#jetSkiQuantitySelect {
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-weight: bold;
    font-family: 'Unbounded', sans-serif;
}

.tour-name-display {
    background: white;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    border-left: none;
}

/* Calendar & Forms */
.available-date {
    cursor: pointer;
    background-color: #f0f9ff;
    transition: all 0.2s;
}
.available-date:hover {
    background-color: #cffafe !important;
    filter: brightness(0.95);
}
.selected-date-highlight {
    background-color: var(--accent) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
}
.selected-date-highlight .fc-daygrid-day-number {
    color: #ffffff !important;
}
.fc-theme-standard td, .fc-theme-standard th {
    border-color: #e2e8f0 !important;
}

.passenger-form, .passenger-block {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.remove-ski-btn, .remove-passenger-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
    z-index: 10;
}
.remove-ski-btn:hover, .remove-passenger-btn:hover {
    background: #dc2626;
}

.lightbox-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 1060; 
    background: white;
    color: var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.lightbox-close-btn:hover {
    transform: rotate(90deg);
    color: var(--accent);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-title span { display: inline-block; }
    .section-title { font-size: 2rem; }
}