
        :root {
            --primary: #0B1C33; /* Deep Navy */
            --secondary: #162a47; /* Lighter Navy */
            --accent: #C5A059; /* Luxury Gold */
            --accent-hover: #b08d48;
            --text-light: #F4F7F9;
            --text-dark: #333333;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Outfit', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
        }

        .text-gold { color: var(--accent) !important; }
        .bg-navy { background-color: var(--primary) !important; }
        .bg-gold { background-color: var(--accent) !important; }

        /* Buttons */
        .btn-gold {
            background-color: var(--accent); 
            color: white;
            padding: 12px 30px;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            border: 2px solid var(--accent);
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: var(--accent);
            color: white;
        }
        .btn-outline-gold {
            border: 2px solid var(--accent);
            color: var(--accent);
            padding: 10px 25px;
            border-radius: 0;
            transition: all 0.3s ease;
        }
        .btn-outline-gold:hover {
            background-color: var(--accent);
            color: white;
        }

        /* Navbar */
        .navbar {
            transition: all 0.4s ease;
            background: linear-gradient(180deg, rgba(11,28,51,0.9) 100%, rgba(11,28,51,0) 100%);
        }
        .navbar.scrolled {
            background-color: var(--primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        .nav-link:hover::after { width: 100%; }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            min-height: 700px;
            background: url('../image/hero-image.jpg') no-repeat center center/cover;
            position: relative;
            display: flex;
            align-items: center;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, rgba(11,28,51,0.8) 0%, rgba(11,28,51,0.3) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        .hero-title {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        /* Glass Search Bar */
        .search-container {
            position: relative;
            margin-top: -80px; /* Pull up overlap */
            z-index: 10;
            margin-bottom: 80px;
        }
        .search-box {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 4px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-top: 5px solid var(--accent);
        }
        .form-select, .form-control {
            border: 1px solid #eee;
            padding: 12px;
            border-radius: 0;
            font-size: 0.9rem;
        }
        .form-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            color: var(--primary);
        }

        /* Service Cards */
        .service-card {
            background: white;
            padding: 40px 30px;
            transition: all 0.4s ease;
            border: 1px solid #eee;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-bottom: 3px solid var(--accent);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(197, 160, 89, 0.1);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 25px;
            transition: 0.3s;
        }
        .service-card:hover .icon-box {
            background: var(--accent);
            color: white;
        }

        /* Yacht Cards */
        .yacht-card {
            border: none;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
        }
        .yacht-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        .yacht-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .yacht-card:hover .yacht-img-wrapper img {
            transform: scale(1.1);
        }
        .price-tag {
            position: absolute;
            bottom: 20px;
            right: 0;
            background: var(--accent);
            color: white;
            padding: 8px 15px;
            font-weight: 700;
        }
        .feature-list li {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Stats Section */
        .stats-section {
            background: var(--primary);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .stats-bg-icon {
            position: absolute;
            right: -5%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.05;
            color: white;
            width: 400px;
            height: 400px;
        }

        /* Crew/Team Section */
        .crew-member {
            position: relative;
            text-align: center;
        }
        .crew-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent);
            padding: 4px;
            margin-bottom: 20px;
            transition: 0.3s;
        }
        .crew-member:hover .crew-img {
            border-color: var(--primary);
        }

        /* Destinations */
        .dest-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 350px;
            cursor: pointer;
        }
        .dest-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        .dest-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 20px;
            color: white;
            transform: translateY(20px);
            transition: 0.3s;
        }
        .dest-card:hover img { transform: scale(1.1); }
        .dest-card:hover .dest-overlay { transform: translateY(0); }

        /* Footer */
        footer {
            background-color: #050e1a;
            color: #8a99ac;
            padding-top: 80px;
        }
        .footer-heading {
            color: white;
            font-family: var(--font-heading);
            margin-bottom: 25px;
        }
        .footer-link {
            display: block;
            color: #8a99ac;
            margin-bottom: 12px;
            text-decoration: none;
            transition: 0.3s;
        }
        .footer-link:hover { color: var(--accent); padding-left: 5px; }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.8rem; }
            .search-container { margin-top: 0; margin-bottom: 40px; }
            .search-box { margin: 20px; padding: 20px; }
            .section-padding { padding: 50px 0; }
        }
        .section-padding { padding: 100px 0; }
        .section-title {
            margin-bottom: 60px;
            text-align: center;
        }
        .section-title span {
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }
  html, body {
    width: 100%;
    overflow-x: hidden !important;
}
