* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #f5f7fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.header-images {
    position: relative;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.main-image {
    flex: 2;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.side-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-images img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.main-image img:hover, .side-images img:hover {
    transform: scale(1.05);
}

.more-photos {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
    z-index: 10;
}

.more-photos:hover {
    background: #0056b3;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    touch-action: none;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    user-select: none;
}

.close, .prev, .next {
    position: absolute;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 50%;
}

.close {
    top: 20px;
    right: 20px;
}

.prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 10px;
}

.main-content {
    display: flex;
    gap: 30px;
}

.left-column {
    flex: 2;
}

.reservation-box {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.reservation-box h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.total {
    font-size: 24px;
    margin: 20px 0;
    color: #007bff;
}

.deposit {
    color: #555;
    margin-bottom: 20px;
}

.reserve-button {
    width: 100%;
    padding: 15px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.reserve-button:hover {
    background: #218838;
    transform: translateY(-2px);
}

.title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.share {
    position: relative;
}

.share-menu {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px;
    z-index: 10;
}

.share-menu a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
}

.share-menu a:hover {
    background: #f0f0f0;
}

.features-activities {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.features, .activities {
    flex: 1;
}

.features ul, .activities ul {
    list-style: none;
}

.features li, .activities li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.features i, .activities i {
    margin-right: 10px;
    color: #007bff;
}

.reviews {
    margin-bottom: 30px;
}

.review {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stars i {
    color: #ffc107;
}

.review p {
    margin: 10px 0;
    color: #555;
}

.review span {
    color: #777;
    font-style: italic;
}

.similar-boats {
    margin-top: 40px;
}

.boat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.boat-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.boat-card:hover {
    transform: translateY(-5px);
}

.boat-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.boat-card h3 {
    padding: 10px;
    font-size: 18px;
}

.boat-card p {
    padding: 0 10px 10px;
    color: #007bff;
}

@media (max-width: 1024px) {
    .header-images {
        flex-direction: column;
    }

    .main-image img {
        height: 300px;
    }

    .side-images {
        flex-direction: row;
        justify-content: space-between;
    }

    .side-images img {
        width: 48%;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .reservation-box {
        position: static;
    }

    .features-activities {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .main-image img {
        height: 200px;
    }

    .side-images {
        flex-direction: column;
    }

    .side-images img {
        width: 100%;
        height: 150px;
    }

    .lightbox img {
        max-height: 70vh;
    }
}