.logement-bateau-page {
    min-height: 100vh;
    background: #f8f9fa
}

.hero-section {
    height: 60vh;
    background: linear-gradient(rgba(52, 152, 219, 0.8), rgba(41, 128, 185, 0.8)), url('/images/porquerolles-port.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center
}

.hero-section h1 i {
    color: #74b9ff;
    margin-right: 15px
}

.hero-subtitle {
    font-size: 1.3rem;
    text-align: center;
    opacity: 0.9
}

.intro-section {
    padding: 80px 0;
    background: white;
    text-align: center
}

.intro-section h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 30px;
    font-weight: 600
}

.intro-section p {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7
}

.boats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)
}

.boats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 60px;
    font-weight: 600
}

.boats-section h2 i {
    color: #0984e3;
    margin-right: 15px
}

.boats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto
}

.boat-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.boat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15)
}

.boat-image {
    position: relative;
    height: 250px;
    overflow: hidden
}

.boat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease
}

.boat-card:hover .boat-image img {
    transform: scale(1.05)
}

.boat-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem
}

.boat-content {
    padding: 30px
}

.boat-content h3 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 10px;
    font-weight: 700
}

.boat-type {
    color: #74b9ff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500
}

.boat-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #636e72
}

.feature i {
    color: #0984e3;
    width: 20px;
    font-size: 1.1rem
}

.boat-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    border-radius: 15px
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436
}

.per-night {
    font-size: 1.1rem;
    color: #636e72;
    margin-left: 5px
}

.boat-buttons {
    display: flex;
    gap: 15px
}

.btn-360,
.btn-book {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer
}

.btn-360 {
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4);
    color: white;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3)
}

.btn-360:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(108, 92, 231, 0.4)
}

.btn-book {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3)
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 184, 148, 0.4)
}

.services-section {
    padding: 80px 0;
    background: white
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 60px;
    font-weight: 600
}

.services-section h2 i {
    color: #fdcb6e;
    margin-right: 15px
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: transform 0.3s ease
}

.service-item:hover {
    transform: translateY(-5px)
}

.service-item i {
    font-size: 2.5rem;
    color: #0984e3;
    margin-bottom: 20px
}

.service-item h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 600
}

.service-item p {
    color: #636e72;
    line-height: 1.6
}

.modal-360 {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9)
}

.modal-content-360 {
    position: relative;
    margin: 2% auto;
    width: 95%;
    height: 90%;
    background: #2d3436;
    border-radius: 15px;
    overflow: hidden
}

.modal-header {
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600
}

.close-360 {
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease
}

.close-360:hover {
    color: #fdcb6e
}

.panorama-container {
    position: relative;
    height: calc(100% - 120px)
}

.panorama-viewer {
    width: 100%;
    height: 100%
}

.panorama-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #74b9ff;
    text-align: center;
    padding: 40px
}

.panorama-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7
}

.panorama-placeholder p {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ddd
}

.panorama-placeholder small {
    color: #636e72;
    font-size: 0.9rem
}

.panorama-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    gap: 30px
}

.panorama-controls p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8
}

.panorama-controls i {
    margin-right: 8px;
    color: #74b9ff
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0984e3, #74b9ff)
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2)
}

.contact-card h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600
}

.contact-card h2 i {
    color: #00b894;
    margin-right: 15px
}

.contact-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px
}

.phone-number {
    margin-bottom: 15px
}

.phone-number a {
    color: #00b894;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease
}

.phone-number a:hover {
    color: #00a085
}

.phone-number i {
    margin-right: 10px
}

.availability {
    color: #666;
    font-size: 1.1rem
}

.availability i {
    margin-right: 8px;
    color: #6c757d
}

.booking-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px
}

.btn-call,
.btn-contact {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.btn-call {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3)
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 184, 148, 0.4)
}

.btn-contact {
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4);
    color: white;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3)
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(108, 92, 231, 0.4)
}

@media (max-width:768px) {
    .hero-section h1 {
        font-size: 2.2rem;
        padding: 0 20px
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px
    }

    .intro-section,
    .boats-section,
    .services-section,
    .contact-section {
        padding: 60px 0
    }

    .intro-section h2,
    .boats-section h2,
    .services-section h2 {
        font-size: 2rem;
        padding: 0 20px
    }

    .boats-grid {
        grid-template-columns: 1fr;
        margin: 0 20px;
        gap: 30px
    }

    .boat-card {
        max-width: 500px;
        margin: 0 auto
    }

    .boat-features {
        grid-template-columns: 1fr
    }

    .boat-buttons {
        flex-direction: column
    }

    .services-grid {
        grid-template-columns: 1fr;
        margin: 0 20px
    }

    .contact-card {
        margin: 0 20px;
        padding: 40px 30px
    }

    .booking-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn-call,
    .btn-contact {
        width: 100%;
        justify-content: center
    }

    .modal-content-360 {
        width: 98%;
        height: 85%;
        margin: 5% auto
    }

    .modal-header {
        padding: 15px 20px
    }

    .modal-header h3 {
        font-size: 1.2rem
    }

    .panorama-controls {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 20px
    }
}

@media (max-width:480px) {
    .hero-section {
        height: 50vh
    }

    .hero-section h1 {
        font-size: 1.8rem
    }

    .boat-content {
        padding: 25px 20px
    }

    .boat-price {
        padding: 15px
    }

    .price {
        font-size: 2rem
    }

    .contact-card {
        padding: 30px 20px
    }

    .contact-info {
        padding: 20px
    }

    .phone-number a {
        font-size: 1.5rem
    }
}

.boat-image img[src*="placeholder"] {
    background: linear-gradient(45deg, #ddd, #eee);
    position: relative
}

.boat-image img[src*="placeholder"]:after {
    content: "📷 Votre photo ici";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: #666
}