:root {
            --ocean-blue: #4a9eff;
            --tropical-teal: #26d0ce;
            --sunset-orange: #ff6b35;
            --coral-pink: #ff8c94;
            --deep-navy: #0f1419;
            --dark-bg: #1a1f2e;
            --darker-bg: #141829;
            --card-bg: #242b3d;
            --text-primary: #e2e8f0;
            --text-secondary: #94a3b8;
            --border-color: #334155;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--deep-navy);
            color: var(--text-primary);
            scroll-behavior: smooth;
        }

        /* Custom Navbar */
        .navbar-custom {
            background: linear-gradient(135deg, #1a1f2e 0%, #141829 100%);
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }

        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--tropical-teal) !important;
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: var(--deep-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 4rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            animation: slideInDown 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.7rem;
            color: var(--tropical-teal);
            font-weight: 400;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        @keyframes slideInDown {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .btn-cta {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c94 100%);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        @keyframes pulse {
            0% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); }
            50% { box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6); }
            100% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); }
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        /* Section Backgrounds */
        .section-dark {
            background-color: var(--dark-bg);
        }

        .section-darker {
            background-color: var(--deeper-navy);
        }

        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            color: white;
            position: relative;
            margin-bottom: 3rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c94 100%);
            border-radius: 2px;
        }

        /* Cards */
        .card-custom {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .card-custom:hover {
            transform: translateY(-10px);
        }

        .card-custom .card-body {
            color: var(--text-primary);
        }

        /* Boat Specs */
        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-label {
            font-weight: bold;
            color: var(--text-primary);
        }

        .spec-value {
            color: var(--ocean-blue);
        }

        /* Fish Tags */
        .fish-tag {
            background: linear-gradient(135deg, #4a9eff 0%, #26d0ce 100%);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-align: center;
            font-weight: bold;
            transition: all 0.3s ease;
            margin: 0.25rem;
            display: inline-block;
        }

        .fish-tag:hover {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c94 100%);
            transform: scale(1.05);
        }

        /* Pricing Cards */
        .pricing-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c94 100%);
        }

        .pricing-card .card-body {
            color: var(--text-primary);
            padding-top: 2rem;
        }

        .price {
            font-size: 2.5rem;
            color: var(--ocean-blue);
            font-weight: bold;
        }

        .pricing-features {
            color: var(--text-secondary);
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--tropical-teal);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* Contact Section */
        .contact-gradient {
            background: linear-gradient(135deg, #4a9eff 0%, #26d0ce 100%);
        }

        .contact-icon {
            font-size: 1.5rem;
            width: 30px;
            text-align: center;
        }

        /* Forms */
        .form-control-custom {
            background-color: var(--darker-bg);
            border: 2px solid var(--border-color);
            color: var(--text-primary);
        }

        .form-control-custom:focus {
            background-color: var(--darker-bg);
            border-color: var(--tropical-teal);
            color: var(--text-primary);
            box-shadow: none;
        }

        .form-label {
            color: var(--text-primary);
            font-weight: bold;
        }

        /* Footer */
        .footer-custom {
            background-color: var(--deep-navy);
            color: var(--text-secondary);
            border-top: 1px solid var(--border-color);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
        }

        /* Highlight class */
        .highlight {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c94 100%);
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
        }

        /* Service icons */
        .service-icon {
            font-size: 3rem;
        }