:root {
    --primary-color: #0A2540; /* Deep Navy */
    --secondary-color: #006B7D; /* Teal/Ocean */
    --accent-color: #D4AF37; /* Champagne Gold */
    --accent-hover: #b5952f;
    --text-color: #4A5568;
    --light-bg: #F8FAFC;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-playfair {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.tracking-wide {
    letter-spacing: 1px;
}

.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-light-50 { color: rgba(255, 255, 255, 0.7); }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }

/* Buttons */
.btn {
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary { 
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 107, 125, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}
.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 12px;
    transition: color 0.3s;
    font-size: 1rem;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../img/hero.jpg') center/cover no-repeat;
    animation: slowZoom 20s infinite alternate;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Headings */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}
.text-start.section-title::after {
    left: 0;
    transform: none;
}

/* Feature Icons */
.feature-icon-box {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}
.feature-icon-box:hover {
    transform: translateY(-5px);
}
.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* Cards */
.trip-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    background: #fff;
}
.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.trip-card img {
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.trip-card:hover img {
    transform: scale(1.05);
}
.trip-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Speed Boat Section */
.speedboat-section {
    background: var(--light-bg);
    padding: 100px 0;
    position: relative;
}
.speedboat-img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.15);
}
.premium-list .list-group-item {
    font-size: 1.05rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
}
.testimonial-card .fas.fa-quote-left {
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
    padding-bottom: 10px;
}
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Page Headers */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(rgba(10,37,64,0.7), rgba(10,37,64,0.9));
    z-index: 1;
}
.page-header .container {
    position: relative;
    z-index: 2;
}

/* Contact Info Box */
.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
