 :root {
            --ocean-blue: #0A4D68;
            --ocean-light: #088395;
            --ocean-bright: #05BFDB;
            --sand: #F8F6F0;
            --white: #FFFFFF;
            --text-dark: #1A1A1A;
            --text-light: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Raleway', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--sand);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1.5rem 5%;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--ocean-blue);
            letter-spacing: -0.5px;
            text-decoration: none;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--ocean-light);
        }

        /* Page Header */
        .page-header {
            padding: 10rem 5% 6rem;
            text-align: center;
            background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-light) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,200 Q300,150 600,200 T1200,200 L1200,400 L0,400 Z" fill="rgba(5,191,219,0.1)"/></svg>') no-repeat center;
            background-size: cover;
            opacity: 0.3;
        }

        .page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            font-size: 1.3rem;
            opacity: 0.95;
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Boats Section */
        .boats-section {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .boat-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            margin-bottom: 4rem;
            box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .boat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
        }

        .boat-card:nth-child(even) .boat-content-wrapper {
            flex-direction: row-reverse;
        }

        .boat-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .boat-image {
            min-height: 450px;
            background: linear-gradient(135deg, var(--ocean-light), var(--ocean-bright));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .boat-image::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 4s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-30%, -30%) scale(1.1); }
        }

        .boat-image-placeholder {
            font-size: 6rem;
            z-index: 1;
            position: relative;
        }

        .boat-details {
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .boat-number {
            display: inline-block;
            background: var(--ocean-bright);
            color: var(--white);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .boat-details h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--ocean-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .boat-type {
            color: var(--ocean-light);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .boat-description {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .boat-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--sand);
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .spec-item:hover {
            transform: translateX(5px);
        }

        .spec-icon {
            width: 45px;
            height: 45px;
            background: var(--ocean-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .spec-info h4 {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 0.2rem;
        }

        .spec-info p {
            font-weight: 600;
            color: var(--ocean-blue);
            font-size: 1rem;
        }

        .boat-price {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .price-amount {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--ocean-blue);
        }

        .price-period {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .btn-reserve {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--ocean-blue);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-align: center;
            border: 2px solid var(--ocean-blue);
        }

        .btn-reserve:hover {
            background: transparent;
            color: var(--ocean-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(10, 77, 104, 0.2);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-light) 100%);
            padding: 6rem 5%;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.03)"/><circle cx="900" cy="200" r="120" fill="rgba(255,255,255,0.03)"/><circle cx="600" cy="50" r="60" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat center;
            opacity: 0.5;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        .btn-contact {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--white);
            color: var(--ocean-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.4s ease;
        }

        .btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: var(--ocean-blue);
            color: var(--white);
            text-align: center;
            padding: 3rem 5%;
        }

        footer p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .boat-content-wrapper,
            .boat-card:nth-child(even) .boat-content-wrapper {
                grid-template-columns: 1fr;
            }

            .boat-image {
                min-height: 350px;
            }

            .boat-details {
                padding: 3rem 2rem;
            }

            .page-header h1 {
                font-size: 3rem;
            }

            .boat-specs {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .page-header h1 {
                font-size: 2.2rem;
            }

            .boat-details h2 {
                font-size: 2rem;
            }

            .boat-details {
                padding: 2rem 1.5rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            nav .logo {
                font-size: 1.4rem;
            }

            nav ul {
                gap: 1rem;
                font-size: 0.85rem;
            }
        }